Codebase list zonedb / 3c84932
Import upstream version 1.0.3170 Kali Janitor 3 years ago
2270 changed file(s) with 26411 addition(s) and 19118 deletion(s). Raw diff Collapse all Expand all
+0
-60
.circleci/config.yml less more
0 version: 2
1 jobs:
2 build:
3 working_directory: ~/go/src/github.com/zonedb/zonedb
4 docker:
5 - image: domainr/ci:swan
6 steps:
7 - checkout
8 - run: go get -t -d -v ./...
9 - run: go build -v
10
11 # Run tests
12 - run: mkdir -p test-results
13 - run: |
14 trap "go-junit-report < test-results/go-test.log > test-results/go-test-report.xml" EXIT
15 go test -v -race -bench . ./... | tee test-results/go-test.log
16
17 # Report
18 - store_test_results:
19 path: test-results
20 - store_artifacts:
21 path: test-results
22 destination: results
23
24 # Deploy
25 - deploy:
26 command: |
27 if [ "${CIRCLE_BRANCH}" == "master" ]; then
28 make tag-version
29 fi
30
31 update:
32 working_directory: ~/go/src/github.com/zonedb/zonedb
33 docker:
34 - image: domainr/ci:swan
35 steps:
36 - checkout
37 - run: git checkout $CIRCLE_BRANCH && git reset --hard origin/$CIRCLE_BRANCH
38 - run: go get -t -d -v ./...
39 - run: make update
40 - run: git add -v --all .
41 - run: when-git-dirty commit-and-push
42
43 workflows:
44 version: 2
45 commit_workflow:
46 jobs:
47 - build
48 scheduled_workflow:
49 jobs:
50 - update:
51 context: org-global
52 triggers:
53 # Circle operates in UTC. 12:07 AM PST is 8:07 AM UTC
54 - schedule:
55 cron: "07 8 * * *"
56 filters:
57 branches:
58 only:
59 - master
0 version = 1
1
2 test_patterns = ["*_test.go"]
3
4 [[analyzers]]
5 name = "go"
6 enabled = true
7
8 [analyzers.meta]
9 import_paths = ["github.com/zonedb/zonedb"]
0 zones.go merge=ours
0 version: 2
1 updates:
2 - package-ecosystem: github-actions
3 directory: "/"
4 schedule:
5 interval: weekly
6 time: "13:00" # 5am Pacific
7 open-pull-requests-limit: 10
8
9 - package-ecosystem: gomod
10 directory: "/"
11 schedule:
12 interval: daily
13 time: "01:00" # 5pm Pacific
14 open-pull-requests-limit: 10
0 name: Merge
1
2 on:
3 pull_request_review:
4 types:
5 - submitted
6
7 jobs:
8 merge:
9 name: Merge pull request
10 if: |
11 github.event.review.state == 'approved' &&
12 github.event.pull_request.user.login == 'dependabot[bot]'
13 runs-on: ubuntu-latest
14 steps:
15 - name: Merge
16 uses: actions/github-script@v3
17 with:
18 github-token: ${{ secrets.ZONEDBOT_RW_GITHUB_ACCESS_TOKEN }}
19 script: |
20 github.pulls.merge({
21 owner: context.payload.repository.owner.login,
22 repo: context.payload.repository.name,
23 pull_number: context.payload.pull_request.number,
24 merge_method: 'merge'
25 })
0 name: Go
1
2 on:
3 push:
4 branches:
5 - main
6 pull_request:
7
8 jobs:
9 test:
10 name: Test
11 runs-on: ubuntu-latest
12 timeout-minutes: 15
13 steps:
14 - name: Checkout repo
15 uses: actions/checkout@v2
16 with:
17 fetch-depth: 0 # Retrieve all commit history, so `git rev-list --count` works correctly
18 submodules: recursive
19
20 - name: Set up Go
21 uses: actions/setup-go@v2
22 with:
23 go-version: ^1
24
25 - name: Vet Go code
26 run: go vet ./...
27
28 - name: Run Go tests
29 run: go test -mod=readonly -v -race ./...
30
31 - name: Verify repo is unchanged
32 run: git diff --exit-code HEAD
33
34 - name: Tag release
35 if: github.ref == 'refs/heads/main'
36 run: make tag-version
+0
-26
.github/workflows/go.yml less more
0 # GitHub's starter Go config file
1
2 name: Go
3 on: [push]
4 jobs:
5
6 build:
7 name: Build
8 runs-on: ubuntu-latest
9 steps:
10
11 - name: Set up Go 1.13
12 uses: actions/setup-go@v1
13 with:
14 go-version: 1.13
15 id: go
16
17 - name: Check out code into the Go module directory
18 uses: actions/checkout@v1
19
20 - name: Get dependencies
21 run: |
22 go get -v -t -d ./...
23
24 - name: Build
25 run: go build -v .
0 name: Update
1
2 on:
3 workflow_dispatch:
4 inputs:
5 zonedbArgs:
6 description: 'zonedb arguments'
7 required: false
8 default: ''
9 schedule:
10 - cron: "07 8 * * *" # 08:07 UTC, or 12:07 AM PT
11
12 jobs:
13 update:
14 name: Update ZoneDB
15 runs-on: ubuntu-latest
16 timeout-minutes: 60
17 steps:
18 - name: Checkout repo
19 uses: actions/checkout@v2
20 with:
21 token: ${{ secrets.ZONEDBOT_RW_GITHUB_ACCESS_TOKEN }}
22 submodules: recursive
23
24 - name: Set up Go
25 uses: actions/setup-go@v2
26 with:
27 go-version: ^1
28
29 - name: Update ZoneDB
30 env:
31 ZONEDB_ARGS: ${{ github.event.inputs.zonedbArgs }}
32 run: make update
33
34 - name: Vet Go code
35 run: go vet ./...
36
37 - name: Run Go tests
38 run: go test -mod=readonly -v -race ./...
39
40 - name: Commit changes
41 run: |
42 [[ -z $(git status -s) ]] || (
43 git config --global user.email [email protected]
44 git config --global user.name zonedbot
45 git add -v --all .
46 git commit -m "Automatic update for `date -u`"
47 git push origin -u HEAD
48 )
49
50 - name: Notify if failure
51 if: ${{ failure() }}
52 run: |
53 curl -Ss -X POST -H 'Content-type: application/json' --data '{"text":"❌ ZoneDB update failed."}' ${{ secrets.SLACK_WEBHOOK_URL_GH_ACTIONS }}
54
55 - name: Notify if success
56 if: ${{ success() }}
57 run: |
58 curl -Ss -X POST -H 'Content-type: application/json' --data '{"text":"✅ ZoneDB updated."}' ${{ secrets.SLACK_WEBHOOK_URL_GH_ACTIONS }}
1010 go generate
1111
1212 update:
13 go run cmd/zonedb/main.go -update -w -c 100
14 make zones.go
15 make test
13 go run cmd/zonedb/main.go -update -w -c 100 $(ZONEDB_ARGS)
14 $(MAKE) zones.go
1615
1716 normalize:
1817 go run cmd/zonedb/main.go -w
19 make zones.go
18 $(MAKE) zones.go
2019
21 git_revision=$(shell cat .git/refs/heads/master)
22 number_of_commits=$(shell git rev-list $(git_revision) --count)
20 git_revision=$(shell git describe --no-tags --always --dirty --abbrev=0)
21 number_of_commits=$(shell git rev-list HEAD --count)
2322 major_version=$(shell cat VERSION)
2423 tag_version=v$(major_version).$(number_of_commits)
2524
26 tag-version: .git/refs/heads/master
25 tag-version: .git/refs/heads/main
2726 git tag $(tag_version) $(git_revision)
2827 git push --tags
00 # Public Zone Database
11
2 [![build status](https://img.shields.io/circleci/project/zonedb/zonedb/master.svg)](https://circleci.com/gh/zonedb/zonedb)
2 [![build status](https://img.shields.io/github/workflow/status/zonedb/zonedb/Go.svg)](https://github.com/zonedb/zonedb/actions)
33 [![godoc](http://img.shields.io/badge/docs-GoDoc-blue.svg)](https://godoc.org/github.com/zonedb/zonedb)
44
55 The Public Zone Database (zonedb) is a [free, open-source database](http://opendatacommons.org/licenses/odbl/1.0/) containing a list and associated metadata of public [DNS zones](http://en.wikipedia.org/wiki/DNS_zone) (domain name extensions). It attempts to be exhaustive, including current, retired, and withdrawn top-level domains and subdomains.
99 ## Structure
1010
1111 The database consists of a list of zones (`zones.txt`) and associated metadata in JSON format.
12
13 ### CLI
14
15 The `zonedb` CLI is fully documented. Run `go run cmd/zonedb/main.go -h` to see its arguments.
1216
1317 ### zones.txt
1418
2428
2529 ### Updates
2630
27 A [CircleCI workflow](https://circleci.com/docs/2.0/workflows/) updates ZoneDB each night.
31 A [GitHub Actions workflow](https://github.com/zonedb/zonedb/blob/HEAD/.github/workflows/update.yaml) updates ZoneDB each night.
2832
2933 #### zones.txt
3034
3135 If a new SLD or third-level domain needs to be added to `zones.txt`, follow these steps locally:
3236
33 1. add the new zone to the bottom of the `zones.txt` file
34 1. run `make normalize` to normalize the data
35 1. run `make update` to run ZoneDB's update process
36 1. create a pull request for the changes, and confirm the tests are passing
37 1. Add the new zone to the bottom of the `zones.txt` file.
38 1. Run `make normalize` to normalize the data changes.
39 1. Run `go run cmd/zonedb/main.go -update -w -zones {new zone}` to update its metadata.
40 1. Create a pull request for the changes, and confirm the tests are passing.
3741
38 #### json files
42 #### JSON files
3943
4044 If an update to one of the `{zone}.json` files is needed, do this locally:
4145
6973 List all zones that have wildcarded DNS:
7074
7175 ```shell
72 $ go run cmd/zonedb/main.go -list-wildcards
76 zonedb -list-wildcards
7377 ```
7478
7579 List all zones tagged `geo`:
7680
7781 ```shell
78 $ go run cmd/zonedb/main.go -tags geo
82 zonedb -tags geo
7983 ```
8084
8185 List a given zone's tags:
8286
8387 ```shell
84 $ go run cmd/zonedb/main.go -zones capetown -list-tags
88 zonedb -zones capetown -list-tags
8589 ```
8690
8791 Add a tag to multiple zones (and write the output):
8892
8993 ```shell
90 $ go run cmd/zonedb/main.go -zones capetown,durban,joburg -add-tags city -w
91 $ make normalize
94 zonedb -zones capetown,durban,joburg -add-tags city -w
9295 ```
9396
9497 Remove a tag from a zone (and write the output):
9598
9699 ```shell
97 $ go run cmd/zonedb/main.go -zones la -remove-tags generic -w
100 zonedb -zones la -remove-tags generic -w
98101 ```
99102
100103 Add a location to a zone (and write the output):
101104
102105 ```shell
103 $ go run cmd/zonedb/main.go -zones alsace -add-locations fr-a -w
106 zonedb -zones alsace -add-locations fr-a -w
107 ```
108
109 Add `zh-Hans-HK` (Hong Kong Simplified Chinese) as a language (and write the output):
110
111 ```shell
112 zonedb -zones 香港 -add-languages zh-Hans-HK -w
104113 ```
105114
106115 ## License
107116
108 This database is licensed under the [Open Database License (ODBl) version 1.0](http://opendatacommons.org/licenses/odbl/1.0/). See [LICENSE.md](https://github.com/domainr/zonedb/blob/master/LICENSE.md) for more information.
117 This database is licensed under the [Open Database License (ODBl) version 1.0](http://opendatacommons.org/licenses/odbl/1.0/). See [LICENSE.md](https://github.com/zonedb/zonedb/blob/HEAD/LICENSE.md) for more information.
109118
110119 Copyright © 2008–2020 the Public Zone Database authors.
3838 checkPS := flag.Bool("ps", false, "check against Public Suffix List")
3939
4040 // Mutate operations
41 infoURL := flag.String("info-url", "", "set zone(s) info URL")
41 addLanguages := flag.String("add-languages", "", "add BCP 47 language tags to zones (comma-delimited)")
42 guessLanguages := flag.Bool("guess-languages", false, "guess BCP 47 languages for zones")
43 setInfoURL := flag.String("set-info-url", "", "set zone(s) info URLs")
44 updateInfoURL := flag.Bool("update-info-url", false, "update zone(s) info URLs")
45 addRDAPURL := flag.String("add-rdap-url", "", "add RDAP URL to zones")
4246 addTags := flag.String("add-tags", "", "add tags to zones (comma-delimited)")
4347 addLocations := flag.String("add-locations", "", "add locations to zones (comma-delimited)")
4448 removeTags := flag.String("remove-tags", "", "remove tags from zones (comma-delimited)")
5054 updateWhois := flag.Bool("update-whois", false, "query whois-servers.net for whois servers")
5155 updateIANA := flag.Bool("update-iana", false, "query IANA for metadata")
5256 updateIDN := flag.Bool("update-idn", false, "query IANA for IDN tables")
57 updateRDAP := flag.Bool("update-rdap", false, "query IANA for RDAP URLs")
5358 updateAll := flag.Bool("update", false, "update all (root zone, whois, IANA data, IDN tables)")
5459
5560 // Write operations
123128 }
124129 filtered := make(map[string]*build.Zone, len(workZones))
125130 for d, z := range workZones {
126 j, _ := json.Marshal(z)
131 j, _ := json.MarshalIndent(z, "", "\t")
127132 if re.Match(j) {
128133 filtered[d] = z
129134 }
178183 }
179184 }
180185
181 if *updateRubyWhois || *updateAll {
186 if *updateRubyWhois {
182187 err := build.FetchRubyWhoisServers(workZones, addNew)
183188 if err != nil {
184189 errs = append(errs, err)
224229 errs = append(errs, err)
225230 build.LogError(err)
226231 }
232 }
233
234 if *updateRDAP || *updateAll {
235 err := build.FetchRDAPFromIANA(workZones)
236 if err != nil {
237 errs = append(errs, err)
238 build.LogError(err)
239 }
240 }
241
242 if *addRDAPURL != "" {
243 build.AddRDAPURLs(workZones, []string{*addRDAPURL})
227244 }
228245
229246 if *removeTags != "" {
272289 color.Fprintf(os.Stderr, "@{.}Zones: @{c}%s\n", strings.Join(zones.Values(), " "))
273290 }
274291
275 if *infoURL != "" {
292 if *addLanguages != "" {
293 languages := strings.Split(*addLanguages, ",")
294 build.AddLanguages(workZones, languages)
295 }
296
297 if *guessLanguages {
298 build.GuessLanguages(workZones)
299 }
300
301 if *setInfoURL != "" {
276302 for _, z := range workZones {
277 z.InfoURL = *infoURL
278 }
279 color.Fprintf(os.Stderr, "@{.}Set info URL to: @{c}%s\n", *infoURL)
303 z.InfoURL = *setInfoURL
304 }
305 color.Fprintf(os.Stderr, "@{.}Set info URL to: @{c}%s\n", *setInfoURL)
306 }
307
308 if *updateInfoURL {
309 build.UpdateInfoURLs(workZones)
280310 }
281311
282312 if *verifyNS {
295325
296326 // Fold newly added zones back in
297327 for d, z := range workZones {
328 z.Normalize()
298329 zones[d] = z
299330 }
300331
00 module github.com/zonedb/zonedb
11
22 require (
3 github.com/PuerkitoBio/goquery v1.5.1
3 github.com/PuerkitoBio/goquery v1.6.1
44 github.com/andybalholm/cascadia v1.2.0 // indirect
5 github.com/miekg/dns v1.1.31
5 github.com/miekg/dns v1.1.41
66 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0
7 golang.org/x/crypto v0.0.0-20200707235045-ab33eee955e0 // indirect
8 golang.org/x/net v0.0.0-20200707034311-ab3426394381
9 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
10 golang.org/x/text v0.3.3
7 golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
8 golang.org/x/text v0.3.6
119 )
1210
1311 go 1.13
0 github.com/PuerkitoBio/goquery v1.5.1 h1:PSPBGne8NIUWw+/7vFBV+kG2J/5MOjbzc7154OaKCSE=
1 github.com/PuerkitoBio/goquery v1.5.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc=
2 github.com/andybalholm/cascadia v1.1.0 h1:BuuO6sSfQNFRu1LppgbD25Hr2vLYW25JvxHs5zzsLTo=
0 github.com/PuerkitoBio/goquery v1.6.1 h1:FgjbQZKl5HTmcn4sKBgvx8vv63nhyhIpv7lJpFGCWpk=
1 github.com/PuerkitoBio/goquery v1.6.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc=
32 github.com/andybalholm/cascadia v1.1.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y=
43 github.com/andybalholm/cascadia v1.2.0 h1:vuRCkM5Ozh/BfmsaTm26kbjm0mIOM3yS5Ek/F5h18aE=
54 github.com/andybalholm/cascadia v1.2.0/go.mod h1:YCyR8vOZT9aZ1CHEd8ap0gMVm2aFgxBp0T0eFw1RUQY=
6 github.com/miekg/dns v1.1.30 h1:Qww6FseFn8PRfw07jueqIXqodm0JKiiKuK0DeXSqfyo=
7 github.com/miekg/dns v1.1.30/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM=
8 github.com/miekg/dns v1.1.31 h1:sJFOl9BgwbYAWOGEwr61FU28pqsBNdpRBnhGXtO06Oo=
9 github.com/miekg/dns v1.1.31/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM=
5 github.com/miekg/dns v1.1.41 h1:WMszZWJG0XmzbK9FEmzH2TVcqYzFesusSIB41b8KHxY=
6 github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI=
107 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0 h1:3UeQBvD0TFrlVjOeLOBz+CPAI8dnbqNSVwUwRrkp7vQ=
118 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0/go.mod h1:IXCdmsXIht47RaVFLEdVnh1t+pgYtTAhQGj73kz+2DM=
129 golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
13 golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 h1:ObdrDkeb4kJdCP557AjRjq69pTHfNouLtWZG7j9rPN8=
14 golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
15 golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
16 golang.org/x/crypto v0.0.0-20200707235045-ab33eee955e0 h1:eIYIE7EC5/Wv5Kbz8bJPaq+TN3kq3W8S+LSm62vM0DY=
17 golang.org/x/crypto v0.0.0-20200707235045-ab33eee955e0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
18 golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
1910 golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
20 golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
21 golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
22 golang.org/x/net v0.0.0-20190923162816-aa69164e4478 h1:l5EDrHhldLYb3ZRHDUhXF7Om7MvYXnkV9/iQNo1lX6g=
23 golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
24 golang.org/x/net v0.0.0-20200202094626-16171245cfb2 h1:CCH4IOTTfewWjGOlSp+zGcjutRKlBEZQ6wTn8ozI/nI=
2511 golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
26 golang.org/x/net v0.0.0-20200707034311-ab3426394381 h1:VXak5I6aEWmAXeQjA+QSZzlgNrpq9mjcfDemuexIKsU=
27 golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
28 golang.org/x/sync v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=
29 golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
12 golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=
13 golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
14 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
15 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
3016 golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
31 golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
32 golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe h1:6fAMxZRR6sl1Uq8U61gxU+kPTs2tR8uOySCbBP7BN/M=
33 golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
34 golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
35 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae h1:Ih9Yo4hSPImZOpfGuA4bR/ORKTAbhZo2AbWNRCnevdo=
36 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
17 golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
18 golang.org/x/sys v0.0.0-20210303074136-134d130e1a04 h1:cEhElsAv9LUt9ZUUocxzWe05oFLVd+AA2nstydTeI8g=
19 golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
20 golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
3721 golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
38 golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
3922 golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
23 golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
24 golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
4025 golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
41 golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
42 golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+0
-10
install-go.sh less more
0 #!/usr/bin/env bash
1
2 set -e
3 set -u
4
5 curl -o /app/go.tgz https://storage.googleapis.com/golang/go1.9.4.linux-amd64.tar.gz
6 tar xvf /app/go.tgz -C /app
7 mkdir -p /app/go2
8 export GOROOT=/app/go GOPATH=/app/go2 PATH=/app/go/bin:$PATH
9 go get -t -d -v ./...
248248 }
249249 })
250250 // for ns := range all {
251 // color.Printf("@{.}%s ", ns)
251 // color.Fprintf(os.Stderr, "@{.}%s ", ns)
252252 // }
253 // color.Printf("\n")
253 // ccolor.Fprintf(os.Stderr, "\n")
254254 color.Fprintf(os.Stderr, "@{.}Counted %d unique name servers in %d of %d zone(s)\n", len(all), found, len(zones))
255255 }
256256
352352 if err == nil {
353353 return rmsg, err
354354 }
355 switch err := err.(type) {
356 case *net.DNSError:
355 if err, ok := err.(*net.DNSError); ok {
357356 return nil, err
358357 // case *dns.Error:
359358 // if err == dns.ErrTruncated {
4444 LogError(err)
4545 continue
4646 }
47 if len(d) == 0 {
47 if d == "" {
4848 err := fmt.Errorf("blank line at %s:%d", path, line)
4949 errs = append(errs, err)
5050 LogWarning(err)
11
22 import (
33 "bytes"
4 "fmt"
45 "go/format"
56 "os"
67 "path/filepath"
4546 z.TagBits = tagBits(tagValues, z.Tags)
4647 }
4748
48 data := struct {
49 Zones map[string]*Zone
50 TLDs map[string]*Zone
51 Domains []string
52 Offsets map[string]int
53 TagType string
54 Tags []string
55 TagValues map[string]uint64
56 }{
57 zones,
58 tlds,
59 domains,
60 offsets,
61 tagType,
62 tags,
63 tagValues,
49 data := templateData{
50 Zones: zones,
51 TLDs: tlds,
52 Domains: domains,
53 Offsets: offsets,
54 TagType: tagType,
55 Tags: tags,
56 TagValues: tagValues,
57 Strings: []string{},
58 }
59
60 // Pre-index 2-letter pairs
61 var pairs string
62 const alphabet = "abcdefghijklmnopqrstuvwxyz"
63 for _, i := range alphabet {
64 for _, j := range alphabet {
65 s := string(i) + string(j)
66 if strings.Contains(pairs, s) {
67 continue
68 }
69 if len(pairs) > 0 && pairs[len(pairs)-1] == s[0] {
70 pairs = pairs + s[1:]
71 } else {
72 pairs = pairs + s
73 }
74 }
75 }
76 data.indexedString(pairs)
77
78 // Pre-index strings and string slices
79 set := NewSet()
80 for _, z := range zones {
81 set.Add(ToASCII(z.WhoisServer))
82 set.Add(ToASCIIURL(z.WhoisURL))
83 set.Add(ToASCIIURL(z.InfoURL))
84 }
85
86 // Sort by length desc, then alphabetically asc
87 all := set.Values()
88 sort.Slice(all, func(i, j int) bool {
89 if len(all[i]) == len(all[j]) {
90 return all[i] < all[j]
91 }
92 return len(all[i]) > len(all[j])
93 })
94 for _, s := range all {
95 data.indexedString(s)
96 }
97
98 for _, d := range domains {
99 data.domainStringSlice(zones[d].NameServers)
100 }
101 for _, d := range domains {
102 data.domainStringSlice(zones[d].Wildcards)
103 }
104 for _, d := range domains {
105 data.indexedStringSlice(zones[d].Locations)
106 }
107 for _, d := range domains {
108 data.indexedStringSlice(zones[d].Languages)
109 }
110
111 // Add domains last, as these are most likely to be the shortest strings
112 for i := range domains {
113 data.domainString(domains[len(domains)-i-1])
64114 }
65115
66116 err := generate("zones.go", zonesGoSrc, &data)
71121 return nil
72122 }
73123
74 // Helper funcs
75
76 func cont(s string) string {
77 return strings.Replace(s, "\\\n", "", -1)
78 }
79
80 func odd(i int) bool {
81 return (i & 0x1) != 0
82 }
83
84 func mod0(i, radix int) bool {
85 return (i % radix) == 0
86 }
87
88 var lastC rune
89
90 func rewound(c rune) (out bool) {
91 if c < lastC {
92 out = true
93 }
94 lastC = c
95 return
96 }
97
98 func quotedASCII(s string) string {
124 type templateData struct {
125 Zones map[string]*Zone
126 TLDs map[string]*Zone
127 Domains []string
128 Offsets map[string]int
129 TagType string
130 Tags []string
131 TagValues map[string]uint64
132 Strings []string
133 }
134
135 func (data *templateData) indexedString(s string) string {
136 if s == "" {
137 return "e"
138 }
139 i, j, k := IndexOrAppendString(&data.Strings, s)
140 if j == 0 && k == len(data.Strings[i]) {
141 return fmt.Sprintf("s[%d]", i)
142 } else if j == 0 {
143 return fmt.Sprintf("s[%d][:%d]", i, k)
144 }
145 return fmt.Sprintf("s[%d][%d:%d]", i, j, k)
146 }
147
148 func (data *templateData) indexedStringSlice(slice []string) string {
149 if len(slice) == 0 {
150 return "n"
151 }
152 // if len(slice) == 1 {
153 // return "[]string{" + data.indexedString(slice[0]) + "}"
154 // }
155 i, j := IndexOrAppendStrings(&data.Strings, slice)
156 return fmt.Sprintf("s[%d:%d]", i, j)
157 }
158
159 func (data *templateData) domainString(s string) string {
160 return data.indexedString(ToASCII(s))
161 }
162
163 func (data *templateData) domainStringSlice(slice []string) string {
164 needle := make([]string, len(slice))
165 for i := range slice {
166 needle[i] = ToASCII(slice[i])
167 }
168 return data.indexedStringSlice(needle)
169 }
170
171 func (data *templateData) urlString(s string) string {
172 return data.indexedString(ToASCIIURL(s))
173 }
174
175 func (data *templateData) urlStringSlice(slice []string) string {
176 needle := make([]string, len(slice))
177 for i := range slice {
178 needle[i] = ToASCIIURL(slice[i])
179 }
180 return data.indexedStringSlice(needle)
181 }
182
183 func quoted(s string) string {
99184 if s == "" {
100185 return "e" // const e = ""
101186 }
102 return `"` + ToASCII(s) + `"`
103 }
104
105 var (
106 funcMap = template.FuncMap{
107 "odd": odd,
108 "mod0": mod0,
109 "rewound": rewound,
110 "title": strings.Title,
111 "ascii": ToASCII,
112 "quoted": quotedASCII,
113 }
114 )
115
116 func generate(fn, src string, data interface{}) error {
187 return `"` + s + `"`
188 }
189
190 func quotedDomain(s string) string {
191 return quoted(ToASCII(s))
192 }
193
194 func quotedURL(s string) string {
195 return quoted(ToASCIIURL(s))
196 }
197
198 func generate(filename, src string, data *templateData) error {
199 funcMap := template.FuncMap{
200 "title": strings.Title,
201 "quoted": quoted,
202 "quotedDomain": quotedDomain,
203 "quotedURL": quotedURL,
204 "string": data.indexedString,
205 "stringSlice": data.indexedStringSlice,
206 "domainString": data.domainString,
207 "domainSlice": data.domainStringSlice,
208 "urlString": data.urlString,
209 "urlSlice": data.urlStringSlice,
210 }
211
117212 t := template.Must(template.New("").Funcs(funcMap).Parse(cont(src)))
118213 buf := new(bytes.Buffer)
119214 err := t.Execute(buf, data)
124219 if err != nil {
125220 return err
126221 }
127 fn = filepath.Join(BaseDir, fn)
128 color.Fprintf(os.Stderr, "@{.}Generating Go source code: %s\n", fn)
129 f, err := os.Create(fn)
222 filename = filepath.Join(BaseDir, filename)
223 color.Fprintf(os.Stderr, "@{.}Generating Go source code: %s\n", filename)
224 f, err := os.Create(filename)
130225 if err != nil {
131226 return err
132227 }
135230 return err
136231 }
137232
138 const (
139 zonesGoSrc = `// Automatically generated
233 func cont(s string) string {
234 return strings.ReplaceAll(s, "\\\n", "")
235 }
236
237 const zonesGoSrc = `// Automatically generated
140238
141239 package zonedb
142240
146244
147245 func initZones() {
148246 z = y
149 }
150
151 // Type s is an alias for []string to generate smaller source code
152 type s []string
247 ZoneMap = make(map[string]*Zone, len(z))
248 for i := range z {
249 ZoneMap[z[i].Domain] = &z[i]
250 }
251 }
252
253 // Type w is an alias for []string to generate smaller source code
254 type w []string
153255
154256 // Constants to generate smaller source code
155257 const (
190292 {{end }}
191293 }
192294
295 // ZoneMap maps domain names to Zones.
296 var ZoneMap map[string]*Zone
297
193298 // Zones is a slice of all Zones in the database.
194299 var Zones = z[:]
195300
205310 {{range $d := .Domains}} \
206311 {{$z := (index $.Zones $d)}} \
207312 { \
208 {{quoted $d}}, \
313 {{quotedDomain $d}}, \
209314 {{if $z.IsIDN}}/* {{$d}} */{{end }} \
210315 {{if $z.ParentDomain}} &z[{{$z.ParentOffset}}] {{else}} r {{end}}, \
211316 {{if $z.SubdomainsEnd}} z[{{$z.SubdomainsOffset}}:{{$z.SubdomainsEnd}}] {{else}} x {{end}}, \
212 {{if $z.NameServers}} s{ {{range $z.NameServers}}{{quoted .}},{{end}}} {{else}} n {{end}}, \
213 {{if $z.Wildcards}} s{ {{range $z.Wildcards}}{{quoted .}},{{end}}} {{else}} n {{end}}, \
214 {{if $z.Locations}} s{ {{range $z.Locations}}{{quoted .}},{{end}}} {{else}} n {{end}}, \
215 {{quoted $z.WhoisServer}}, \
216 {{quoted $z.WhoisURL}}, \
217 {{quoted $z.InfoURL}}, \
218 {{printf "0x%x" $z.TagBits}}, \
317 {{if $z.TagBits}} {{printf "0x%x" $z.TagBits}} {{else}} 0 {{end}}, \
318 {{quotedURL $z.InfoURL}}, \
319 {{if $z.NameServers}} w{ {{range $z.NameServers}}{{quotedDomain .}},{{end}}} {{else}} n {{end}}, \
320 {{if $z.Wildcards}} w{ {{range $z.Wildcards}}{{quoted .}},{{end}}} {{else}} n {{end}}, \
321 {{if $z.Locations}} w{ {{range $z.Locations}}{{quoted .}},{{end}}} {{else}} n {{end}}, \
322 {{if $z.Languages}} w{ {{range $z.Languages}}{{quoted .}},{{end}}} {{else}} n {{end}}, \
323 {{quotedDomain $z.WhoisServer}}, \
324 {{quotedURL $z.WhoisURL}}, \
219325 {{if $z.IDNDisallowed}} f {{else}} t {{end}}, \
220326 },
221327 {{end}} \
222328 }
223
224 // ZoneMap maps domain names to Zones.
225 var ZoneMap = map[string]*Zone{
226 {{range $d := .Domains}} \
227 {{$z := (index $.Zones $d)}} \
228 {{$o := index $.Offsets $d}} \
229 {{quoted $d}}: &z[{{$o}}], \
230 {{if $z.IsIDN}}// {{$d}}{{end }}
231 {{end}} \
232 }
233329 `
234 )
111111 return normalizeLang(lang)
112112 }
113113
114 var errMalformedURL = errors.New("Malformed IDN table URL")
114 var errMalformedURL = errors.New("malformed IDN table URL")
0 package build
1
2 import (
3 "io"
4 "io/ioutil"
5 "net/http"
6 "os"
7 "strings"
8 "time"
9
10 "github.com/wsxiaoys/terminal/color"
11 )
12
13 func UpdateInfoURLs(zones map[string]*Zone) {
14 color.Fprintf(os.Stderr, "@{.}Updating info URLs for %d zones...\n", len(zones))
15
16 transport := http.DefaultTransport.(*http.Transport).Clone()
17 transport.TLSHandshakeTimeout = 2 * time.Second
18 transport.MaxIdleConnsPerHost = 10
19 client := &http.Client{
20 Transport: transport,
21 Timeout: 4 * time.Second,
22 }
23
24 mapZones(zones, func(z *Zone) {
25 if z.InfoURL == "" {
26 return
27 }
28 urls := []string{
29 z.InfoURL,
30 }
31 if strings.HasPrefix(z.InfoURL, "http:") {
32 urls = []string{
33 strings.Replace(z.InfoURL, "http:", "https:", 1),
34 z.InfoURL,
35 }
36 }
37 for _, u := range urls {
38 res, err := client.Get(u)
39 if err != nil {
40 // color.Fprintf(os.Stderr, "@{y!}Warning:@{y} error fetching info URL for @{y!}%s@{y}: (%s): %v\n", z.Domain, u, err)
41 continue
42 }
43 ru := NormalizeURL(res.Request.URL.String())
44 if ru != z.InfoURL {
45 z.InfoURL = ru
46 color.Fprintf(os.Stderr, "@{.}Updated info URLs for @{c}%s@{c}: @{y}%s\n", z.Domain, z.InfoURL)
47 }
48 CloseN(res.Body, 10_000_000)
49 break
50 }
51 })
52 }
53
54 // CloseN drains rc up to a maximum of n bytes and closes rc.
55 // It returns the number of bytes drained and the first error encountered.
56 // Regardless of any errors, rc.Close() is guaranteed to be called.
57 func CloseN(rc io.ReadCloser, n int64) (int64, error) {
58 n, cerr := io.Copy(ioutil.Discard, io.LimitReader(rc, n))
59 err := rc.Close()
60 if cerr != nil {
61 err = cerr
62 }
63 return n, err
64 }
0 package build
1
2 import (
3 "os"
4 "strings"
5
6 "github.com/wsxiaoys/terminal/color"
7 )
8
9 func AddLanguages(zones map[string]*Zone, languages []string) {
10 var added, modified int
11 for _, z := range zones {
12 s := NewSet(z.Languages...)
13 n := len(s)
14 s.Add(languages...)
15 m := len(s) - n
16 if m != 0 {
17 z.Languages = s.Values()
18 z.normalizeLanguages()
19 m = len(z.Languages) - n
20 added += m
21 if m != 0 {
22 modified++
23 }
24 }
25 }
26 color.Fprintf(os.Stderr, "@{.}Added %d language(s) to %d zone(s)\n", added, modified)
27 }
28
29 func GuessLanguages(zones map[string]*Zone) {
30 guessed := make(map[string]int)
31 var modified int
32 for _, z := range zones {
33 if len(z.Languages) != 0 {
34 continue
35 }
36 for _, p := range z.Policies {
37 if p.Type != TypeIDNTable || p.Key == "" {
38 continue
39 }
40 z.Languages = append(z.Languages, p.Key)
41 guessed[p.Key] = guessed[p.Key] + 1
42 }
43 modified++
44 color.Fprintf(os.Stderr, "@{.}Guessed language(s) for @{!}%s@{.}: @{c}%s\n", z.Domain, strings.Join(z.Languages, " "))
45 }
46 color.Fprintf(os.Stderr, "@{.}Guessed %d language(s) on %d zone(s)\n", len(guessed), modified)
47 }
00 package build
11
2 import "github.com/wsxiaoys/terminal/color"
2 import (
3 "os"
4
5 "github.com/wsxiaoys/terminal/color"
6 )
37
48 func AddLocations(zones map[string]*Zone, locations []string) {
59 var added, modified int
1418 modified++
1519 }
1620 }
17 color.Printf("@{.}Added %d locations(s) to %d zone(s)\n", added, modified)
21 color.Fprintf(os.Stderr, "@{.}Added %d locations(s) to %d zone(s)\n", added, modified)
1822 }
1923
2024 func RemoveLocations(zones map[string]*Zone, locations []string) {
3236 modified++
3337 }
3438 }
35 color.Printf("@{.}Removed %d locations(s) from %d zone(s)\n", removed, modified)
39 color.Fprintf(os.Stderr, "@{.}Removed %d locations(s) from %d zone(s)\n", removed, modified)
3640 }
+0
-30
internal/build/misc.go less more
0 package build
1
2 // IndexOfStrings finds a rank-sorted slice of domain names (needle)
3 // within a larger slice (haystack).
4 func IndexOfStrings(haystack []string, needle []string) int {
5 outer:
6 for i := range haystack {
7 for j := range needle {
8 if i+j >= len(haystack) || needle[j] != haystack[i+j] {
9 continue outer
10 }
11 }
12 return i
13 }
14 return -1
15 }
16
17 // IndexOrAppendStrings finds or appends a slice of rank-sorted domain names (needle)
18 // Returns 0,0 for a zero-length needle.
19 func IndexOrAppendStrings(haystack *[]string, needle []string) (int, int) {
20 if len(needle) == 0 {
21 return 0, 0
22 }
23 idx := IndexOfStrings(*haystack, needle)
24 if idx < 0 {
25 idx = len(*haystack)
26 *haystack = append(*haystack, needle...)
27 }
28 return idx, idx + len(needle)
29 }
0 package build
1
2 import (
3 "encoding/json"
4 "fmt"
5 )
6
7 const ianaRDAPURL = "https://data.iana.org/rdap/dns.json"
8
9 // FetchRDAPFromIANA retrieves the map of zones to RDAP service endpoints from IANA.
10 func FetchRDAPFromIANA(zones map[string]*Zone) error {
11 res, err := Fetch(ianaRDAPURL)
12 if err != nil {
13 return err
14 }
15 defer res.Body.Close()
16
17 // The IANA bootstrap RDAP schema is an array of pairs with the first element a list of
18 // domains and the second element a list of RDAP service endpoints for those domains, e.g.
19 // {
20 // ...
21 // "services": [
22 // [
23 // ["foo", "bar", "baz"], ["https://example.com/rdap"]
24 // ],
25 // ...
26 // ],
27 // "version": "1.0"
28 // }
29 x := struct {
30 Services [][][]string // I'm screaming at this schema
31 }{}
32 d := json.NewDecoder(res.Body)
33 err = d.Decode(&x)
34 if err != nil {
35 return err
36 }
37 if len(x.Services) == 0 {
38 // An empty mapping implies bad data or a version change, best stop
39 return fmt.Errorf("empty RDAP services array")
40 }
41
42 for _, svc := range x.Services {
43 domains := svc[0]
44 for _, domain := range domains {
45 // Convert IDNA ASCII to Unicode form
46 domain = Normalize(domain)
47 z, ok := zones[domain]
48 if !ok {
49 Trace("@{y}domain %s not found in zones map\n", domain)
50 continue
51 }
52
53 z.RDAPURLs = []string{}
54 for _, rdapURL := range svc[1] {
55 if rdapURL == "" {
56 continue
57 }
58
59 normURL := NormalizeURL(rdapURL)
60 if normURL == "" {
61 Trace("@{r}invalid RDAP URL %q\n", rdapURL)
62 continue
63 }
64 z.RDAPURLs = append(z.RDAPURLs, normURL)
65 }
66 }
67 }
68
69 return nil
70 }
71
72 func AddRDAPURLs(zones map[string]*Zone, urls []string) {
73 // Normalize the input URLS
74 var nurls []string
75 for _, u := range urls {
76 nu := NormalizeURL(u)
77 if nu == "" {
78 Trace("@{r}skipping invalid RDAP URL %q\n", u)
79 continue
80 }
81 nurls = append(nurls, nu)
82 }
83 if len(nurls) == 0 {
84 return
85 }
86
87 var added, modified int
88 for _, z := range zones {
89 rus := NewSet(z.RDAPURLs...)
90 n := len(rus)
91 rus.Add(nurls...)
92 m := len(rus) - n
93 if m != 0 {
94 z.RDAPURLs = rus.Values()
95 added += m
96 modified++
97 }
98 }
99
100 Trace("@{.}Added %d RDAP URL(s) to %d zone(s)\n", added, modified)
101 }
1919 // Values returns a sorted slice of the set’s values.
2020 func (set Set) Values() []string {
2121 vals := make([]string, 0, len(set))
22 for s, _ := range set {
22 for s := range set {
2323 vals = append(vals, s)
2424 }
2525 Sort(vals) // domain rank (not lexical) sort
0 package build
1
2 import (
3 "net"
4 "net/url"
5 "sort"
6 "strings"
7
8 "golang.org/x/net/idna"
9 "golang.org/x/text/language"
10 "golang.org/x/text/unicode/norm"
11 )
12
13 // Normalize normalizes a domain name into valid, lowercase, Unicode form.
14 func Normalize(s string) string {
15 s = norm.NFKC.String(s)
16 s = strings.Trim(s, "-.")
17 s = strings.ToLower(s)
18 s, _ = idna.ToASCII(s)
19 s, _ = idna.ToUnicode(s)
20 return s
21 }
22
23 // ToASCII normalizes a domain name to ASCII/punycode.
24 func ToASCII(s string) string {
25 s, _ = idna.ToASCII(s)
26 return s
27 }
28
29 const hostnameProxy = "_____HOSTNAME_____"
30
31 // NormalizeURL normalizes the domain name part of a URL, with a Unicode (non-IDNA encoded) hostname.
32 // Returns a blank string if it is unable to parse s as a valid URL.
33 func NormalizeURL(s string) string {
34 if s == "" {
35 return s
36 }
37 u, _ := url.Parse(s)
38 if u == nil {
39 return ""
40 }
41 h, p, err := net.SplitHostPort(u.Host)
42 if err != nil {
43 h = u.Hostname()
44 }
45 if (u.Scheme == "http" && p == "80") || (u.Scheme == "https" && p == "443") {
46 p = ""
47 }
48 h = Normalize(h)
49 if p != "" {
50 h = net.JoinHostPort(h, p)
51 }
52 u.Host = hostnameProxy
53 if (u.Scheme == "http" || u.Scheme == "https") && u.Path == "" {
54 u.Path = "/"
55 }
56 return strings.Replace(u.String(), hostnameProxy, h, 1)
57 }
58
59 // ToASCIIURL normalizes the domain name part of a URL to ASCII/punycode.
60 func ToASCIIURL(s string) string {
61 if s == "" {
62 return s
63 }
64 u, _ := url.Parse(s)
65 if u == nil {
66 return ""
67 }
68 u.Host = ToASCII(u.Host)
69 return u.String()
70 }
71
72 // normalizeLang normalizes a 4-char ISO 15924 script code (e.g. “Latn”)
73 // or a BCP 47 language tag, e.g. (“en” or “en-us”).
74 func normalizeLang(s string) (string, error) {
75 if s == "none" {
76 s = "und"
77 }
78 tag, err := language.Parse(s)
79 if err != nil {
80 if len(s) != 4 {
81 return "", err
82 }
83 tag, err = language.Parse("mul-" + s) // Try parsing as a script, e.g. “Latn”
84 }
85 return tag.String(), err
86 }
87
88 // NormalizeDomains normalizes a slice of domain names.
89 // Returns a sorted, de-duplicated, normalized list of domain names.
90 func NormalizeDomains(in []string) []string {
91 out := in[:]
92 for i := range out {
93 out[i] = Normalize(out[i])
94 }
95 out = NewSet(out...).Values()
96 sort.Strings(out)
97 return out
98 }
99
100 // IndexOfString finds s as a substring in haystack, returning the index and offset of s in haystack.
101 // Returns -1, -1 if s is not present in haystack.
102 func IndexOfString(haystack []string, s string) (int, int) {
103 for i := range haystack {
104 j := strings.Index(haystack[i], s)
105 if j < 0 {
106 continue
107 }
108 return i, j
109 }
110 return -1, -1
111 }
112
113 // IndexOrAppendString finds or adds s to haystack, returning the index and offset of s in haystack.
114 // Returns 0, 0, 0 for an empty string.
115 func IndexOrAppendString(haystack *[]string, s string) (int, int, int) {
116 if len(s) == 0 {
117 return 0, 0, 0
118 }
119 i, j := IndexOfString(*haystack, s)
120 if i < 0 {
121 i = len(*haystack)
122 *haystack = append(*haystack, s)
123 }
124 return i, j, j + len(s)
125 }
126
127 // IndexOfStrings finds a rank-sorted slice of domain names (needle)
128 // within a larger slice (haystack).
129 func IndexOfStrings(haystack []string, needle []string) int {
130 outer:
131 for i := range haystack {
132 for j := range needle {
133 if i+j >= len(haystack) || needle[j] != haystack[i+j] {
134 continue outer
135 }
136 }
137 return i
138 }
139 return -1
140 }
141
142 // IndexOrAppendStrings finds or appends a slice of rank-sorted domain names (needle)
143 // Returns 0,0 for a zero-length needle.
144 func IndexOrAppendStrings(haystack *[]string, needle []string) (int, int) {
145 if len(needle) == 0 {
146 return 0, 0
147 }
148 idx := IndexOfStrings(*haystack, needle)
149 if idx < 0 {
150 idx = len(*haystack)
151 *haystack = append(*haystack, needle...)
152 }
153 return idx, idx + len(needle)
154 }
00 package build
11
2 import "github.com/wsxiaoys/terminal/color"
2 import (
3 "os"
4
5 "github.com/wsxiaoys/terminal/color"
6 )
37
48 // AddTags adds one or more tags to a Zone.
59 func AddTags(zones map[string]*Zone, tags []string) {
1519 modified++
1620 }
1721 }
18 color.Printf("@{.}Added %d tag(s) to %d zone(s)\n", added, modified)
22 color.Fprintf(os.Stderr, "@{.}Added %d tag(s) to %d zone(s)\n", added, modified)
1923 }
2024
2125 // RemoveTags removes one or more tags from a Zone.
3438 modified++
3539 }
3640 }
37 color.Printf("@{.}Removed %d tag(s) from %d zone(s)\n", removed, modified)
41 color.Fprintf(os.Stderr, "@{.}Removed %d tag(s) from %d zone(s)\n", removed, modified)
3842 }
3943
4044 func tagBits(tagValues map[string]uint64, tags []string) (bits uint64) {
+0
-41
internal/build/unicode.go less more
0 package build
1
2 import (
3 "strings"
4
5 "golang.org/x/net/idna"
6 "golang.org/x/text/language"
7 "golang.org/x/text/unicode/norm"
8 )
9
10 // Normalize normalizes a domain name into valid, lowercase, Unicode form.
11 func Normalize(s string) string {
12 s = norm.NFKC.String(s)
13 s = strings.Trim(s, "-.")
14 s = strings.ToLower(s)
15 s, _ = idna.ToASCII(s)
16 s, _ = idna.ToUnicode(s)
17 return s
18 }
19
20 // ToASCII normalizes a domain name or URL to ASCII/punycode.
21 func ToASCII(s string) string {
22 s, _ = idna.ToASCII(s)
23 return s
24 }
25
26 // normalizeLang normalizes a 4-char ISO 15924 script code (e.g. “Latn”)
27 // or a BCP 47 language tag, e.g. (“en” or “en-us”).
28 func normalizeLang(s string) (string, error) {
29 if s == "none" {
30 s = "und"
31 }
32 tag, err := language.Parse(s)
33 if err != nil {
34 if len(s) != 4 {
35 return "", err
36 }
37 tag, err = language.Parse("mul-" + s) // Try parsing as a script, e.g. “Latn”
38 }
39 return tag.String(), err
40 }
0 package build
1
2 import "testing"
3
4 func TestNormalize(t *testing.T) {
5 tests := []struct {
6 s string
7 want string
8 }{
9 {"com", "com"},
10 {"net", "net"},
11 {"org", "org"},
12 {"COM", "com"},
13 {"nEt", "net"},
14 {".ORg", "org"},
15 {"--HEl01-", "hel01"},
16 {"--SMOOTH.OPERATOR--", "smooth.operator"},
17 {".МОСКВА", "москва"},
18 {"通用电气公司", "通用电气公司"},
19 }
20 for _, tt := range tests {
21 t.Run(tt.s, func(t *testing.T) {
22 got := Normalize(tt.s)
23 if got != tt.want {
24 t.Errorf("Normalize(%q), want: %v, got: %v", tt.s, tt.want, got)
25 }
26 })
27 }
28 }
29 func TestToASCII(t *testing.T) {
30 tests := []struct {
31 s string
32 want string
33 }{
34 {"com", "com"},
35 {"net", "net"},
36 {"org", "org"},
37 {"москва", "xn--80adxhks"},
38 {"通用电气公司", "xn--55qx5d8y0buji4b870u"},
39 {"abc.com:80", "abc.com:80"},
40 {"abc.com:443", "abc.com:443"},
41 }
42 for _, tt := range tests {
43 t.Run(tt.s, func(t *testing.T) {
44 got := ToASCII(tt.s)
45 if got != tt.want {
46 t.Errorf("ToASCII(%q), want: %v, got: %v", tt.s, tt.want, got)
47 }
48 })
49 }
50 }
51
52 func TestNormalizeURL(t *testing.T) {
53 tests := []struct {
54 s string
55 want string
56 }{
57 {"http://www.google.com/", "http://www.google.com/"},
58 {"https://www.google.com/", "https://www.google.com/"},
59 {"https://WWW.ALPHA.BET/", "https://www.alpha.bet/"},
60 {"https://nic.dev", "https://nic.dev/"},
61 {"https://nic.москва/", "https://nic.москва/"},
62 {"https://nic.xn--80adxhks/", "https://nic.москва/"},
63 }
64 for _, tt := range tests {
65 t.Run(tt.s, func(t *testing.T) {
66 got := NormalizeURL(tt.s)
67 if got != tt.want {
68 t.Errorf("NormalizeURL(%q), want: %v, got: %v", tt.s, tt.want, got)
69 }
70 })
71 }
72 }
73
74 func TestToASCIIURL(t *testing.T) {
75 tests := []struct {
76 s string
77 want string
78 }{
79 {"http://www.google.com/", "http://www.google.com/"},
80 {"https://www.google.com/", "https://www.google.com/"},
81 {"https://nic.москва/", "https://nic.xn--80adxhks/"},
82 {"https://nic.xn--80adxhks/", "https://nic.xn--80adxhks/"},
83 }
84 for _, tt := range tests {
85 t.Run(tt.s, func(t *testing.T) {
86 got := ToASCIIURL(tt.s)
87 if got != tt.want {
88 t.Errorf("ToASCIIURL(%q), want: %v, got: %v", tt.s, tt.want, got)
89 }
90 })
91 }
92 }
6666 return nil
6767 }
6868
69 const rubyWhoisURL = "https://github.com/weppos/whois/raw/master/data/tld.json"
69 const rubyWhoisURL = "https://github.com/weppos/whois/raw/HEAD/data/tld.json"
7070
7171 // FetchRubyWhoisServers fetches whois servers from the Ruby Whois project.
7272 func FetchRubyWhoisServers(zones map[string]*Zone, addNew bool) error {
112112 servers++
113113 }
114114 }
115 if rec.URL != "" && rec.URL != z.WhoisURL {
115 if z.WhoisServer != "" && rec.URL != "" && rec.URL != z.WhoisURL {
116116 z.WhoisURL = rec.URL
117117 urls++
118118 }
77 "unicode/utf8"
88
99 "golang.org/x/net/idna"
10 "golang.org/x/text/language"
1011 )
1112
1213 // Zone represents a build-time DNS zone (public suffix).
1314 type Zone struct {
1415 Domain string `json:"domain,omitempty"`
1516 InfoURL string `json:"infoURL,omitempty"`
16 Tags []string `json:"tags,omitempty"`
17 Locations []string `json:"locations,omitempty"`
1817 WhoisServer string `json:"whoisServer,omitempty"`
1918 WhoisURL string `json:"whoisURL,omitempty"`
19 RDAPURLs []string `json:"rdapURLs,omitempty"`
2020 NameServers []string `json:"nameServers,omitempty"`
2121 Wildcards []string `json:"wildcards,omitempty"`
22 Locations []string `json:"locations,omitempty"`
23 Languages []string `json:"languages,omitempty"`
24 Tags []string `json:"tags,omitempty"`
2225 Policies []Policy `json:"policies,omitempty"`
2326
2427 // Internal
3538 // Normalize formats a build.Zone into normal form suitable for serialization.
3639 func (z *Zone) Normalize() {
3740 z.Domain = Normalize(z.Domain)
41 z.InfoURL = NormalizeURL(z.InfoURL)
3842 var tags []string
39 for _, t := range z.Tags {
40 tags = append(tags, t)
41 }
43 tags = append(tags, z.Tags...)
4244 z.Tags = NewSet(tags...).Values()
43 z.NameServers = NewSet(z.NameServers...).Values()
44 sort.Strings(z.NameServers)
45 sort.Strings(z.Wildcards)
46 sort.Strings(z.subdomains)
45 z.NameServers = NormalizeDomains(z.NameServers)
46 z.Wildcards = NormalizeDomains(z.Wildcards)
47 z.subdomains = NormalizeDomains(z.subdomains)
48 z.WhoisServer = Normalize(z.WhoisServer)
49 z.WhoisURL = NormalizeURL(z.WhoisURL)
4750 z.normalizePolicies()
51 z.normalizeLanguages()
52 }
53
54 func (z *Zone) normalizeLanguages() {
55 if len(z.Languages) == 0 {
56 z.Languages = nil
57 return
58 }
59 langs := NewSet(z.Languages...)
60 nlangs := NewSet()
61 for lang := range langs {
62 tag, err := language.Parse(lang)
63 if err != nil {
64 Trace("Zone %s has malformed language tag: %s\n", z.Domain, lang)
65
66 }
67 nlangs.Add(tag.String())
68 }
69 z.Languages = nlangs.Values()
70 sort.Strings(z.Languages)
4871 }
4972
5073 func (z *Zone) normalizePolicies() {
137160 func (z *Zone) HasMetadata() bool {
138161 j, _ := json.Marshal(z)
139162 j2, _ := json.Marshal(&Zone{Domain: z.Domain})
140 if string(j) == string(j2) {
141 return false
142 }
143 return true
163 return string(j) != string(j2)
144164 }
145165
146166 // ASCII returns the ACE encoded form of the Zone’s label(s).
00 {
11 "domain": "001.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "002.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "003.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "004.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "005.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "006.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "007.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "008.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "009.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "010.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "011.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "012.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "013.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "014.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "015.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "016.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "017.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "018.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "019.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "021.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "022.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "023.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "024.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "025.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "026.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "027.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "028.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "029.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "030.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "031.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "032.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "033.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "034.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "035.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "036.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "037.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "038.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "039.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "040.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "041.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "042.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "043.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "044.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "045.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "046.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "047.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "048.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "049.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "050.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "051.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "052.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "053.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "054.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "055.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "056.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "057.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "058.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "059.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "060.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "061.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "062.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "063.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "064.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "065.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "066.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "067.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "068.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "069.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "070.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "071.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "072.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "073.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "074.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "075.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "076.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "077.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "078.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "079.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "083.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "086.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "087.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "089.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "094.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "095.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "1x.biz",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "1x.biz"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "1x.de",
2 "nameServers": [
3 "ns1.dev.kv.de",
4 "ns2.dev.kv.de"
5 ],
6 "wildcards": [
7 "1x.de",
8 "95.217.58.108"
9 ],
210 "tags": [
311 "private"
4 ],
5 "nameServers": [
6 "ns1.subdomain.com",
7 "ns2.subdomain.com"
8 ],
9 "wildcards": [
10 "144.76.162.245",
11 "1x.de"
1212 ]
1313 }
00 {
11 "domain": "1x.net",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "1x.net"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "24.eu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "24.eu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "24.gg",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "24.gg"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "24.gp",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
85 ],
9 "wildcards": [
10 "144.76.162.245",
11 "24.gp"
6 "tags": [
7 "private"
128 ]
139 }
00 {
11 "domain": "24.je",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "24.je"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "24.lc",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "24.lc"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "24.mu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "24.mu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "24.nl",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
85 ],
9 "wildcards": [
10 "144.76.162.245",
11 "24.nl"
6 "tags": [
7 "private"
128 ]
139 }
00 {
11 "domain": "24.tl",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "24.tl"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "4u.com",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.registry-servers.4u.com",
74 "ns2.registry-servers.4u.com",
96 "ns4.registry-servers.4u.com",
107 "ns5.registry-servers.4u.com",
118 "ns6.registry-servers.4u.com"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "aaa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aaa",
4 "rdapURLs": [
5 "https://rdap.nic.aaa/"
66 ],
7 "whoisServer": "whois.nic.aaa",
87 "nameServers": [
98 "ns1.dns.nic.aaa",
109 "ns2.dns.nic.aaa",
1312 "ns5.dns.nic.aaa",
1413 "ns6.dns.nic.aaa"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "aarp",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aarp",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/aarp/v1/"
66 ],
7 "whoisServer": "whois.nic.aarp",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "abarth",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/abarth/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.abarth",
109 "a2.nic.abarth",
1110 "b0.nic.abarth",
1211 "c0.nic.abarth"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "abb",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/abb/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "abbott",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/abbott/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.abbott",
109 "a2.nic.abbott",
1110 "b0.nic.abbott",
1211 "c0.nic.abbott"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "abbvie",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/abbvie/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.abbvie",
109 "a2.nic.abbvie",
1110 "b0.nic.abbvie",
1211 "c0.nic.abbvie"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "abc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.abc",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/abc/v1/"
66 ],
7 "whoisServer": "whois.nic.abc",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "able",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.able",
4 "rdapURLs": [
5 "https://rdap.nic.able/"
66 ],
7 "whoisServer": "whois.nic.able",
87 "nameServers": [
98 "ns1.dns.nic.able",
109 "ns2.dns.nic.able",
1312 "ns5.dns.nic.able",
1413 "ns6.dns.nic.able"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "ja",
23 "value": "https://www.iana.org/domains/idn-tables/tables/able_ja_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "abogado",
22 "infoURL": "http://nic.abogado/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.abogado",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/abogado/"
56 ],
6 "whoisServer": "whois.nic.abogado",
77 "nameServers": [
88 "dns1.nic.abogado",
99 "dns2.nic.abogado",
1414 "dnsc.nic.abogado",
1515 "dnsd.nic.abogado"
1616 ],
17 "tags": [
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-table",
00 {
11 "domain": "abudhabi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.abudhabi",
4 "rdapURLs": [
5 "https://rdap.nic.abudhabi/"
6 ],
7 "nameServers": [
8 "gtld.alpha.aridns.net.au",
9 "gtld.beta.aridns.net.au",
10 "gtld.delta.aridns.net.au",
11 "gtld.gamma.aridns.net.au"
712 ],
813 "locations": [
914 "Abu Dhabi",
1015 "AE-AZ"
1116 ],
12 "whoisServer": "whois.nic.abudhabi",
13 "nameServers": [
14 "gtld.alpha.aridns.net.au",
15 "gtld.beta.aridns.net.au",
16 "gtld.delta.aridns.net.au",
17 "gtld.gamma.aridns.net.au"
17 "tags": [
18 "city",
19 "generic",
20 "geo"
1821 ],
1922 "policies": [
2023 {
+0
-10
metadata/ac.bw.json less more
0 {
1 "domain": "ac.bw",
2 "nameServers": [
3 "dns1.nic.net.bw",
4 "dns2.nic.net.bw",
5 "master.btc.net.bw",
6 "ns-bw.afrinic.net",
7 "pch.nic.net.bw"
8 ]
9 }
+0
-12
metadata/ac.cd.json less more
0 {
1 "domain": "ac.cd",
2 "nameServers": [
3 "igubu.saix.net",
4 "ns-root-1.scpt-network.com",
5 "ns-root-2.scpt-network.com",
6 "ns-root-4.scpt-network.com",
7 "ns-root-5.scpt-network.com",
8 "sabela.saix.net",
9 "sangoma.saix.net"
10 ]
11 }
00 {
11 "domain": "ac.gg",
22 "nameServers": [
3 "ns1.rapidswitch.com",
4 "ns2.rapidswitch.com",
5 "ns3.rapidswitch.com"
3 "nsa.dnsnode.net",
4 "nsp.dnsnode.net",
5 "nsu.dnsnode.net"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "ac",
2 "infoURL": "http://nic.ac",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.icb.co.uk/",
73 "whoisServer": "whois.nic.ac",
84 "nameServers": [
95 "a0.nic.ac",
106 "a2.nic.ac",
117 "b0.nic.ac",
128 "c0.nic.ac"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ],
1414 "policies": [
1515 {
11 "domain": "ac.mu",
22 "nameServers": [
33 "anycast1.irondns.net",
4 "fork.sth.dnsnode.net",
45 "mu1.dyntld.net",
56 "mu2.dyntld.net",
67 "mu3.dyntld.net",
78 "mu4.dyntld.net",
8 "udns1.tld.mu"
9 "udns1.tld.mu",
10 "udns2.tld.mu"
911 ],
1012 "policies": [
1113 {
00 {
11 "domain": "academy",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.academy",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.academy",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "academy.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "accenture",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/accenture/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "accountant",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.accountant",
4 "rdapURLs": [
5 "https://rdap.nic.accountant/"
56 ],
6 "whoisServer": "whois.nic.accountant",
77 "nameServers": [
88 "ns1.dns.nic.accountant",
99 "ns2.dns.nic.accountant",
1212 "ns5.dns.nic.accountant",
1313 "ns6.dns.nic.accountant"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "accountants",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.accountants",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.accountants",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "accountants.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "aco",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.aco",
4 "rdapURLs": [
5 "https://rdap.nic.aco/"
6 ],
7 "nameServers": [
8 "a.dns.nic.aco",
9 "m.dns.nic.aco",
10 "n.dns.nic.aco"
11 ],
312 "tags": [
413 "brand",
514 "generic"
6 ],
7 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.aco",
10 "a2.nic.aco",
11 "b0.nic.aco",
12 "c0.nic.aco"
1315 ],
1416 "policies": [
1517 {
00 {
11 "domain": "active",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "actor",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.actor",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.actor",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "actor.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "manaslu.mos.com.np",
55 "np-ns.npix.net.np",
00 {
11 "domain": "ad",
22 "infoURL": "http://www.nic.ad/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
83 "nameServers": [
94 "ad.cctld.authdns.ripe.net",
105 "ad.ns.nic.es",
116 "dnsc.ad",
127 "dnsm.ad",
138 "ns3.nic.fr"
9 ],
10 "tags": [
11 "country",
12 "generic",
13 "geo"
1414 ]
1515 }
00 {
11 "domain": "adac",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.adac",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/adac/"
66 ],
7 "whoisServer": "whois.nic.adac",
87 "nameServers": [
98 "a.nic.adac",
109 "b.nic.adac",
1110 "c.nic.adac",
1211 "d.nic.adac"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ads",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "adult.ht",
2 "tags": [
3 "adult"
4 ],
52 "nameServers": [
6 "ns.cocca.fr",
73 "ns1.nic.ht",
84 "ns1.polymtl.ca",
95 "ns3.nic.fr",
106 "pch.nic.ht"
7 ],
8 "tags": [
9 "adult"
1110 ],
1211 "policies": [
1312 {
00 {
11 "domain": "adult",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "adult",
5 "generic"
3 "whoisServer": "whois.registrar.adult",
4 "rdapURLs": [
5 "https://whois.registrar.adult/rdap/"
66 ],
7 "whoisServer": "whois.registrar.adult",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns5.uniregistry.net",
1211 "ns6.uniregistry.info"
1312 ],
13 "tags": [
14 "adult",
15 "generic"
16 ],
1417 "policies": [
18 {
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/adult_ar_2.txt"
22 },
1523 {
1624 "type": "idn-table",
1725 "key": "be",
2634 "type": "idn-table",
2735 "key": "bs",
2836 "value": "https://www.iana.org/domains/idn-tables/tables/adult_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "cnr",
41 "value": "https://www.iana.org/domains/idn-tables/tables/adult_cnr_1.0.txt"
2942 },
3043 {
3144 "type": "idn-table",
4457 },
4558 {
4659 "type": "idn-table",
60 "key": "fr",
61 "value": "https://www.iana.org/domains/idn-tables/tables/adult_fr_1.0.txt"
62 },
63 {
64 "type": "idn-table",
4765 "key": "hu",
4866 "value": "https://www.iana.org/domains/idn-tables/tables/adult_hu_1.txt"
4967 },
5169 "type": "idn-table",
5270 "key": "is",
5371 "value": "https://www.iana.org/domains/idn-tables/tables/adult_is_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "it",
76 "value": "https://www.iana.org/domains/idn-tables/tables/adult_it_1.0.txt"
5477 },
5578 {
5679 "type": "idn-table",
7699 "type": "idn-table",
77100 "key": "pl",
78101 "value": "https://www.iana.org/domains/idn-tables/tables/adult_pl_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pt",
106 "value": "https://www.iana.org/domains/idn-tables/tables/adult_pt_1.0.txt"
79107 },
80108 {
81109 "type": "idn-table",
00 {
11 "domain": "ae.com",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "asia3.akam.net",
74 "eur2.akam.net",
118 "usc3.akam.net",
129 "use4.akam.net",
1310 "usw1.akam.net"
11 ],
12 "tags": [
13 "private"
1414 ]
1515 }
00 {
11 "domain": "ae",
2 "infoURL": "http://www.nic.ae/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.ae/",
73 "whoisServer": "whois.aeda.net.ae",
84 "nameServers": [
95 "ns1.aedns.ae",
106 "ns2.aedns.ae",
117 "ns4.apnic.net",
128 "nsext-pch.aedns.ae"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ]
1414 }
00 {
11 "domain": "ae.org",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/ae.org/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "aeg",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aeg",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/aeg/v1/"
66 ],
7 "whoisServer": "whois.nic.aeg",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "aero",
2 "infoURL": "http://nic.aero/",
2 "infoURL": "https://information.aero/",
3 "whoisServer": "whois.aero",
4 "nameServers": [
5 "a0.nic.aero",
6 "a2.nic.aero",
7 "b0.nic.aero",
8 "b2.nic.aero",
9 "c0.nic.aero"
10 ],
311 "tags": [
412 "generic",
513 "sponsored"
6 ],
7 "whoisServer": "whois.aero",
8 "nameServers": [
9 "a0.aero.afilias-nst.info",
10 "a2.aero.afilias-nst.info",
11 "b0.aero.afilias-nst.org",
12 "b2.aero.afilias-nst.org",
13 "c0.aero.afilias-nst.info",
14 "d0.aero.afilias-nst.org"
1514 ],
1615 "policies": [
1716 {
00 {
11 "domain": "aero.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "aetna",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aetna",
4 "rdapURLs": [
5 "https://rdap.nic.aetna/"
66 ],
7 "whoisServer": "whois.nic.aetna",
87 "nameServers": [
98 "ns1.dns.nic.aetna",
109 "ns2.dns.nic.aetna",
1312 "ns5.dns.nic.aetna",
1413 "ns6.dns.nic.aetna"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/aetna_es_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "pt",
28 "value": "https://www.iana.org/domains/idn-tables/tables/aetna_pt_3.0.xml"
1929 }
2030 ]
2131 }
00 {
11 "domain": "af",
22 "infoURL": "http://www.nic.af/",
3 "whoisServer": "whois.nic.af",
4 "nameServers": [
5 "ns.anycast.nic.af",
6 "ns1.anycastdns.cz",
7 "ns2.anycastdns.cz"
8 ],
39 "tags": [
410 "country",
511 "geo"
6 ],
7 "whoisServer": "whois.nic.af",
8 "nameServers": [
9 "ns.anycast.nic.af",
10 "ns.cocca.fr"
1112 ],
1213 "policies": [
1314 {
00 {
11 "domain": "afamilycompany",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.afamilycompany",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/afamilycompany/v1/"
66 ],
7 "whoisServer": "whois.nic.afamilycompany",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "afl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.afl",
4 "rdapURLs": [
5 "https://rdap.nic.afl/"
66 ],
7 "whoisServer": "whois.nic.afl",
87 "nameServers": [
98 "a.nic.afl",
109 "b.nic.afl",
1110 "c.nic.afl",
1211 "d.nic.afl"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "africa.com",
2 "tags": [
3 "private"
4 ],
52 "whoisServer": "whois.centralnic.com",
63 "nameServers": [
74 "ns2.dns.business",
85 "ns3.dns.business",
96 "ns4.dns.business"
7 ],
8 "tags": [
9 "private"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "africa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "geo"
3 "whoisServer": "africa-whois.registry.net.za",
4 "rdapURLs": [
5 "https://rdap.registry.net.za/rdap/"
6 ],
7 "nameServers": [
8 "coza1.dnsnode.net",
9 "ns.coza.net.za",
10 "ns2us.dns.business"
611 ],
712 "locations": [
813 "Africa"
914 ],
10 "whoisServer": "africa-whois.registry.net.za",
11 "nameServers": [
12 "coza1.dnsnode.net",
13 "ns.coza.net.za",
14 "ns2us.dns.business"
15 "tags": [
16 "generic",
17 "geo"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "ag",
22 "infoURL": "http://www.nic.ag/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.nic.ag",
84 "nameServers": [
95 "a0.cctld.afilias-nst.info",
139 "c0.cctld.afilias-nst.info",
1410 "d0.cctld.afilias-nst.org"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "agakhan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/agakhan/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.agakhan",
109 "a2.nic.agakhan",
1110 "b0.nic.agakhan",
1211 "c0.nic.agakhan"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "agency",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.agency",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.agency",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "agency.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "agro.pl",
2 "infoURL": "http://tld.by/",
2 "infoURL": "https://domain.by/",
33 "nameServers": [
44 "a-dns.pl",
55 "b-dns.pl",
00 {
11 "domain": "ah.cn",
2 "infoURL": "http://www.belizenic.bz/",
2 "infoURL": "https://www.belizenic.bz/",
33 "nameServers": [
44 "a.dns.cn",
55 "b.dns.cn",
00 {
11 "domain": "ai",
2 "infoURL": "http://nic.com.ai",
2 "infoURL": "http://nic.com.ai/",
3 "whoisServer": "whois.nic.ai",
4 "nameServers": [
5 "a.lactld.org",
6 "anycastdns1-cz.nic.ai",
7 "anycastdns2-cz.nic.ai",
8 "pch.whois.ai"
9 ],
310 "tags": [
411 "country",
512 "geo"
6 ],
7 "whoisServer": "whois.nic.ai",
8 "nameServers": [
9 "ns.cocca.fr",
10 "pch.whois.ai"
1113 ],
1214 "policies": [
1315 {
00 {
11 "domain": "aig",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aig",
4 "rdapURLs": [
5 "https://rdap.nic.aig/"
66 ],
7 "whoisServer": "whois.nic.aig",
87 "nameServers": [
98 "ns1.dns.nic.aig",
109 "ns2.dns.nic.aig",
1312 "ns5.dns.nic.aig",
1413 "ns6.dns.nic.aig"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/aig_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "aigo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "airbus",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.airbus",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/airbus/v1/"
66 ],
7 "whoisServer": "whois.nic.airbus",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "airforce",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.airforce",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.airforce",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "airtel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.airtel",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/airtel/v1/"
66 ],
7 "whoisServer": "whois.nic.airtel",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ak.us",
2 "infoURL": "http://doa.alaska.gov/ets/eash/DNSrequestform.html"
2 "infoURL": "https://doa.alaska.gov/ets/eash/DNSrequestform.html"
33 }
00 {
11 "domain": "akdn",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/akdn/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.akdn",
109 "a2.nic.akdn",
1110 "b0.nic.akdn",
1211 "c0.nic.akdn"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "al",
22 "infoURL": "http://www.ert.gov.al/ert_eng/domain.html",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisURL": "http://www.akep.al/sq/kerkoni-domain",
84 "nameServers": [
95 "munnari.oz.au",
117 "nsx.nic.al",
128 "rip.psg.com"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "alfaromeo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/alfaromeo/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.alfaromeo",
109 "a2.nic.alfaromeo",
1110 "b0.nic.alfaromeo",
1211 "c0.nic.alfaromeo"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "alibaba",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.alibaba",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/alibaba/"
66 ],
7 "whoisServer": "whois.nic.alibaba",
87 "nameServers": [
98 "a0.nic.alibaba",
109 "a2.nic.alibaba",
1110 "b0.nic.alibaba",
1211 "c0.nic.alibaba"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "alipay",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.alipay",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/alipay/"
66 ],
7 "whoisServer": "whois.nic.alipay",
87 "nameServers": [
98 "a0.nic.alipay",
109 "a2.nic.alipay",
1110 "b0.nic.alipay",
1211 "c0.nic.alipay"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "allfinanz",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.allfinanz",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/allfinanz/"
66 ],
7 "whoisServer": "whois.nic.allfinanz",
87 "nameServers": [
98 "a.nic.allfinanz",
109 "b.nic.allfinanz",
1110 "c.nic.allfinanz",
1211 "d.nic.allfinanz"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "allstate",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/allstate/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.allstate",
109 "a2.nic.allstate",
1110 "b0.nic.allstate",
1211 "c0.nic.allstate"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ally",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.ally",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ally/"
6 ],
7 "nameServers": [
8 "a.nic.ally",
9 "b.nic.ally",
10 "c.nic.ally",
11 "d.nic.ally"
12 ],
313 "tags": [
414 "brand",
515 "generic"
6 ],
7 "whoisServer": "whois.nic.ally",
8 "nameServers": [
9 "a0.nic.ally",
10 "a2.nic.ally",
11 "b0.nic.ally",
12 "c0.nic.ally"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "alsace",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois-alsace.nic.fr",
4 "rdapURLs": [
5 "https://rdap.nic.alsace/"
6 ],
7 "nameServers": [
8 "d.nic.fr",
9 "f.ext.nic.fr",
10 "g.ext.nic.fr"
11 ],
12 "locations": [
13 "FR-A"
14 ],
315 "tags": [
416 "generic",
517 "geo",
618 "region"
719 ],
8 "locations": [
9 "FR-A"
10 ],
11 "whoisServer": "whois-alsace.nic.fr",
12 "nameServers": [
13 "d.nic.fr",
14 "f.ext.nic.fr",
15 "g.ext.nic.fr"
16 ],
1720 "policies": [
1821 {
19 "type": "idn-disallowed"
22 "type": "idn-table",
23 "key": "mul-Latn",
24 "value": "https://www.iana.org/domains/idn-tables/tables/alsace_latn_1.txt"
2025 }
2126 ]
2227 }
00 {
11 "domain": "alstom",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.alstom",
4 "rdapURLs": [
5 "https://rdap.nic.alstom/"
66 ],
7 "whoisServer": "whois.nic.alstom",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "am",
22 "infoURL": "https://www.amnic.net/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.amnic.net",
84 "nameServers": [
95 "fork.sth.dnsnode.net",
106 "ns-cdn.amnic.net",
117 "ns-pch.amnic.net",
128 "ns-pri.nic.am"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ]
1414 }
00 {
11 "domain": "amazon",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic",
6 "withdrawn"
2 "infoURL": "http://nic.amazon/",
3 "whoisServer": "whois.nic.amazon",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/amazon/"
76 ],
8 "whoisServer": "whois.nic.amazon",
97 "nameServers": [
108 "dns1.nic.amazon",
119 "dns2.nic.amazon",
1614 "dnsc.nic.amazon",
1715 "dnsd.nic.amazon"
1816 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1921 "policies": [
2022 {
21 "type": "idn-disallowed"
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_da_2.2.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_de_2.2.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_es_2.2.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_fi_2.2.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "hu",
45 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_hu_2.2.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "is",
50 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_is_2.2.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_ja_2.2.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_ko_2.2.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_lt_2.2.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_lv_2.2.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_no_2.2.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_pl_2.2.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_pt_2.2.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_ru_2.2.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_sv_2.2.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/amazon_zh_2.2.txt"
22101 }
23102 ]
24103 }
00 {
11 "domain": "americanexpress",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.americanexpress",
4 "rdapURLs": [
5 "https://rdap.nic.americanexpress/"
66 ],
7 "whoisServer": "whois.nic.americanexpress",
87 "nameServers": [
98 "ns1.dns.nic.americanexpress",
109 "ns2.dns.nic.americanexpress",
1312 "ns5.dns.nic.americanexpress",
1413 "ns6.dns.nic.americanexpress"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/americanexpress_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "americanfamily",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.americanfamily",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/americanfamily/v1/"
66 ],
7 "whoisServer": "whois.nic.americanfamily",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "amex",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.amex",
4 "rdapURLs": [
5 "https://rdap.nic.amex/"
66 ],
7 "whoisServer": "whois.nic.amex",
87 "nameServers": [
98 "ns1.dns.nic.amex",
109 "ns2.dns.nic.amex",
1312 "ns5.dns.nic.amex",
1413 "ns6.dns.nic.amex"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/amex_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "amfam",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.amfam",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/amfam/v1/"
66 ],
7 "whoisServer": "whois.nic.amfam",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "amica",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.amica",
4 "rdapURLs": [
5 "https://rdap.nic.amica/"
66 ],
7 "whoisServer": "whois.nic.amica",
87 "nameServers": [
98 "ns1.dns.nic.amica",
109 "ns2.dns.nic.amica",
1312 "ns5.dns.nic.amica",
1413 "ns6.dns.nic.amica"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "amsterdam",
2 "infoURL": "http://nic.amsterdam/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
2 "infoURL": "https://nic.amsterdam/",
3 "whoisServer": "whois.nic.amsterdam",
4 "rdapURLs": [
5 "https://rdap.nic.amsterdam/"
6 ],
7 "nameServers": [
8 "ns1.nic.amsterdam",
9 "ns2.nic.amsterdam",
10 "ns3.nic.amsterdam"
711 ],
812 "locations": [
913 "Amsterdam",
1014 "NL-NH"
1115 ],
12 "whoisServer": "whois.nic.amsterdam",
13 "nameServers": [
14 "ns1.nic.amsterdam",
15 "ns2.nic.amsterdam",
16 "ns3.nic.amsterdam"
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "analytics",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.analytics",
4 "rdapURLs": [
5 "https://rdap.nic.analytics/"
56 ],
6 "whoisServer": "whois.nic.analytics",
77 "nameServers": [
88 "ns1.dns.nic.analytics",
99 "ns2.dns.nic.analytics",
1212 "ns5.dns.nic.analytics",
1313 "ns6.dns.nic.analytics"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/analytics_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "android",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "anquan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.teleinfo.cn",
4 "rdapURLs": [
5 "https://rdap.teleinfo.cn/"
56 ],
6 "whoisServer": "whois.teleinfo.cn",
77 "nameServers": [
88 "ns1.teleinfo.cn",
99 "ns2.teleinfoo.com",
1010 "ns3.teleinfo.cn",
1111 "ns4.teleinfoo.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "anz",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.anz",
4 "rdapURLs": [
5 "https://rdap.nic.anz/"
66 ],
7 "whoisServer": "whois.nic.anz",
87 "nameServers": [
98 "a.nic.anz",
109 "b.nic.anz",
1110 "c.nic.anz",
1211 "d.nic.anz"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ao",
2 "infoURL": "http://www.dns.ao/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.dns.ao/ao/",
73 "nameServers": [
84 "ao01.dns.pt",
95 "ao03.dns.pt",
106 "h.dns.pt"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "aol",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aol",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/aol/v1/"
66 ],
7 "whoisServer": "whois.nic.aol",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "apartments",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.apartments",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.apartments",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
0 {
1 "domain": "app.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "app",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "apple",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/apple/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.apple",
109 "a2.nic.apple",
1110 "b0.nic.apple",
1211 "c0.nic.apple"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "aq",
22 "infoURL": "http://www.gobin.info/domainname/aq.txt",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "nameServers": [
84 "fork.sth.dnsnode.net",
95 "ns1.anycast.dns.aq",
106 "ns99.dns.net.nz"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "aquarelle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aquarelle",
4 "rdapURLs": [
5 "https://rdap.nic.aquarelle/"
66 ],
7 "whoisServer": "whois.nic.aquarelle",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ar.com",
2 "whoisServer": "whois.centralnic.com",
3 "nameServers": [
4 "pdns07.domaincontrol.com",
5 "pdns08.domaincontrol.com"
6 ],
27 "tags": [
38 "private"
4 ],
5 "whoisServer": "whois.centralnic.com",
6 "nameServers": [
7 "ns69.domaincontrol.com",
8 "ns70.domaincontrol.com"
99 ]
1010 }
00 {
11 "domain": "ar",
2 "infoURL": "http://www.nic.ar/",
3 "tags": [
4 "country",
5 "geo"
2 "infoURL": "https://nic.ar/",
3 "whoisServer": "whois.nic.ar",
4 "rdapURLs": [
5 "https://rdap.nic.ar/"
66 ],
7 "whoisServer": "whois.nic.ar",
8 "whoisURL": "http://www.nic.ar/",
97 "nameServers": [
108 "a.dns.ar",
119 "ar.cctld.authdns.ripe.net",
1412 "d.dns.ar",
1513 "e.dns.ar",
1614 "f.dns.ar"
15 ],
16 "tags": [
17 "country",
18 "geo"
1719 ]
1820 }
00 {
11 "domain": "arab",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.arab",
4 "rdapURLs": [
5 "https://rdap.nic.arab/"
56 ],
6 "whoisServer": "whois.nic.arab",
77 "nameServers": [
88 "gtld.alpha.aridns.net.au",
99 "gtld.beta.aridns.net.au",
1010 "gtld.delta.aridns.net.au",
1111 "gtld.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "aramco",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aramco",
4 "rdapURLs": [
5 "https://rdap.nic.aramco/"
66 ],
7 "whoisServer": "whois.nic.aramco",
87 "nameServers": [
98 "ns1.dns.nic.aramco",
109 "ns2.dns.nic.aramco",
1312 "ns5.dns.nic.aramco",
1413 "ns6.dns.nic.aramco"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "ar",
23 "value": "https://www.iana.org/domains/idn-tables/tables/aramco_ar_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "es",
28 "value": "https://www.iana.org/domains/idn-tables/tables/aramco_es_3.0.xml"
1929 }
2030 ]
2131 }
00 {
11 "domain": "archi",
2 "infoURL": "http://nic.archi/",
3 "tags": [
4 "generic"
2 "infoURL": "https://domains.archi/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/archi/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.archi",
99 "a2.nic.archi",
1010 "b0.nic.archi",
1111 "c0.nic.archi"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "army",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.army",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.army",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "arpa",
22 "infoURL": "https://www.iana.org/domains/arpa",
3 "tags": [
4 "closed",
5 "generic",
6 "infrastructure"
7 ],
83 "whoisServer": "whois.iana.org",
94 "nameServers": [
105 "a.root-servers.net",
2015 "l.root-servers.net",
2116 "m.root-servers.net"
2217 ],
18 "tags": [
19 "closed",
20 "generic",
21 "infrastructure"
22 ],
2323 "policies": [
2424 {
2525 "type": "idn-disallowed"
00 {
11 "domain": "art.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "art",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.art",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/art/"
56 ],
6 "whoisServer": "whois.nic.art",
77 "nameServers": [
88 "a.nic.art",
99 "b.nic.art",
1010 "c.nic.art",
1111 "d.nic.art"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "arte",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.arte",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/arte/v1/"
66 ],
7 "whoisServer": "whois.nic.arte",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "as",
2 "infoURL": "http://nic.as/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://nic.as/",
83 "whoisServer": "whois.nic.as",
94 "nameServers": [
105 "ns1.asnic.biz",
127 "ns3.asnic.org",
138 "ns4.asnic.uk",
149 "ns5.asnic.us",
15 "ns99.dns.net.nz",
1610 "pch.nic.as"
11 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
1716 ],
1817 "policies": [
1918 {
2019 "type": "idn-table",
21 "value": "http://nic.as/idn/chars.cfm"
20 "value": "https://nic.as/idn/chars.cfm"
2221 }
2322 ]
2423 }
00 {
11 "domain": "asda",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.asda",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/asda/v1/"
66 ],
7 "whoisServer": "whois.nic.asda",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "asia.com",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "pdns1.ultradns.net",
74 "pdns2.ultradns.net",
1310 "wildcards": [
1411 "72.55.150.59"
1512 ],
13 "tags": [
14 "private"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "asia.gp",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "asia.gp"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "asia",
2 "infoURL": "http://www.dotasia.org/",
3 "tags": [
4 "generic",
5 "sponsored"
2 "infoURL": "https://www.dot.asia/",
3 "whoisServer": "whois.nic.asia",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/asia/"
66 ],
7 "whoisServer": "whois.nic.asia",
87 "nameServers": [
98 "a0.asia.afilias-nst.info",
109 "a2.asia.afilias-nst.info",
1312 "c0.asia.afilias-nst.info",
1413 "d0.asia.afilias-nst.asia"
1514 ],
15 "tags": [
16 "generic",
17 "sponsored"
18 ],
1619 "policies": [
20 {
21 "type": "idn-table",
22 "key": "ar",
23 "value": "https://www.iana.org/domains/idn-tables/tables/asia_ar_1.txt"
24 },
25 {
26 "type": "idn-table",
27 "key": "be",
28 "value": "https://www.iana.org/domains/idn-tables/tables/asia_be_1.txt"
29 },
30 {
31 "type": "idn-table",
32 "key": "bg",
33 "value": "https://www.iana.org/domains/idn-tables/tables/asia_bg_1.txt"
34 },
35 {
36 "type": "idn-table",
37 "key": "bs",
38 "value": "https://www.iana.org/domains/idn-tables/tables/asia_bs_1.txt"
39 },
40 {
41 "type": "idn-table",
42 "key": "da",
43 "value": "https://www.iana.org/domains/idn-tables/tables/asia_da_1.txt"
44 },
45 {
46 "type": "idn-table",
47 "key": "de",
48 "value": "https://www.iana.org/domains/idn-tables/tables/asia_de_1.txt"
49 },
50 {
51 "type": "idn-table",
52 "key": "es",
53 "value": "https://www.iana.org/domains/idn-tables/tables/asia_es_1.txt"
54 },
55 {
56 "type": "idn-table",
57 "key": "fi",
58 "value": "https://www.iana.org/domains/idn-tables/tables/asia_fi_1.txt"
59 },
60 {
61 "type": "idn-table",
62 "key": "fr",
63 "value": "https://www.iana.org/domains/idn-tables/tables/asia_fr_1.txt"
64 },
65 {
66 "type": "idn-table",
67 "key": "hi",
68 "value": "https://www.iana.org/domains/idn-tables/tables/asia_hi_1.txt"
69 },
70 {
71 "type": "idn-table",
72 "key": "hr",
73 "value": "https://www.iana.org/domains/idn-tables/tables/asia_hr_1.txt"
74 },
75 {
76 "type": "idn-table",
77 "key": "hu",
78 "value": "https://www.iana.org/domains/idn-tables/tables/asia_hu_1.txt"
79 },
80 {
81 "type": "idn-table",
82 "key": "is",
83 "value": "https://www.iana.org/domains/idn-tables/tables/asia_is_1.txt"
84 },
85 {
86 "type": "idn-table",
87 "key": "it",
88 "value": "https://www.iana.org/domains/idn-tables/tables/asia_it_1.txt"
89 },
1790 {
1891 "type": "idn-table",
1992 "key": "ja",
2699 },
27100 {
28101 "type": "idn-table",
102 "key": "lt",
103 "value": "https://www.iana.org/domains/idn-tables/tables/asia_lt_1.txt"
104 },
105 {
106 "type": "idn-table",
107 "key": "lv",
108 "value": "https://www.iana.org/domains/idn-tables/tables/asia_lv_1.txt"
109 },
110 {
111 "type": "idn-table",
112 "key": "mk",
113 "value": "https://www.iana.org/domains/idn-tables/tables/asia_mk_1.txt"
114 },
115 {
116 "type": "idn-table",
117 "key": "pl",
118 "value": "https://www.iana.org/domains/idn-tables/tables/asia_pl_1.txt"
119 },
120 {
121 "type": "idn-table",
122 "key": "pt",
123 "value": "https://www.iana.org/domains/idn-tables/tables/asia_pt_1.txt"
124 },
125 {
126 "type": "idn-table",
127 "key": "ru",
128 "value": "https://www.iana.org/domains/idn-tables/tables/asia_ru_1.txt"
129 },
130 {
131 "type": "idn-table",
132 "key": "sr",
133 "value": "https://www.iana.org/domains/idn-tables/tables/asia_sr_1.txt"
134 },
135 {
136 "type": "idn-table",
137 "key": "sr-ME",
138 "value": "https://www.iana.org/domains/idn-tables/tables/asia_sr-me_1.txt"
139 },
140 {
141 "type": "idn-table",
142 "key": "sv",
143 "value": "https://www.iana.org/domains/idn-tables/tables/asia_sv_1.txt"
144 },
145 {
146 "type": "idn-table",
147 "key": "tr",
148 "value": "https://www.iana.org/domains/idn-tables/tables/asia_tr_1.txt"
149 },
150 {
151 "type": "idn-table",
152 "key": "uk",
153 "value": "https://www.iana.org/domains/idn-tables/tables/asia_uk_1.txt"
154 },
155 {
156 "type": "idn-table",
29157 "key": "zh",
30158 "value": "https://www.iana.org/domains/idn-tables/tables/asia_zh_1.1.txt"
31159 }
00 {
11 "domain": "asia.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "asso.bj",
22 "nameServers": [
3 "ns1.dns.com",
4 "ns2.dns.com"
3 "a.dnspod.com",
4 "b.dnspod.com",
5 "c.dnspod.com"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "asso.ci",
2 "infoURL": "http://www.nic.ci/",
2 "infoURL": "https://www.nic.ci/",
33 "nameServers": [
4 "f1g1ns1.dnspod.net",
5 "f1g1ns2.dnspod.net"
4 "a.dnspod.com",
5 "b.dnspod.com",
6 "c.dnspod.com"
67 ]
78 }
00 {
11 "domain": "asso.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "associates",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.associates",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.associates",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "associates.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "at",
2 "infoURL": "http://www.nic.at/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.at/de",
73 "whoisServer": "whois.nic.at",
84 "nameServers": [
95 "d.ns.at",
1511 "r.ns.at",
1612 "u.ns.at"
1713 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-table",
00 {
11 "domain": "at.tc",
22 "nameServers": [
3 "ns2572.servers-servers.com",
4 "ns2573.servers-servers.com"
3 "ns1.123k-elazz.com",
4 "ns2.123k-elazz.com"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "athleta",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.athleta",
4 "rdapURLs": [
5 "https://rdap.nic.athleta/"
66 ],
7 "whoisServer": "whois.nic.athleta",
87 "nameServers": [
98 "ns1.dns.nic.athleta",
109 "ns2.dns.nic.athleta",
1312 "ns5.dns.nic.athleta",
1413 "ns6.dns.nic.athleta"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/athleta_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "attorney",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.attorney",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.attorney",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "au.com",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "dns103.kddi.ne.jp",
74 "dns104.kddi.ne.jp",
85 "dnsa01.kddi.ne.jp",
96 "dnsa02.kddi.ne.jp"
7 ],
8 "tags": [
9 "private"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "au",
2 "infoURL": "http://www.auda.org.au/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "https://www.auda.org.au/",
83 "whoisServer": "whois.auda.org.au",
94 "nameServers": [
105 "a.au",
1712 "s.au",
1813 "t.au"
1914 ],
15 "tags": [
16 "closed",
17 "country",
18 "geo"
19 ],
2020 "policies": [
2121 {
2222 "type": "idn-disallowed"
00 {
11 "domain": "au.tc",
2 "nameServers": [
3 "hera.ns.cloudflare.com",
4 "jerome.ns.cloudflare.com"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
00 {
11 "domain": "auction",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.auction",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.auction",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "audi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/audi/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.audi",
109 "a2.nic.audi",
1110 "b0.nic.audi",
1211 "c0.nic.audi"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "audible",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.audible",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/audible/"
66 ],
7 "whoisServer": "whois.nic.audible",
87 "nameServers": [
98 "dns1.nic.audible",
109 "dns2.nic.audible",
1413 "dnsb.nic.audible",
1514 "dnsc.nic.audible",
1615 "dnsd.nic.audible"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "audio",
2 "infoURL": "http://nic.audio/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.audio/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/audio_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "audio.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "auspost",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.auspost",
4 "rdapURLs": [
5 "https://rdap.nic.auspost/"
66 ],
7 "whoisServer": "whois.nic.auspost",
87 "nameServers": [
98 "a.nic.auspost",
109 "b.nic.auspost",
1110 "c.nic.auspost",
1211 "d.nic.auspost"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "author",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.author",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/author/"
56 ],
6 "whoisServer": "whois.nic.author",
77 "nameServers": [
88 "dns1.nic.author",
99 "dns2.nic.author",
1313 "dnsb.nic.author",
1414 "dnsc.nic.author",
1515 "dnsd.nic.author"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "auto",
2 "infoURL": "http://nic.auto/",
2 "infoURL": "https://nic.auto/",
3 "whoisServer": "whois.nic.auto",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/auto/"
6 ],
7 "nameServers": [
8 "a.nic.auto",
9 "b.nic.auto",
10 "c.nic.auto",
11 "d.nic.auto"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.uniregistry.net",
7 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "autos",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.autos",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/autos/"
6 ],
7 "nameServers": [
8 "a.nic.autos",
9 "b.nic.autos",
10 "c.nic.autos",
11 "d.nic.autos"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.autos",
9 "a2.nic.autos",
10 "b0.nic.autos",
11 "c0.nic.autos"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "av.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "avianca",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/avianca/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.avianca",
109 "a2.nic.avianca",
1110 "b0.nic.avianca",
1211 "c0.nic.avianca"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "aw",
22 "infoURL": "http://www.setarnet.aw/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.nic.aw",
84 "nameServers": [
95 "aw01.setarnet.aw",
128 "ns2.dns.aw",
139 "ns3.dns.aw"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "aws",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.aws",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/aws/"
66 ],
7 "whoisServer": "whois.nic.aws",
87 "nameServers": [
98 "dns1.nic.aws",
109 "dns2.nic.aws",
1413 "dnsb.nic.aws",
1514 "dnsc.nic.aws",
1615 "dnsd.nic.aws"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "ax",
2 "infoURL": "http://www.regeringen.ax/axreg/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.regeringen.ax/naringsliv-foretagande/ansok-om-ax-domannamn",
73 "whoisServer": "whois.ax",
84 "nameServers": [
95 "ns1.aland.net",
117 "ns3.alcom.fi",
128 "ns4.alcom.fi"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "axa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.axa",
4 "rdapURLs": [
5 "https://rdap.nic.axa/"
66 ],
7 "whoisServer": "whois.nic.axa",
87 "nameServers": [
98 "ns1.dns.nic.axa",
109 "ns2.dns.nic.axa",
1312 "ns5.dns.nic.axa",
1413 "ns6.dns.nic.axa"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/axa_da_1.0.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/axa_da_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/axa_de_1.0.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/axa_de_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/axa_es_1.0.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/axa_es_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/axa_fi_1.0.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/axa_fi_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
4245 {
4346 "type": "idn-table",
4447 "key": "hu",
45 "value": "https://www.iana.org/domains/idn-tables/tables/axa_hu_1.0.txt"
48 "value": "https://www.iana.org/domains/idn-tables/tables/axa_hu_3.0.xml"
4649 },
4750 {
4851 "type": "idn-table",
4952 "key": "is",
50 "value": "https://www.iana.org/domains/idn-tables/tables/axa_is_1.0.txt"
53 "value": "https://www.iana.org/domains/idn-tables/tables/axa_is_3.0.xml"
5154 },
5255 {
5356 "type": "idn-table",
5457 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ja_1.0.txt"
58 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ja_3.0.xml"
5659 },
5760 {
5861 "type": "idn-table",
5962 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ko_1.0.txt"
63 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ko_3.0.xml"
6164 },
6265 {
6366 "type": "idn-table",
6467 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lt_1.0.txt"
68 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lt_3.0.xml"
6669 },
6770 {
6871 "type": "idn-table",
6972 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lv_1.0.txt"
73 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lv_3.0.xml"
7174 },
7275 {
7376 "type": "idn-table",
7477 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/axa_no_1.0.txt"
78 "value": "https://www.iana.org/domains/idn-tables/tables/axa_no_3.0.xml"
7679 },
7780 {
7881 "type": "idn-table",
7982 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pl_1.0.txt"
83 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pl_3.0.xml"
8184 },
8285 {
8386 "type": "idn-table",
8487 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pt_1.0.txt"
88 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pt_3.0.xml"
8689 },
8790 {
8891 "type": "idn-table",
8992 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ru_1.0.txt"
93 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ru_3.0.xml"
9194 },
9295 {
9396 "type": "idn-table",
9497 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/axa_sv_1.0.txt"
98 "value": "https://www.iana.org/domains/idn-tables/tables/axa_sv_3.0.xml"
9699 },
97100 {
98101 "type": "idn-table",
99102 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/axa_zh_1.0.txt"
103 "value": "https://www.iana.org/domains/idn-tables/tables/axa_zh_3.0.xml"
101104 }
102105 ]
103106 }
00 {
11 "domain": "az",
2 "infoURL": "http://www.nic.az/",
2 "infoURL": "https://www.nic.az/",
3 "nameServers": [
4 "az.hostmaster.ua",
5 "rip.psg.com"
6 ],
37 "tags": [
48 "country",
59 "geo"
6 ],
7 "whoisURL": "http://www.nic.az/",
8 "nameServers": [
9 "az.hostmaster.ua",
10 "rip.psg.com"
1110 ],
1211 "policies": [
1312 {
00 {
11 "domain": "azure",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/azure/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "ba",
2 "infoURL": "http://www.nic.ba/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.ba/",
73 "whoisURL": "http://nic.ba/lat/menu/view/13",
84 "nameServers": [
95 "ns.ba",
106 "sava.utic.net.ba",
117 "una.utic.net.ba"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "baby",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.baby",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/baby/"
56 ],
6 "whoisServer": "whois.nic.baby",
77 "nameServers": [
88 "a.nic.baby",
99 "b.nic.baby",
1010 "c.nic.baby",
1111 "d.nic.baby"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "baidu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.gtld.knet.cn",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/baidu/"
66 ],
7 "whoisServer": "whois.gtld.knet.cn",
87 "nameServers": [
98 "a.zdnscloud.com",
109 "b.zdnscloud.com",
1413 "g.zdnscloud.com",
1514 "i.zdnscloud.com",
1615 "j.zdnscloud.com"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "banamex",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.banamex",
4 "rdapURLs": [
5 "https://rdap.nic.banamex/"
66 ],
7 "whoisServer": "whois.nic.banamex",
87 "nameServers": [
98 "ns1.dns.nic.banamex",
109 "ns2.dns.nic.banamex",
1312 "ns5.dns.nic.banamex",
1413 "ns6.dns.nic.banamex"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "ar",
23 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ar_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "da",
28 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_da_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "de",
33 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_de_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "es",
38 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_es_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "fi",
43 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_fi_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "fr",
48 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_fr_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "hu",
53 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_hu_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "is",
58 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_is_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "ja",
63 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ja_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "ko",
68 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ko_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "lt",
73 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_lt_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "lv",
78 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_lv_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "no",
83 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_no_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "pl",
88 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_pl_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "pt",
93 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_pt_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "ru",
98 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ru_3.0.xml"
99 },
100 {
101 "type": "idn-table",
102 "key": "sv",
103 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_sv_3.0.xml"
104 },
105 {
106 "type": "idn-table",
107 "key": "zh",
108 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_zh_3.0.xml"
19109 }
20110 ]
21111 }
00 {
11 "domain": "bananarepublic",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bananarepublic",
4 "rdapURLs": [
5 "https://rdap.nic.bananarepublic/"
66 ],
7 "whoisServer": "whois.nic.bananarepublic",
87 "nameServers": [
98 "ns1.dns.nic.bananarepublic",
109 "ns2.dns.nic.bananarepublic",
1312 "ns5.dns.nic.bananarepublic",
1413 "ns6.dns.nic.bananarepublic"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/bananarepublic_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "band",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.band",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.band",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "bank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.bank",
4 "rdapURLs": [
5 "https://rdap.nic.bank/"
56 ],
6 "whoisServer": "whois.nic.bank",
77 "nameServers": [
88 "a.nic.bank",
99 "b.nic.bank",
1212 "e.nic.bank",
1313 "f.nic.bank"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
00 {
11 "domain": "bar",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.bar",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/bar/"
45 ],
5 "whoisServer": "whois.nic.bar",
66 "nameServers": [
77 "a.nic.bar",
88 "b.nic.bar",
99 "c.nic.bar",
1010 "d.nic.bar"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "bar.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "barcelona",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.barcelona",
4 "rdapURLs": [
5 "https://rdap.nic.barcelona/"
56 ],
6 "whoisServer": "whois.nic.barcelona",
77 "nameServers": [
88 "anycast10.irondns.net",
99 "anycast23.irondns.net",
1010 "anycast24.irondns.net",
1111 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "barclaycard",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.barclaycard",
4 "rdapURLs": [
5 "https://rdap.nic.barclaycard/"
66 ],
7 "whoisServer": "whois.nic.barclaycard",
87 "nameServers": [
98 "a.nic.barclaycard",
109 "b.nic.barclaycard",
1110 "c.nic.barclaycard",
1211 "d.nic.barclaycard"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "barclays",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.barclays",
4 "rdapURLs": [
5 "https://rdap.nic.barclays/"
66 ],
7 "whoisServer": "whois.nic.barclays",
87 "nameServers": [
98 "a.nic.barclays",
109 "b.nic.barclays",
1110 "c.nic.barclays",
1211 "d.nic.barclays"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "barefoot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.barefoot",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/barefoot/v1/"
66 ],
7 "whoisServer": "whois.nic.barefoot",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bargains",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.bargains",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.bargains",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "bargains.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "barreau.bj",
22 "nameServers": [
3 "ns1.dns.com",
4 "ns2.dns.com"
3 "a.dnspod.com",
4 "b.dnspod.com",
5 "c.dnspod.com"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "baseball",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.baseball",
4 "rdapURLs": [
5 "https://rdap.nic.baseball/"
56 ],
6 "whoisServer": "whois.nic.baseball",
77 "nameServers": [
88 "ns1.dns.nic.baseball",
99 "ns2.dns.nic.baseball",
1212 "ns5.dns.nic.baseball",
1313 "ns6.dns.nic.baseball"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/baseball_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "basketball",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.basketball",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/basketball/"
56 ],
6 "whoisServer": "whois.nic.basketball",
77 "nameServers": [
88 "a.nic.basketball",
99 "b.nic.basketball",
1010 "c.nic.basketball",
1111 "d.nic.basketball"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "bauhaus",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bauhaus",
4 "rdapURLs": [
5 "https://rdap.nic.bauhaus/"
66 ],
7 "whoisServer": "whois.nic.bauhaus",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bayern",
2 "infoURL": "http://nic.bayern/",
3 "tags": [
4 "generic",
5 "geo",
6 "region"
2 "infoURL": "https://nic.bayern/",
3 "whoisServer": "whois.nic.bayern",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/bayern/"
76 ],
8 "locations": [
9 "DE-BY"
10 ],
11 "whoisServer": "whois.nic.bayern",
127 "nameServers": [
138 "dns1.nic.bayern",
149 "dns2.nic.bayern",
1914 "dnsc.nic.bayern",
2015 "dnsd.nic.bayern"
2116 ],
17 "locations": [
18 "DE-BY"
19 ],
20 "tags": [
21 "generic",
22 "geo",
23 "region"
24 ],
2225 "policies": [
2326 {
2427 "type": "idn-table",
00 {
11 "domain": "bb",
22 "infoURL": "http://www.barbadosdomains.net/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisURL": "http://whois.telecoms.gov.bb/search_domain.php",
84 "nameServers": [
95 "ns1.nic.bb",
128 "ns4.nic.bb",
139 "ns5.nic.bb"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "bbc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bbc",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/bbc/"
66 ],
7 "whoisServer": "whois.nic.bbc",
87 "nameServers": [
98 "dns1.nic.bbc",
109 "dns2.nic.bbc",
1514 "dnsc.nic.bbc",
1615 "dnsd.nic.bbc"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "bbs.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "bbt",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bbt",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/bbt/v1/"
66 ],
7 "whoisServer": "whois.nic.bbt",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bbva",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bbva",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/bbva/v1/"
66 ],
7 "whoisServer": "whois.nic.bbva",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "bcg",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bcg",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/bcg/"
66 ],
7 "whoisServer": "whois.nic.bcg",
87 "nameServers": [
98 "a0.nic.bcg",
109 "a2.nic.bcg",
1110 "b0.nic.bcg",
1211 "c0.nic.bcg"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bcn",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.bcn",
4 "rdapURLs": [
5 "https://rdap.nic.bcn/"
56 ],
6 "whoisServer": "whois.nic.bcn",
77 "nameServers": [
88 "anycast10.irondns.net",
99 "anycast23.irondns.net",
1010 "anycast24.irondns.net",
1111 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "bd",
22 "infoURL": "http://www.bttb.net.bd/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
83 "whoisURL": "http://whois.btcl.net.bd/",
94 "nameServers": [
105 "bd-ns.anycast.pch.net",
116 "dns.bd",
127 "jamuna.btcl.net.bd",
138 "surma.btcl.net.bd"
9 ],
10 "tags": [
11 "closed",
12 "country",
13 "geo"
1414 ]
1515 }
00 {
11 "domain": "be",
2 "whoisServer": "whois.dns.be",
3 "nameServers": [
4 "a.nsset.be",
5 "b.nsset.be",
6 "c.nsset.be",
7 "d.nsset.be",
8 "y.nsset.be",
9 "z.nsset.be"
10 ],
211 "tags": [
312 "country",
413 "geo"
5 ],
6 "whoisServer": "whois.dns.be",
7 "nameServers": [
8 "a.ns.dns.be",
9 "b.ns.dns.be",
10 "c.ns.dns.be",
11 "d.ns.dns.be",
12 "y.ns.dns.be",
13 "z.nsset.be"
1414 ],
1515 "policies": [
1616 {
00 {
11 "domain": "beats",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/beats/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.beats",
109 "a2.nic.beats",
1110 "b0.nic.beats",
1211 "c0.nic.beats"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "beauty",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.beauty",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/beauty/"
56 ],
6 "whoisServer": "whois.nic.beauty",
77 "nameServers": [
88 "a.nic.beauty",
99 "b.nic.beauty",
1010 "c.nic.beauty",
1111 "d.nic.beauty"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "beer",
22 "infoURL": "http://nic.beer/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.beer",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/beer/"
56 ],
6 "whoisServer": "whois.nic.beer",
77 "nameServers": [
88 "dns1.nic.beer",
99 "dns2.nic.beer",
1313 "dnsb.nic.beer",
1414 "dnsc.nic.beer",
1515 "dnsd.nic.beer"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "beer.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "bel.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
00 {
11 "domain": "bentley",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bentley",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/bentley/"
66 ],
7 "whoisServer": "whois.nic.bentley",
87 "nameServers": [
98 "dns1.nic.bentley",
109 "dns2.nic.bentley",
1514 "dnsc.nic.bentley",
1615 "dnsd.nic.bentley"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
20 "type": "idn-disallowed"
23 "type": "idn-table",
24 "key": "az",
25 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_az_1.0.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "be",
30 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_be_1.0.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bg",
35 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_bg_1.0.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "el",
40 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_el_1.0.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "ja",
45 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ja_1.0.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "ko",
50 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ko_1.0.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "ku",
55 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ku_1.0.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "mk",
60 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_mk_1.0.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "mul-Arab",
65 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_arab_1.0.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "mul-Armi",
70 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_armi_1.0.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "mul-Armn",
75 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_armn_1.0.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "mul-Avst",
80 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_avst_1.0.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "mul-Bali",
85 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_bali_1.0.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "mul-Bamu",
90 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_bamu_1.0.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "mul-Batk",
95 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_batk_1.0.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mul-Beng",
100 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_beng_1.0.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "mul-Bopo",
105 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_bopo_1.0.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "mul-Brah",
110 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_brah_1.0.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "mul-Bugi",
115 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_bugi_1.0.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "mul-Buhd",
120 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_buhd_1.0.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "mul-Cans",
125 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_cans_1.0.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "mul-Cari",
130 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_cari_1.0.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "mul-Cham",
135 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_cham_1.0.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "mul-Cher",
140 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_cher_1.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "mul-Copt",
145 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_copt_1.0.txt"
146 },
147 {
148 "type": "idn-table",
149 "key": "mul-Cyrl",
150 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_cyrl_1.0.txt"
151 },
152 {
153 "type": "idn-table",
154 "key": "mul-Deva",
155 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_deva_1.0.txt"
156 },
157 {
158 "type": "idn-table",
159 "key": "mul-Egyp",
160 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_egyp_1.0.txt"
161 },
162 {
163 "type": "idn-table",
164 "key": "mul-Ethi",
165 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ethi_1.0.txt"
166 },
167 {
168 "type": "idn-table",
169 "key": "mul-Geor",
170 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_geor_1.0.txt"
171 },
172 {
173 "type": "idn-table",
174 "key": "mul-Glag",
175 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_glag_1.0.txt"
176 },
177 {
178 "type": "idn-table",
179 "key": "mul-Grek",
180 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_grek_1.0.txt"
181 },
182 {
183 "type": "idn-table",
184 "key": "mul-Gujr",
185 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_gujr_1.0.txt"
186 },
187 {
188 "type": "idn-table",
189 "key": "mul-Guru",
190 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_guru_1.0.txt"
191 },
192 {
193 "type": "idn-table",
194 "key": "mul-Hang",
195 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_hang_1.0.txt"
196 },
197 {
198 "type": "idn-table",
199 "key": "mul-Hani",
200 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_hani_1.0.txt"
201 },
202 {
203 "type": "idn-table",
204 "key": "mul-Hano",
205 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_hano_1.0.txt"
206 },
207 {
208 "type": "idn-table",
209 "key": "mul-Hebr",
210 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_hebr_1.0.txt"
211 },
212 {
213 "type": "idn-table",
214 "key": "mul-Hira",
215 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_hira_1.0.txt"
216 },
217 {
218 "type": "idn-table",
219 "key": "mul-Java",
220 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_java_1.0.txt"
221 },
222 {
223 "type": "idn-table",
224 "key": "mul-Kali",
225 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_kali_1.0.txt"
226 },
227 {
228 "type": "idn-table",
229 "key": "mul-Kana",
230 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_kana_1.0.txt"
231 },
232 {
233 "type": "idn-table",
234 "key": "mul-Khar",
235 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_khar_1.0.txt"
236 },
237 {
238 "type": "idn-table",
239 "key": "mul-Khmr",
240 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_khmr_1.0.txt"
241 },
242 {
243 "type": "idn-table",
244 "key": "mul-Knda",
245 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_knda_1.0.txt"
246 },
247 {
248 "type": "idn-table",
249 "key": "mul-Kthi",
250 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_kthi_1.0.txt"
251 },
252 {
253 "type": "idn-table",
254 "key": "mul-Lana",
255 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_lana_1.0.txt"
256 },
257 {
258 "type": "idn-table",
259 "key": "mul-Laoo",
260 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_laoo_1.0.txt"
261 },
262 {
263 "type": "idn-table",
264 "key": "mul-Latn",
265 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_latn_1.0.txt"
266 },
267 {
268 "type": "idn-table",
269 "key": "mul-Lepc",
270 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_lepc_1.0.txt"
271 },
272 {
273 "type": "idn-table",
274 "key": "mul-Limb",
275 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_limb_1.0.txt"
276 },
277 {
278 "type": "idn-table",
279 "key": "mul-Lisu",
280 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_lisu_1.0.txt"
281 },
282 {
283 "type": "idn-table",
284 "key": "mul-Lyci",
285 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_lyci_1.0.txt"
286 },
287 {
288 "type": "idn-table",
289 "key": "mul-Lydi",
290 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_lydi_1.0.txt"
291 },
292 {
293 "type": "idn-table",
294 "key": "mul-Mand",
295 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_mand_1.0.txt"
296 },
297 {
298 "type": "idn-table",
299 "key": "mul-Mlym",
300 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_mlym_1.0.txt"
301 },
302 {
303 "type": "idn-table",
304 "key": "mul-Mong",
305 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_mong_1.0.txt"
306 },
307 {
308 "type": "idn-table",
309 "key": "mul-Mtei",
310 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_mtei_1.0.txt"
311 },
312 {
313 "type": "idn-table",
314 "key": "mul-Mymr",
315 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_mymr_1.0.txt"
316 },
317 {
318 "type": "idn-table",
319 "key": "mul-Nkoo",
320 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_nkoo_1.0.txt"
321 },
322 {
323 "type": "idn-table",
324 "key": "mul-Ogam",
325 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ogam_1.0.txt"
326 },
327 {
328 "type": "idn-table",
329 "key": "mul-Olck",
330 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_olck_1.0.txt"
331 },
332 {
333 "type": "idn-table",
334 "key": "mul-Orkh",
335 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_orkh_1.0.txt"
336 },
337 {
338 "type": "idn-table",
339 "key": "mul-Orya",
340 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_orya_1.0.txt"
341 },
342 {
343 "type": "idn-table",
344 "key": "mul-Phag",
345 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_phag_1.0.txt"
346 },
347 {
348 "type": "idn-table",
349 "key": "mul-Phli",
350 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_phli_1.0.txt"
351 },
352 {
353 "type": "idn-table",
354 "key": "mul-Phnx",
355 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_phnx_1.0.txt"
356 },
357 {
358 "type": "idn-table",
359 "key": "mul-Prti",
360 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_prti_1.0.txt"
361 },
362 {
363 "type": "idn-table",
364 "key": "mul-Rjng",
365 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_rjng_1.0.txt"
366 },
367 {
368 "type": "idn-table",
369 "key": "mul-Runr",
370 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_runr_1.0.txt"
371 },
372 {
373 "type": "idn-table",
374 "key": "mul-Samr",
375 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_samr_1.0.txt"
376 },
377 {
378 "type": "idn-table",
379 "key": "mul-Sarb",
380 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_sarb_1.0.txt"
381 },
382 {
383 "type": "idn-table",
384 "key": "mul-Saur",
385 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_saur_1.0.txt"
386 },
387 {
388 "type": "idn-table",
389 "key": "mul-Sinh",
390 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_sinh_1.0.txt"
391 },
392 {
393 "type": "idn-table",
394 "key": "mul-Sund",
395 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_sund_1.0.txt"
396 },
397 {
398 "type": "idn-table",
399 "key": "mul-Sylo",
400 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_sylo_1.0.txt"
401 },
402 {
403 "type": "idn-table",
404 "key": "mul-Syrc",
405 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_syrc_1.0.txt"
406 },
407 {
408 "type": "idn-table",
409 "key": "mul-Tagb",
410 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_tagb_1.0.txt"
411 },
412 {
413 "type": "idn-table",
414 "key": "mul-Tale",
415 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_tale_1.0.txt"
416 },
417 {
418 "type": "idn-table",
419 "key": "mul-Talu",
420 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_talu_1.0.txt"
421 },
422 {
423 "type": "idn-table",
424 "key": "mul-Taml",
425 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_taml_1.0.txt"
426 },
427 {
428 "type": "idn-table",
429 "key": "mul-Tavt",
430 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_tavt_1.0.txt"
431 },
432 {
433 "type": "idn-table",
434 "key": "mul-Telu",
435 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_telu_1.0.txt"
436 },
437 {
438 "type": "idn-table",
439 "key": "mul-Tfng",
440 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_tfng_1.0.txt"
441 },
442 {
443 "type": "idn-table",
444 "key": "mul-Tglg",
445 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_tglg_1.0.txt"
446 },
447 {
448 "type": "idn-table",
449 "key": "mul-Thaa",
450 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_thaa_1.0.txt"
451 },
452 {
453 "type": "idn-table",
454 "key": "mul-Thai",
455 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_thai_1.0.txt"
456 },
457 {
458 "type": "idn-table",
459 "key": "mul-Tibt",
460 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_tibt_1.0.txt"
461 },
462 {
463 "type": "idn-table",
464 "key": "mul-Vaii",
465 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_vaii_1.0.txt"
466 },
467 {
468 "type": "idn-table",
469 "key": "mul-Xpeo",
470 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_xpeo_1.0.txt"
471 },
472 {
473 "type": "idn-table",
474 "key": "mul-Xsux",
475 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_xsux_1.0.txt"
476 },
477 {
478 "type": "idn-table",
479 "key": "mul-Yiii",
480 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_yiii_1.0.txt"
481 },
482 {
483 "type": "idn-table",
484 "key": "pl",
485 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_pl_1.0.txt"
486 },
487 {
488 "type": "idn-table",
489 "key": "ro",
490 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ro_1.0.txt"
491 },
492 {
493 "type": "idn-table",
494 "key": "ru",
495 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_ru_1.0.txt"
496 },
497 {
498 "type": "idn-table",
499 "key": "uk",
500 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_uk_1.0.txt"
501 },
502 {
503 "type": "idn-table",
504 "key": "zh",
505 "value": "https://www.iana.org/domains/idn-tables/tables/bentley_zh_1.0.txt"
21506 }
22507 ]
23508 }
00 {
11 "domain": "berlin",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.berlin",
3 "rdapURLs": [
4 "https://rdap.nic.berlin/v1/"
5 ],
6 "nameServers": [
7 "a.dns.nic.berlin",
8 "m.dns.nic.berlin",
9 "n.dns.nic.berlin"
610 ],
711 "locations": [
812 "Berlin",
913 "DE-BE"
1014 ],
11 "whoisServer": "whois.nic.berlin",
12 "nameServers": [
13 "a.dns.nic.berlin",
14 "m.dns.nic.berlin",
15 "n.dns.nic.berlin"
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "best",
2 "infoURL": "http://nic.best/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.best/",
3 "whoisServer": "whois.nic.best",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/best/"
56 ],
6 "whoisServer": "whois.nic.best",
77 "nameServers": [
88 "a.nic.best",
99 "b.nic.best",
1010 "c.nic.best",
1111 "d.nic.best"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "bestbuy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bestbuy",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/bestbuy/"
66 ],
7 "whoisServer": "whois.nic.bestbuy",
87 "nameServers": [
98 "a0.nic.bestbuy",
109 "a2.nic.bestbuy",
1110 "b0.nic.bestbuy",
1211 "c0.nic.bestbuy"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bet",
2 "infoURL": "http://nic.bet/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.bet/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/bet/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.bet",
99 "a2.nic.bet",
1010 "b0.nic.bet",
1111 "c0.nic.bet"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/bet_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/bet_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/bet_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/bet_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/bet_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/bet_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/bet_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/bet_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/bet_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/bet_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/bet_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/bet_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/bet_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/bet_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/bet_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/bet_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/bet_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/bet_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/bet_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/bet_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/bet_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/bet_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/bet_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/bet_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/bet_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/bet_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "bf",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "a.registre.bf",
84 "censvrns0001.ird.fr",
95 "nahouri.onatel.bf"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ]
1111 }
00 {
11 "domain": "bg",
22 "infoURL": "https://www.register.bg/user/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.register.bg",
84 "nameServers": [
95 "a.nic.bg",
128 "d.nic.bg",
139 "e.nic.bg",
1410 "p.nic.bg"
11 ],
12 "tags": [
13 "country",
14 "geo"
1515 ],
1616 "policies": [
1717 {
+0
-17
metadata/bg.tc.json less more
0 {
1 "domain": "bg.tc",
2 "tags": [
3 "retired"
4 ],
5 "nameServers": [
6 "dnsm1.nic.tc",
7 "dnsm2.nic.tc",
8 "dnsm3.nic.tc",
9 "dnsm4.nic.tc"
10 ],
11 "policies": [
12 {
13 "type": "idn-disallowed"
14 }
15 ]
16 }
00 {
11 "domain": "bh",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "a.bh.centralnic-dns.com",
84 "b.bh.centralnic-dns.com",
95 "c.bh.centralnic-dns.com",
106 "d.bh.centralnic-dns.com"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "bharti",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/bharti/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "bi",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois1.nic.bi",
73 "nameServers": [
84 "anyns.nic.bi",
117 "ns.nic.bi",
128 "ns1.nic.bi"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
0 {
1 "domain": "bib.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "bible",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.bible",
4 "rdapURLs": [
5 "https://rdap.nic.bible/"
56 ],
6 "whoisServer": "whois.nic.bible",
77 "nameServers": [
88 "ns1.dns.nic.bible",
99 "ns2.dns.nic.bible",
1212 "ns5.dns.nic.bible",
1313 "ns6.dns.nic.bible"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "da",
22 "value": "https://www.iana.org/domains/idn-tables/tables/bible_da_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "de",
27 "value": "https://www.iana.org/domains/idn-tables/tables/bible_de_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "es",
32 "value": "https://www.iana.org/domains/idn-tables/tables/bible_es_3.0.xml"
33 },
34 {
35 "type": "idn-table",
36 "key": "fi",
37 "value": "https://www.iana.org/domains/idn-tables/tables/bible_fi_3.0.xml"
38 },
39 {
40 "type": "idn-table",
41 "key": "fr",
42 "value": "https://www.iana.org/domains/idn-tables/tables/bible_fr_3.0.xml"
43 },
44 {
45 "type": "idn-table",
46 "key": "hu",
47 "value": "https://www.iana.org/domains/idn-tables/tables/bible_hu_3.0.xml"
48 },
49 {
50 "type": "idn-table",
51 "key": "is",
52 "value": "https://www.iana.org/domains/idn-tables/tables/bible_is_3.0.xml"
53 },
54 {
55 "type": "idn-table",
56 "key": "ja",
57 "value": "https://www.iana.org/domains/idn-tables/tables/bible_ja_3.0.xml"
58 },
59 {
60 "type": "idn-table",
61 "key": "ko",
62 "value": "https://www.iana.org/domains/idn-tables/tables/bible_ko_3.0.xml"
63 },
64 {
65 "type": "idn-table",
66 "key": "lt",
67 "value": "https://www.iana.org/domains/idn-tables/tables/bible_lt_3.0.xml"
68 },
69 {
70 "type": "idn-table",
71 "key": "lv",
72 "value": "https://www.iana.org/domains/idn-tables/tables/bible_lv_3.0.xml"
73 },
74 {
75 "type": "idn-table",
76 "key": "no",
77 "value": "https://www.iana.org/domains/idn-tables/tables/bible_no_3.0.xml"
78 },
79 {
80 "type": "idn-table",
81 "key": "pl",
82 "value": "https://www.iana.org/domains/idn-tables/tables/bible_pl_3.0.xml"
83 },
84 {
85 "type": "idn-table",
86 "key": "pt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/bible_pt_3.0.xml"
88 },
89 {
90 "type": "idn-table",
91 "key": "ru",
92 "value": "https://www.iana.org/domains/idn-tables/tables/bible_ru_3.0.xml"
93 },
94 {
95 "type": "idn-table",
96 "key": "sv",
97 "value": "https://www.iana.org/domains/idn-tables/tables/bible_sv_3.0.xml"
98 },
99 {
100 "type": "idn-table",
101 "key": "zh",
102 "value": "https://www.iana.org/domains/idn-tables/tables/bible_zh_3.0.xml"
18103 }
19104 ]
20105 }
00 {
11 "domain": "bid",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.bid",
4 "rdapURLs": [
5 "https://rdap.nic.bid/"
56 ],
6 "whoisServer": "whois.nic.bid",
77 "nameServers": [
88 "ns1.dns.nic.bid",
99 "ns2.dns.nic.bid",
1212 "ns5.dns.nic.bid",
1313 "ns6.dns.nic.bid"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/bid_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/bid_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/bid_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/bid_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/bid_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/bid_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/bid_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/bid_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/bid_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/bid_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/bid_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/bid_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/bid_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/bid_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/bid_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/bid_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "bid.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "bike",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.bike",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.bike",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "bike.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "bing",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/bing/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "bingo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.bingo",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.bingo",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "bio",
2 "infoURL": "http://nic.bio/",
3 "tags": [
4 "generic"
2 "infoURL": "https://domains.bio/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/bio/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.bio",
99 "a2.nic.bio",
1010 "b0.nic.bio",
1111 "c0.nic.bio"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
1619 "key": "de",
17 "value": "https://portal.afilias.info/sites/portal.afilias.info/files/german-DE.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/bio_de_1.txt"
1821 }
1922 ]
2023 }
00 {
11 "domain": "bio.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "biz.iq",
22 "nameServers": [
3 "dyn1.cmc.iq",
4 "dyn2.cmc.iq",
53 "ns.cocca.fr",
64 "ns1.cmc.iq",
7 "nsp-anycast.cmc.iq",
8 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
96 ]
107 }
00 {
11 "domain": "biz",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.biz",
3 "rdapURLs": [
4 "https://rdap.nic.biz/"
45 ],
5 "whoisServer": "whois.nic.biz",
66 "nameServers": [
77 "a.gtld.biz",
88 "b.gtld.biz",
1111 "f.gtld.biz",
1212 "k.gtld.biz"
1313 ],
14 "tags": [
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
1720 "key": "da",
18 "value": "https://www.iana.org/domains/idn-tables/tables/biz_da_1.0.html"
21 "value": "https://www.iana.org/domains/idn-tables/tables/biz_da_3.0.xml"
1922 },
2023 {
2124 "type": "idn-table",
2225 "key": "de",
23 "value": "https://www.iana.org/domains/idn-tables/tables/biz_de_1.0.html"
26 "value": "https://www.iana.org/domains/idn-tables/tables/biz_de_3.0.xml"
2427 },
2528 {
2629 "type": "idn-table",
2730 "key": "es",
28 "value": "https://www.iana.org/domains/idn-tables/tables/biz_es_1.0.html"
31 "value": "https://www.iana.org/domains/idn-tables/tables/biz_es_3.0.xml"
2932 },
3033 {
3134 "type": "idn-table",
3235 "key": "fi",
33 "value": "https://www.iana.org/domains/idn-tables/tables/biz_fi_1.0.html"
36 "value": "https://www.iana.org/domains/idn-tables/tables/biz_fi_3.0.xml"
3437 },
3538 {
3639 "type": "idn-table",
3740 "key": "hu",
38 "value": "https://www.iana.org/domains/idn-tables/tables/biz_hu_1.0.html"
41 "value": "https://www.iana.org/domains/idn-tables/tables/biz_hu_3.0.xml"
3942 },
4043 {
4144 "type": "idn-table",
4245 "key": "is",
43 "value": "https://www.iana.org/domains/idn-tables/tables/biz_is_1.0.html"
46 "value": "https://www.iana.org/domains/idn-tables/tables/biz_is_3.0.xml"
4447 },
4548 {
4649 "type": "idn-table",
4750 "key": "ja",
48 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ja_1.0.html"
51 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ja_3.0.xml"
4952 },
5053 {
5154 "type": "idn-table",
5255 "key": "ko",
53 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ko_1.0.html"
56 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ko_3.0.xml"
5457 },
5558 {
5659 "type": "idn-table",
5760 "key": "lt",
58 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lt_1.0.html"
61 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lt_3.0.xml"
5962 },
6063 {
6164 "type": "idn-table",
6265 "key": "lv",
63 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lv_1.0.html"
66 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lv_3.0.xml"
6467 },
6568 {
6669 "type": "idn-table",
6770 "key": "no",
68 "value": "https://www.iana.org/domains/idn-tables/tables/biz_no_1.0.html"
71 "value": "https://www.iana.org/domains/idn-tables/tables/biz_no_3.0.xml"
6972 },
7073 {
7174 "type": "idn-table",
7275 "key": "pl",
73 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pl_1.0.html"
76 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pl_3.0.xml"
7477 },
7578 {
7679 "type": "idn-table",
7780 "key": "pt",
78 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pt_1.0.html"
81 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pt_3.0.xml"
7982 },
8083 {
8184 "type": "idn-table",
8285 "key": "sv",
83 "value": "https://www.iana.org/domains/idn-tables/tables/biz_sv_1.0.html"
86 "value": "https://www.iana.org/domains/idn-tables/tables/biz_sv_3.0.xml"
8487 },
8588 {
8689 "type": "idn-table",
8790 "key": "zh",
88 "value": "https://www.iana.org/domains/idn-tables/tables/biz_zh_1.0.html"
91 "value": "https://www.iana.org/domains/idn-tables/tables/biz_zh_3.0.xml"
8992 }
9093 ]
9194 }
00 {
11 "domain": "biz.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
+0
-8
metadata/biz.ss.json less more
0 {
1 "domain": "biz.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "pch.nic.ss"
6 ]
7 }
00 {
11 "domain": "biz.tc",
2 "infoURL": "http://www.biz.tc/",
2 "infoURL": "https://www.biz.tc/",
33 "nameServers": [
44 "ns1.nudrv.com",
55 "ns2.nudrv.com"
00 {
11 "domain": "biz.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "biz.uz",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
107 "144.76.162.245",
118 "biz.uz"
129 ],
10 "tags": [
11 "private"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "bj",
2 "whoisServer": "whois.nic.bj",
3 "nameServers": [
4 "anycastdns1.nic.bj",
5 "anycastdns2.nic.bj",
6 "ns-bj.afrinic.net",
7 "ns-bj.nic.fr",
8 "ns1.nic.bj",
9 "ns2.nic.bj",
10 "pch.nic.bj"
11 ],
212 "tags": [
313 "country",
414 "geo"
5 ],
6 "whoisServer": "whois.nic.bj",
7 "nameServers": [
8 "ns.cocca.fr",
9 "ns1.nic.bj",
10 "ns2.nic.bj",
11 "pch.nic.bj"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "black",
2 "infoURL": "http://nic.black/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.black/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/black/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.black",
99 "a2.nic.black",
1010 "b0.nic.black",
1111 "c0.nic.black"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/black_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/black_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/black_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/black_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/black_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/black_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/black_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/black_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/black_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/black_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/black_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/black_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/black_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/black_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/black_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/black_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/black_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/black_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/black_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/black_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/black_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/black_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/black_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/black_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/black_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/black_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "black.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "blackfriday",
2 "infoURL": "http://nic.blackfriday/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.blackfriday/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/blackfriday_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "blanco",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.blanco",
34 "tags": [
45 "generic"
56 ],
6 "whoisServer": "whois.nic.blanco",
77 "policies": [
88 {
99 "type": "idn-table",
00 {
11 "domain": "blockbuster",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.blockbuster",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/blockbuster/"
66 ],
7 "whoisServer": "whois.nic.blockbuster",
87 "nameServers": [
98 "a0.nic.blockbuster",
109 "a2.nic.blockbuster",
1110 "b0.nic.blockbuster",
1211 "c0.nic.blockbuster"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "blog",
2 "infoURL": "http://nic.blog/",
3 "tags": [
4 "generic"
2 "infoURL": "https://my.blog/",
3 "whoisServer": "whois.nic.blog",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/blog/"
56 ],
6 "whoisServer": "whois.nic.blog",
77 "nameServers": [
88 "a.nic.blog",
99 "b.nic.blog",
1010 "c.nic.blog",
1111 "d.nic.blog"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "bloomberg",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/bloomberg/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "blue",
2 "infoURL": "http://nic.blue/",
3 "tags": [
4 "generic"
2 "infoURL": "https://dotblue.blue/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/blue/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.blue",
99 "a2.nic.blue",
1111 "b2.nic.blue",
1212 "c0.nic.blue"
1313 ],
14 "tags": [
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/blue_ar_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "be",
26 "value": "https://www.iana.org/domains/idn-tables/tables/blue_be_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bg",
31 "value": "https://www.iana.org/domains/idn-tables/tables/blue_bg_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "bs",
36 "value": "https://www.iana.org/domains/idn-tables/tables/blue_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "da",
41 "value": "https://www.iana.org/domains/idn-tables/tables/blue_da_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "de",
46 "value": "https://www.iana.org/domains/idn-tables/tables/blue_de_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "es",
51 "value": "https://www.iana.org/domains/idn-tables/tables/blue_es_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "fi",
56 "value": "https://www.iana.org/domains/idn-tables/tables/blue_fi_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "fr",
61 "value": "https://www.iana.org/domains/idn-tables/tables/blue_fr_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "hi",
66 "value": "https://www.iana.org/domains/idn-tables/tables/blue_hi_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "hu",
71 "value": "https://www.iana.org/domains/idn-tables/tables/blue_hu_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "is",
76 "value": "https://www.iana.org/domains/idn-tables/tables/blue_is_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "it",
81 "value": "https://www.iana.org/domains/idn-tables/tables/blue_it_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ko",
86 "value": "https://www.iana.org/domains/idn-tables/tables/blue_ko_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "lt",
91 "value": "https://www.iana.org/domains/idn-tables/tables/blue_lt_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "lv",
96 "value": "https://www.iana.org/domains/idn-tables/tables/blue_lv_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "mk",
101 "value": "https://www.iana.org/domains/idn-tables/tables/blue_mk_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pl",
106 "value": "https://www.iana.org/domains/idn-tables/tables/blue_pl_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "pt",
111 "value": "https://www.iana.org/domains/idn-tables/tables/blue_pt_1.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "ru",
116 "value": "https://www.iana.org/domains/idn-tables/tables/blue_ru_1.txt"
117 },
118 {
119 "type": "idn-table",
120 "key": "sr",
121 "value": "https://www.iana.org/domains/idn-tables/tables/blue_sr_1.txt"
122 },
123 {
124 "type": "idn-table",
125 "key": "sr-ME",
126 "value": "https://www.iana.org/domains/idn-tables/tables/blue_sr-me_1.txt"
127 },
128 {
129 "type": "idn-table",
130 "key": "sv",
131 "value": "https://www.iana.org/domains/idn-tables/tables/blue_sv_1.txt"
132 },
133 {
134 "type": "idn-table",
135 "key": "uk",
136 "value": "https://www.iana.org/domains/idn-tables/tables/blue_uk_1.txt"
137 },
138 {
139 "type": "idn-table",
140 "key": "zh-CN",
141 "value": "https://www.iana.org/domains/idn-tables/tables/blue_zh-cn_4.0.txt"
142 },
143 {
144 "type": "idn-table",
145 "key": "zh-TW",
146 "value": "https://www.iana.org/domains/idn-tables/tables/blue_zh-tw_4.0.txt"
17147 }
18148 ]
19149 }
00 {
11 "domain": "blue.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "pch.nnic.np",
00 {
11 "domain": "bm",
2 "tags": [
3 "country",
4 "geo"
5 ],
6 "whoisURL": "http://www.bermudanic.bm/cgi-bin/lansaweb?procfun+BMWHO+BMWHO2+WHO",
2 "infoURL": "https://www.bermudanic.bm/",
3 "whoisURL": "https://www.bermudanic.bm/whois.htm",
74 "nameServers": [
85 "a0.bm.afilias-nst.info",
96 "a2.bm.afilias-nst.info",
129 "c0.bm.afilias-nst.info",
1310 "d0.bm.afilias-nst.org"
1411 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1516 "policies": [
1617 {
1718 "type": "idn-disallowed"
00 {
11 "domain": "bms",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bms",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/bms/v1/"
66 ],
7 "whoisServer": "whois.nic.bms",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bmw",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bmw",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/bmw/"
66 ],
7 "whoisServer": "whois.nic.bmw",
87 "nameServers": [
98 "a.nic.bmw",
109 "b.nic.bmw",
1110 "c.nic.bmw",
1211 "d.nic.bmw"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bn",
22 "infoURL": "http://www.brunet.bn/products_webrelated_domain_main.htm",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.bnnic.bn",
84 "nameServers": [
95 "bn-ns.anycast.pch.net",
117 "ns2.bnnic.bn",
128 "ns4.apnic.net"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "bnl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.bnl",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.bnl",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "bnpparibas",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/bnpparibas/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.bnpparibas",
109 "a2.nic.bnpparibas",
1110 "b0.nic.bnpparibas",
1211 "c0.nic.bnpparibas"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_ar_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "be",
26 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_be_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bg",
31 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_bg_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "bs",
36 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "da",
41 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_da_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "de",
46 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_de_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "es",
51 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_es_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "fr",
56 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_fr_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "hu",
61 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_hu_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "is",
66 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_is_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "it",
71 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_it_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "ko",
76 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_ko_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "lt",
81 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_lt_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "lv",
86 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_lv_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "mk",
91 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_mk_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "pl",
96 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_pl_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "pt",
101 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_pt_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "ru",
106 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_ru_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "sr",
111 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_sr_1.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "sr-ME",
116 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_sr-me_1.txt"
117 },
118 {
119 "type": "idn-table",
120 "key": "sv",
121 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_sv_1.txt"
122 },
123 {
124 "type": "idn-table",
125 "key": "uk",
126 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_uk_1.txt"
127 },
128 {
129 "type": "idn-table",
130 "key": "zh-CN",
131 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_zh-cn_4.0.txt"
132 },
133 {
134 "type": "idn-table",
135 "key": "zh-TW",
136 "value": "https://www.iana.org/domains/idn-tables/tables/bnpparibas_zh-tw_4.0.txt"
17137 }
18138 ]
19139 }
00 {
11 "domain": "bo",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.bo",
73 "nameServers": [
84 "anycast.ns.nic.bo",
95 "ns.dns.br",
106 "ns.nic.bo",
117 "ns2.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "boats",
2 "infoURL": "http://nic.boats/",
2 "infoURL": "https://nic.boats/",
3 "whoisServer": "whois.nic.boats",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/boats/"
6 ],
7 "nameServers": [
8 "a.nic.boats",
9 "b.nic.boats",
10 "c.nic.boats",
11 "d.nic.boats"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.boats",
9 "a2.nic.boats",
10 "b0.nic.boats",
11 "c0.nic.boats"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "boehringer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/boehringer/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.boehringer",
109 "a2.nic.boehringer",
1110 "b0.nic.boehringer",
1211 "c0.nic.boehringer"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bofa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bofa",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/bofa/v1/"
66 ],
7 "whoisServer": "whois.nic.bofa",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bom",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.gtlds.nic.br",
4 "rdapURLs": [
5 "https://rdap.gtlds.nic.br/"
66 ],
7 "whoisServer": "whois.gtlds.nic.br",
87 "nameServers": [
98 "a.dns.br",
109 "b.dns.br",
1211 "d.dns.br",
1312 "e.dns.br",
1413 "f.dns.br"
14 ],
15 "tags": [
16 "brand",
17 "generic"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "bond",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bond",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/bond/"
66 ],
7 "whoisServer": "whois.nic.bond",
87 "nameServers": [
98 "a.nic.bond",
109 "b.nic.bond",
1110 "c.nic.bond",
1211 "d.nic.bond"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "boo",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "book",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.book",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/book/"
56 ],
6 "whoisServer": "whois.nic.book",
77 "nameServers": [
88 "dns1.nic.book",
99 "dns2.nic.book",
1313 "dnsb.nic.book",
1414 "dnsc.nic.book",
1515 "dnsd.nic.book"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "booking",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.booking",
4 "rdapURLs": [
5 "https://rdap.nic.booking/"
66 ],
7 "whoisServer": "whois.nic.booking",
87 "nameServers": [
98 "ns1.dns.nic.booking",
109 "ns2.dns.nic.booking",
1312 "ns5.dns.nic.booking",
1413 "ns6.dns.nic.booking"
1514 ],
15 "tags": [
16 "closed",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/booking_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/booking_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/booking_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/booking_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/booking_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/booking_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/booking_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/booking_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/booking_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/booking_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/booking_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/booking_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/booking_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/booking_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/booking_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/booking_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "boots",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.boots",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.boots",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "bosch",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bosch",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/bosch/v1/"
66 ],
7 "whoisServer": "whois.nic.bosch",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "bostik",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bostik",
4 "rdapURLs": [
5 "https://rdap.nic.bostik/"
66 ],
7 "whoisServer": "whois.nic.bostik",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "boston",
22 "infoURL": "http://nic.boston/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.boston",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/boston/"
76 ],
8 "locations": [
9 "Boston"
10 ],
11 "whoisServer": "whois.nic.boston",
127 "nameServers": [
138 "dns1.nic.boston",
149 "dns2.nic.boston",
1914 "dnsc.nic.boston",
2015 "dnsd.nic.boston"
2116 ],
17 "locations": [
18 "Boston"
19 ],
20 "tags": [
21 "city",
22 "generic",
23 "geo"
24 ],
2225 "policies": [
2326 {
2427 "type": "idn-disallowed",
00 {
11 "domain": "bot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.bot",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/bot/"
56 ],
6 "whoisServer": "whois.nic.bot",
77 "nameServers": [
88 "dns1.nic.bot",
99 "dns2.nic.bot",
1313 "dnsb.nic.bot",
1414 "dnsc.nic.bot",
1515 "dnsd.nic.bot"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "boutique",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.boutique",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.boutique",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "boutique.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "box",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.box",
4 "rdapURLs": [
5 "https://rdap.nic.box/"
56 ],
6 "whoisServer": "whois.nic.box",
77 "nameServers": [
88 "a.nic.box",
99 "b.nic.box",
1010 "c.nic.box",
1111 "d.nic.box"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "zh",
20 "value": "https://www.iana.org/domains/idn-tables/tables/box_zh_3.0.xml"
1621 }
1722 ]
1823 }
00 {
11 "domain": "br.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/br.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "54.153.56.183",
1414 "br.com"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
00 {
11 "domain": "br",
2 "infoURL": "http://nic.br/",
3 "tags": [
4 "country",
5 "geo"
2 "infoURL": "https://nic.br/",
3 "whoisServer": "whois.registro.br",
4 "rdapURLs": [
5 "https://rdap.registro.br/"
66 ],
7 "whoisServer": "whois.registro.br",
87 "nameServers": [
98 "a.dns.br",
109 "b.dns.br",
1211 "d.dns.br",
1312 "e.dns.br",
1413 "f.dns.br"
14 ],
15 "tags": [
16 "country",
17 "geo"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "br.tc",
2 "nameServers": [
3 "dorthy.ns.cloudflare.com",
4 "luke.ns.cloudflare.com"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
00 {
11 "domain": "bradesco",
22 "infoURL": "http://nic.bradesco/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bradesco",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/bradesco/"
66 ],
7 "whoisServer": "whois.nic.bradesco",
87 "nameServers": [
98 "dns1.nic.bradesco",
109 "dns2.nic.bradesco",
1514 "dnsc.nic.bradesco",
1615 "dnsd.nic.bradesco"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed",
00 {
11 "domain": "bridgestone",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.bridgestone",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.bridgestone",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/bridgestone_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "broadway",
2 "infoURL": "http://nic.broadway/",
3 "tags": [
4 "generic"
2 "infoURL": "https://discover.broadway/",
3 "whoisServer": "whois.nic.broadway",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/broadway/"
56 ],
6 "whoisServer": "whois.nic.broadway",
77 "nameServers": [
88 "dns1.nic.broadway",
99 "dns2.nic.broadway",
1414 "dnsc.nic.broadway",
1515 "dnsd.nic.broadway"
1616 ],
17 "tags": [
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-disallowed",
00 {
11 "domain": "broker",
22 "infoURL": "https://bostonivy.co/",
3 "whoisServer": "whois.nic.broker",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.broker",
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "brother",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.brother",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.brother",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/brother_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "brussels",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.brussels",
4 "rdapURLs": [
5 "https://rdap.nic.brussels/"
6 ],
7 "nameServers": [
8 "a.nsset.brussels",
9 "b.nsset.brussels",
10 "c.nsset.brussels",
11 "d.nsset.brussels",
12 "y.nsset.brussels",
13 "z.nsset.brussels"
714 ],
815 "locations": [
916 "Brussels",
1017 "BE-BRU"
1118 ],
12 "whoisServer": "whois.nic.brussels",
13 "nameServers": [
14 "a.nic.brussels",
15 "b.nic.brussels",
16 "c.ns.dns.be",
17 "d.ns.dns.be",
18 "y.ns.dns.be",
19 "z.nsset.brussels"
19 "tags": [
20 "city",
21 "generic",
22 "geo"
2023 ],
2124 "policies": [
2225 {
00 {
11 "domain": "bs",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.bs/cgi-bin/search.pl",
73 "nameServers": [
84 "anyns.dns.bs",
95 "anyns.pch.net",
106 "ns36.cdns.net"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ]
1212 }
00 {
11 "domain": "bt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.bt/",
73 "nameServers": [
84 "auth00.ns.uu.net",
139 "ns3.druknet.bt",
1410 "phloem.uoregon.edu"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "budapest",
22 "infoURL": "http://nic.budapest/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.budapest",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/budapest/"
76 ],
8 "locations": [
9 "Budapest",
10 "HU-BU"
11 ],
12 "whoisServer": "whois.nic.budapest",
137 "nameServers": [
148 "dns1.nic.budapest",
159 "dns2.nic.budapest",
2014 "dnsc.nic.budapest",
2115 "dnsd.nic.budapest"
2216 ],
17 "locations": [
18 "Budapest",
19 "HU-BU"
20 ],
21 "tags": [
22 "city",
23 "generic",
24 "geo"
25 ],
2326 "policies": [
2427 {
2528 "type": "idn-table",
2629 "key": "hu",
27 "value": "http://registrars.nominet.uk/sites/default/files/hungarian_idn.pdf",
30 "value": "https://www.iana.org/domains/idn-tables/tables/budapest_hu_1.0.txt",
2831 "comment": "https://registrars.nominet.uk/gtlds/gtld-registrar-systems/internationalised-domain-names-idns"
2932 }
3033 ]
00 {
11 "domain": "bugatti",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/bugatti/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.bugatti",
109 "a2.nic.bugatti",
1110 "b0.nic.bugatti",
1211 "c0.nic.bugatti"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "build",
2 "infoURL": "http://nic.build/",
3 "tags": [
4 "generic"
2 "infoURL": "https://about.build/",
3 "whoisServer": "whois.nic.build",
4 "rdapURLs": [
5 "https://rdap.nic.build/"
56 ],
6 "whoisServer": "whois.nic.build",
77 "nameServers": [
88 "a.nic.build",
99 "b.nic.build",
1010 "c.nic.build",
1111 "d.nic.build"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "build.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "builders",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.builders",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.builders",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "builders.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "business",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.business",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.business",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "buy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.buy",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/buy/"
56 ],
6 "whoisServer": "whois.nic.buy",
77 "nameServers": [
88 "dns1.nic.buy",
99 "dns2.nic.buy",
1313 "dnsb.nic.buy",
1414 "dnsc.nic.buy",
1515 "dnsd.nic.buy"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
104107 "type": "idn-table",
105108 "key": "zh",
106109 "value": "https://www.iana.org/domains/idn-tables/tables/buy_zh_2.1.txt"
110 },
111 {
112 "type": "idn-table",
113 "key": "zh-CN",
114 "value": "https://www.iana.org/domains/idn-tables/tables/buy_zh-cn_2.2.txt"
115 },
116 {
117 "type": "idn-table",
118 "key": "zh-TW",
119 "value": "https://www.iana.org/domains/idn-tables/tables/buy_zh-tw_2.2.txt"
107120 }
108121 ]
109122 }
00 {
11 "domain": "buzz",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.buzz",
3 "rdapURLs": [
4 "https://rdap.nic.buzz/"
45 ],
5 "whoisServer": "whois.nic.buzz",
66 "nameServers": [
77 "ns1.dns.nic.buzz",
88 "ns2.dns.nic.buzz",
1111 "ns5.dns.nic.buzz",
1212 "ns6.dns.nic.buzz"
1313 ],
14 "tags": [
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
1720 "key": "es",
18 "value": "https://www.iana.org/domains/idn-tables/tables/buzz_es_1.0.txt"
21 "value": "https://www.iana.org/domains/idn-tables/tables/buzz_es_3.0.xml"
1922 }
2023 ]
2124 }
00 {
11 "domain": "buzz.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "bv",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisServer": "whois.norid.no",
83 "nameServers": [
94 "nac.no",
105 "nn.uninett.no",
116 "server.nordu.net"
7 ],
8 "tags": [
9 "closed",
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "bw",
2 "whoisServer": "whois.nic.net.bw",
3 "nameServers": [
4 "dns1.nic.net.bw",
5 "master.btc.net.bw",
6 "ns-bw.afrinic.net",
7 "pch.nic.net.bw"
8 ],
29 "tags": [
310 "country",
411 "geo"
5 ],
6 "whoisServer": "whois.nic.net.bw",
7 "nameServers": [
8 "dns1.nic.net.bw",
9 "dns2.nic.net.bw",
10 "master.btc.net.bw",
11 "ns-bw.afrinic.net",
12 "pch.nic.net.bw"
1312 ],
1413 "policies": [
1514 {
00 {
11 "domain": "by",
2 "infoURL": "http://tld.by/",
2 "infoURL": "https://domain.by/",
3 "whoisServer": "whois.cctld.by",
4 "nameServers": [
5 "dns1.tld.hosterby.com",
6 "dns2.tld.hosterby.com",
7 "dns3.tld.hosterby.com",
8 "dns4.tld.hosterby.com",
9 "dns5.tld.hosterby.com",
10 "dns6.tld.hosterby.com"
11 ],
312 "tags": [
413 "country",
514 "geo"
6 ],
7 "whoisServer": "whois.cctld.by",
8 "nameServers": [
9 "dns1.tld.tutby.com",
10 "dns2.tld.tutby.com",
11 "dns3.tld.tutby.com",
12 "dns4.tld.tutby.com",
13 "dns5.tld.tutby.com"
1415 ],
1516 "policies": [
1617 {
00 {
11 "domain": "bz",
2 "infoURL": "http://www.belizenic.bz/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://www.belizenic.bz/",
83 "whoisServer": "whois.afilias-grs.info",
94 "nameServers": [
105 "a0.cctld.afilias-nst.info",
149 "c0.cctld.afilias-nst.info",
1510 "d0.cctld.afilias-nst.org"
1611 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "bzh",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.bzh",
4 "rdapURLs": [
5 "https://rdap.nic.bzh/"
6 ],
7 "nameServers": [
8 "d.nic.fr",
9 "f.ext.nic.fr",
10 "g.ext.nic.fr"
11 ],
12 "locations": [
13 "FR-E"
14 ],
315 "tags": [
416 "generic",
517 "geo",
618 "region"
7 ],
8 "locations": [
9 "FR-E"
10 ],
11 "whoisServer": "whois.nic.bzh",
12 "nameServers": [
13 "d.nic.fr",
14 "f.ext.nic.fr",
15 "g.ext.nic.fr"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "ca",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.cira.ca",
3 "rdapURLs": [
4 "https://rdap.ca.fury.ca/rdap/"
55 ],
6 "whoisServer": "whois.cira.ca",
76 "nameServers": [
87 "any.ca-servers.ca",
98 "c.ca-servers.ca",
109 "j.ca-servers.ca",
1110 "x.ca-servers.ca"
11 ],
12 "tags": [
13 "country",
14 "geo"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cab",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cab",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cab",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cab.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "cafe",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cafe",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.cafe",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cal",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "call",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.call",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/call/"
56 ],
6 "whoisServer": "whois.nic.call",
77 "nameServers": [
88 "dns1.nic.call",
99 "dns2.nic.call",
1313 "dnsb.nic.call",
1414 "dnsc.nic.call",
1515 "dnsd.nic.call"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "calvinklein",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.calvinklein",
4 "rdapURLs": [
5 "https://rdap.nic.calvinklein/"
66 ],
7 "whoisServer": "whois.nic.calvinklein",
87 "nameServers": [
98 "ns1.dns.nic.calvinklein",
109 "ns2.dns.nic.calvinklein",
1312 "ns5.dns.nic.calvinklein",
1413 "ns6.dns.nic.calvinklein"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/calvinklein_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "cam",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cam",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/cam/"
56 ],
6 "whoisServer": "whois.nic.cam",
77 "nameServers": [
88 "a.nic.cam",
99 "b.nic.cam",
1010 "c.nic.cam",
1111 "d.nic.cam"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "camera",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.camera",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.camera",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "camera.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "camp",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.camp",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.camp",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "camp.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "cancerresearch",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cancerresearch",
4 "rdapURLs": [
5 "https://rdap.nic.cancerresearch/"
56 ],
6 "whoisServer": "whois.nic.cancerresearch",
77 "nameServers": [
88 "a.nic.cancerresearch",
99 "b.nic.cancerresearch",
1010 "c.nic.cancerresearch",
1111 "d.nic.cancerresearch"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "canon",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.canon",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.canon",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "capetown",
2 "whoisServer": "capetown-whois.registry.net.za",
3 "rdapURLs": [
4 "https://rdap.registry.net.za/rdap/"
5 ],
6 "nameServers": [
7 "coza1.dnsnode.net",
8 "ns.coza.net.za",
9 "ns2us.dns.business"
10 ],
11 "locations": [
12 "Cape Town"
13 ],
214 "tags": [
315 "city",
416 "generic",
517 "geo"
6 ],
7 "locations": [
8 "Cape Town"
9 ],
10 "whoisServer": "capetown-whois.registry.net.za",
11 "nameServers": [
12 "coza1.dnsnode.net",
13 "ns.coza.net.za",
14 "ns2us.dns.business"
1518 ]
1619 }
00 {
11 "domain": "capital",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.capital",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.capital",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "capital.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "capitalone",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.capitalone",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/capitalone/v1/"
66 ],
7 "whoisServer": "whois.nic.capitalone",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "car",
2 "infoURL": "http://nic.car/",
2 "infoURL": "https://nic.car/",
3 "whoisServer": "whois.nic.car",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/car/"
6 ],
7 "nameServers": [
8 "a.nic.car",
9 "b.nic.car",
10 "c.nic.car",
11 "d.nic.car"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.uniregistry.net",
7 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "caravan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.caravan",
4 "rdapURLs": [
5 "https://rdap.nic.caravan/"
66 ],
7 "whoisServer": "whois.nic.caravan",
87 "nameServers": [
98 "ns1.dns.nic.caravan",
109 "ns2.dns.nic.caravan",
1312 "ns5.dns.nic.caravan",
1413 "ns6.dns.nic.caravan"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "zh",
23 "value": "https://www.iana.org/domains/idn-tables/tables/caravan_zh_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "cards",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cards",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cards",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cards.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "care",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.care",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.care",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "care.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "career",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.career",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/career/v1/"
45 ],
5 "whoisServer": "whois.nic.career",
66 "nameServers": [
77 "ac1.nstld.com",
88 "ac2.nstld.com",
99 "ac3.nstld.com",
1010 "ac4.nstld.com"
1111 ],
12 "tags": [
13 "generic"
14 ],
1215 "policies": [
1316 {
1417 "type": "idn-table",
00 {
11 "domain": "careers",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.careers",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.careers",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "careers.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "cars",
2 "infoURL": "http://nic.cars/",
2 "infoURL": "https://nic.cars/",
3 "whoisServer": "whois.nic.cars",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/cars/"
6 ],
7 "nameServers": [
8 "a.nic.cars",
9 "b.nic.cars",
10 "c.nic.cars",
11 "d.nic.cars"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.uniregistry.net",
7 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cartier",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.cartier",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.cartier",
88 "policies": [
99 {
1010 "type": "idn-table",
00 {
11 "domain": "casa",
22 "infoURL": "http://nic.casa/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.casa",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/casa/"
56 ],
6 "whoisServer": "whois.nic.casa",
77 "nameServers": [
88 "dns1.nic.casa",
99 "dns2.nic.casa",
1414 "dnsc.nic.casa",
1515 "dnsd.nic.casa"
1616 ],
17 "tags": [
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-table",
2023 "key": "es",
21 "value": "https://registrars.nominet.uk/sites/default/files/spanish_idn.pdf",
24 "value": "https://www.iana.org/domains/idn-tables/tables/casa_es_2.0.txt",
2225 "comment": "https://registrars.nominet.uk/gtlds/gtld-registrar-systems/internationalised-domain-names-idns"
2326 },
2427 {
00 {
11 "domain": "case",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.case",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/case/"
56 ],
6 "whoisServer": "whois.nic.case",
77 "nameServers": [
88 "a0.nic.case",
99 "a2.nic.case",
1010 "b0.nic.case",
1111 "c0.nic.case"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "caseih",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.caseih",
34 "tags": [
45 "brand",
56 "generic"
6 ],
7 "whoisServer": "whois.nic.caseih",
8 "nameServers": [
9 "a0.nic.caseih",
10 "a2.nic.caseih",
11 "b0.nic.caseih",
12 "c0.nic.caseih"
137 ],
148 "policies": [
159 {
00 {
11 "domain": "cash",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cash",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cash",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cash.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "casino",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.casino",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.casino",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cat",
2 "infoURL": "http://www.domini.cat/",
3 "tags": [
4 "generic",
5 "region",
6 "sponsored"
2 "infoURL": "https://domini.cat/",
3 "whoisServer": "whois.nic.cat",
4 "rdapURLs": [
5 "https://rdap.nic.cat/"
76 ],
8 "locations": [
9 "ES-CT"
10 ],
11 "whoisServer": "whois.nic.cat",
127 "nameServers": [
138 "anyc1.irondns.net",
149 "cat.pch.net",
1611 "ns1.nic.es",
1712 "nsc.nic.de",
1813 "switch.nic.cat"
14 ],
15 "locations": [
16 "ES-CT"
17 ],
18 "tags": [
19 "generic",
20 "region",
21 "sponsored"
1922 ],
2023 "policies": [
2124 {
00 {
11 "domain": "catering",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.catering",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.catering",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "catering.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "catholic",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.catholic",
4 "rdapURLs": [
5 "https://rdap.nic.catholic/"
56 ],
6 "whoisServer": "whois.nic.catholic",
77 "nameServers": [
88 "a.nic.catholic",
99 "b.nic.catholic",
1010 "c.nic.catholic",
1111 "d.nic.catholic"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cba",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cba",
4 "rdapURLs": [
5 "https://rdap.nic.cba/"
66 ],
7 "whoisServer": "whois.nic.cba",
87 "nameServers": [
98 "a.nic.cba",
109 "b.nic.cba",
1110 "c.nic.cba",
1211 "d.nic.cba"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cbn",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cbn",
4 "rdapURLs": [
5 "https://rdap.nic.cbn/"
66 ],
7 "whoisServer": "whois.nic.cbn",
87 "nameServers": [
98 "ns1.dns.nic.cbn",
109 "ns2.dns.nic.cbn",
1312 "ns5.dns.nic.cbn",
1413 "ns6.dns.nic.cbn"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "zh",
23 "value": "https://www.iana.org/domains/idn-tables/tables/cbn_zh_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "cbre",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cbre",
4 "rdapURLs": [
5 "https://rdap.nic.cbre/"
66 ],
7 "whoisServer": "whois.nic.cbre",
87 "nameServers": [
98 "ns1.dns.nic.cbre",
109 "ns2.dns.nic.cbre",
1312 "ns5.dns.nic.cbre",
1413 "ns6.dns.nic.cbre"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/cbre_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "cbs",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/cbs/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.cbs",
109 "a2.nic.cbs",
1110 "b0.nic.cbs",
1211 "c0.nic.cbs"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cc",
2 "tags": [
3 "country",
4 "generic",
5 "geo"
2 "whoisServer": "ccwhois.verisign-grs.com",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/cc/v1/"
65 ],
7 "whoisServer": "ccwhois.verisign-grs.com",
86 "nameServers": [
97 "ac1.nstld.com",
108 "ac2.nstld.com",
119 "ac3.nstld.com",
1210 "ac4.nstld.com"
11 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
1316 ]
1417 }
00 {
11 "domain": "cd",
2 "infoURL": "http://www.nic.cd/",
2 "infoURL": "https://www.nic.cd/nic.cd/",
3 "whoisServer": "whois.cd",
4 "nameServers": [
5 "ns-root-21.scpt-network.net",
6 "ns-root-22.scpt-network.net",
7 "ns-root-23.scpt-network.net"
8 ],
39 "tags": [
410 "country",
511 "generic",
612 "geo"
7 ],
8 "whoisServer": "whois.cd",
9 "nameServers": [
10 "igubu.saix.net",
11 "ns-root-1.scpt-network.com",
12 "ns-root-2.scpt-network.com",
13 "ns-root-5.scpt-network.com",
14 "sabela.saix.net",
15 "sangoma.saix.net"
1613 ],
1714 "policies": [
1815 {
00 {
11 "domain": "ceb",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
6 ],
7 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.ceb",
10 "a2.nic.ceb",
11 "b0.nic.ceb",
12 "c0.nic.ceb"
137 ],
148 "policies": [
159 {
00 {
11 "domain": "center",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.center",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.center",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "center.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "ceo",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.ceo",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/ceo/"
45 ],
5 "whoisServer": "whois.nic.ceo",
66 "nameServers": [
77 "a.nic.ceo",
88 "b.nic.ceo",
99 "c.nic.ceo",
1010 "d.nic.ceo"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "ceo.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "cern",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/cern/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.cern",
109 "a2.nic.cern",
1110 "b0.nic.cern",
1211 "c0.nic.cern"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cf",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dot.cf",
73 "nameServers": [
84 "a.ns.cf",
95 "b.ns.cf",
106 "c.ns.cf",
117 "d.ns.cf"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "cfa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cfa",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/cfa/v1/"
66 ],
7 "whoisServer": "whois.nic.cfa",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cfd",
22 "infoURL": "https://bostonivy.co/",
3 "whoisServer": "whois.nic.cfd",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/cfd/"
6 ],
7 "nameServers": [
8 "a.nic.cfd",
9 "b.nic.cfd",
10 "c.nic.cfd",
11 "d.nic.cfd"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.cfd",
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.cg/cgi-bin/whois.pl",
73 "nameServers": [
84 "dns-fr.dnsafrica.net",
95 "dns-za.dnsafrica.net",
106 "sunic.sunet.se"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "ch",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.nic.ch",
3 "rdapURLs": [
4 "https://rdap.nic.ch/"
55 ],
6 "whoisServer": "whois.nic.ch",
76 "nameServers": [
87 "a.nic.ch",
98 "b.nic.ch",
109 "c.nic.ch",
1110 "e.nic.ch",
1211 "f.nic.ch",
13 "g.nic.ch",
14 "h.nic.ch"
12 "g.nic.ch"
13 ],
14 "tags": [
15 "country",
16 "geo"
1517 ]
1618 }
00 {
11 "domain": "ch.tc",
22 "nameServers": [
3 "dns.voxel.sh",
4 "voxeldns.net"
3 "ns1.swisscenter.com",
4 "ns2.swisscenter.com"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "chanel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.chanel",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/chanel/v1/"
66 ],
7 "whoisServer": "whois.nic.chanel",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "channel",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "charity",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.charity",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.charity",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "chase",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.chase",
4 "rdapURLs": [
5 "https://rdap.nic.chase/"
66 ],
7 "whoisServer": "whois.nic.chase",
87 "nameServers": [
98 "ns1.dns.nic.chase",
109 "ns2.dns.nic.chase",
1312 "ns5.dns.nic.chase",
1413 "ns6.dns.nic.chase"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/chase_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/chase_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/chase_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/chase_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/chase_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/chase_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/chase_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/chase_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/chase_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/chase_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/chase_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/chase_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/chase_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/chase_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/chase_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/chase_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "chat",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.chat",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.chat",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cheap",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cheap",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cheap",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "chintai",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.chintai",
4 "rdapURLs": [
5 "https://rdap.nic.chintai/"
66 ],
7 "whoisServer": "whois.nic.chintai",
87 "nameServers": [
98 "ns1.dns.nic.chintai",
109 "ns2.dns.nic.chintai",
1312 "ns5.dns.nic.chintai",
1413 "ns6.dns.nic.chintai"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "ja",
23 "value": "https://www.iana.org/domains/idn-tables/tables/chintai_ja_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "chloe",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.chloe",
34 "tags": [
45 "brand",
56 "generic",
67 "withdrawn"
78 ],
8 "whoisServer": "whois.nic.chloe",
99 "policies": [
1010 {
1111 "type": "idn-disallowed"
00 {
11 "domain": "christmas",
2 "infoURL": "http://nic.christmas/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.christmas/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/christmas_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "christmas.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "chrome",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "chrysler",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "church",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.church",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.church",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "ci",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.ci",
73 "nameServers": [
84 "any.nic.ci",
128 "ns.nic.ci",
139 "phloem.uoregon.edu"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "cipriani",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/cipriani/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.cipriani",
109 "a2.nic.cipriani",
1110 "b0.nic.cipriani",
1211 "c0.nic.cipriani"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "circle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.circle",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/circle/"
56 ],
6 "whoisServer": "whois.nic.circle",
77 "nameServers": [
88 "dns1.nic.circle",
99 "dns2.nic.circle",
1313 "dnsb.nic.circle",
1414 "dnsc.nic.circle",
1515 "dnsd.nic.circle"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "cisco",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cisco",
4 "rdapURLs": [
5 "https://rdap.nic.cisco/"
66 ],
7 "whoisServer": "whois.nic.cisco",
87 "nameServers": [
98 "ns1.dns.nic.cisco",
109 "ns2.dns.nic.cisco",
1312 "ns5.dns.nic.cisco",
1413 "ns6.dns.nic.cisco"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "citadel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.citadel",
4 "rdapURLs": [
5 "https://rdap.nic.citadel/"
66 ],
7 "whoisServer": "whois.nic.citadel",
87 "nameServers": [
98 "ns1.dns.nic.citadel",
109 "ns2.dns.nic.citadel",
1312 "ns5.dns.nic.citadel",
1413 "ns6.dns.nic.citadel"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "citi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.citi",
4 "rdapURLs": [
5 "https://rdap.nic.citi/"
66 ],
7 "whoisServer": "whois.nic.citi",
87 "nameServers": [
98 "ns1.dns.nic.citi",
109 "ns2.dns.nic.citi",
1312 "ns5.dns.nic.citi",
1413 "ns6.dns.nic.citi"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "ar",
23 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ar_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "da",
28 "value": "https://www.iana.org/domains/idn-tables/tables/citi_da_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "de",
33 "value": "https://www.iana.org/domains/idn-tables/tables/citi_de_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "es",
38 "value": "https://www.iana.org/domains/idn-tables/tables/citi_es_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "fi",
43 "value": "https://www.iana.org/domains/idn-tables/tables/citi_fi_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "fr",
48 "value": "https://www.iana.org/domains/idn-tables/tables/citi_fr_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "hu",
53 "value": "https://www.iana.org/domains/idn-tables/tables/citi_hu_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "is",
58 "value": "https://www.iana.org/domains/idn-tables/tables/citi_is_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "ja",
63 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ja_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "ko",
68 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ko_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "lt",
73 "value": "https://www.iana.org/domains/idn-tables/tables/citi_lt_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "lv",
78 "value": "https://www.iana.org/domains/idn-tables/tables/citi_lv_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "no",
83 "value": "https://www.iana.org/domains/idn-tables/tables/citi_no_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "pl",
88 "value": "https://www.iana.org/domains/idn-tables/tables/citi_pl_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "pt",
93 "value": "https://www.iana.org/domains/idn-tables/tables/citi_pt_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "ru",
98 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ru_3.0.xml"
99 },
100 {
101 "type": "idn-table",
102 "key": "sv",
103 "value": "https://www.iana.org/domains/idn-tables/tables/citi_sv_3.0.xml"
104 },
105 {
106 "type": "idn-table",
107 "key": "zh",
108 "value": "https://www.iana.org/domains/idn-tables/tables/citi_zh_3.0.xml"
19109 }
20110 ]
21111 }
00 {
11 "domain": "citic",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.citic",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/citic/"
66 ],
7 "whoisServer": "whois.nic.citic",
87 "nameServers": [
98 "a.zdnscloud.com",
109 "b.zdnscloud.com",
1413 "g.zdnscloud.com",
1514 "i.zdnscloud.com",
1615 "j.zdnscloud.com"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "city",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.city",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.city",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cityeats",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.cityeats",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/cityeats/v1/"
66 ],
7 "whoisServer": "whois.nic.cityeats",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "closed",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ck",
22 "infoURL": "http://www.oyster.net.ck/about/index.php?about=domain",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
83 "whoisServer": "whois.ck-nic.org.ck",
94 "nameServers": [
105 "circa.mcs.vuw.ac.nz",
127 "parau.oyster.net.ck",
138 "poiparau.oyster.net.ck"
149 ],
10 "tags": [
11 "closed",
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "cl",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.cl",
73 "nameServers": [
84 "a.nic.cl",
139 "cl1.dnsnode.net",
1410 "cl2-tld.d-zone.ca"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-table",
00 {
11 "domain": "claims",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.claims",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.claims",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cleaning",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cleaning",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cleaning",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "click",
2 "infoURL": "http://nic.click/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.click/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/click_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "clinic",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.clinic",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.clinic",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "clinic.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "clinique",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.clinique",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/clinique/"
66 ],
7 "whoisServer": "whois.nic.clinique",
87 "nameServers": [
98 "a0.nic.clinique",
109 "a2.nic.clinique",
1110 "b0.nic.clinique",
1211 "c0.nic.clinique"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "clothing",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.clothing",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.clothing",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "clothing.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "cloud",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cloud",
4 "rdapURLs": [
5 "https://rdap.nic.cloud/"
56 ],
6 "whoisServer": "whois.nic.cloud",
77 "nameServers": [
88 "a.nic.cloud",
99 "b.nic.cloud",
1010 "c.nic.cloud",
1111 "d.nic.cloud"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "club",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.club",
3 "rdapURLs": [
4 "https://rdap.nic.club/"
45 ],
5 "whoisServer": "whois.nic.club",
66 "nameServers": [
77 "ns1.dns.nic.club",
88 "ns2.dns.nic.club",
1111 "ns5.dns.nic.club",
1212 "ns6.dns.nic.club"
1313 ],
14 "tags": [
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/club_ar_3.0.xml"
22 },
23 {
24 "type": "idn-table",
25 "key": "da",
26 "value": "https://www.iana.org/domains/idn-tables/tables/club_da_3.0.xml"
27 },
28 {
29 "type": "idn-table",
30 "key": "de",
31 "value": "https://www.iana.org/domains/idn-tables/tables/club_de_3.0.xml"
32 },
33 {
34 "type": "idn-table",
1735 "key": "es",
18 "value": "https://www.iana.org/domains/idn-tables/tables/club_es_1.0.txt"
36 "value": "https://www.iana.org/domains/idn-tables/tables/club_es_3.0.xml"
37 },
38 {
39 "type": "idn-table",
40 "key": "fi",
41 "value": "https://www.iana.org/domains/idn-tables/tables/club_fi_3.0.xml"
42 },
43 {
44 "type": "idn-table",
45 "key": "fr",
46 "value": "https://www.iana.org/domains/idn-tables/tables/club_fr_3.0.xml"
47 },
48 {
49 "type": "idn-table",
50 "key": "hu",
51 "value": "https://www.iana.org/domains/idn-tables/tables/club_hu_3.0.xml"
52 },
53 {
54 "type": "idn-table",
55 "key": "is",
56 "value": "https://www.iana.org/domains/idn-tables/tables/club_is_3.0.xml"
57 },
58 {
59 "type": "idn-table",
60 "key": "it",
61 "value": "https://www.iana.org/domains/idn-tables/tables/club_it_3.0.xml"
62 },
63 {
64 "type": "idn-table",
65 "key": "ja",
66 "value": "https://www.iana.org/domains/idn-tables/tables/club_ja_3.0.xml"
67 },
68 {
69 "type": "idn-table",
70 "key": "ko",
71 "value": "https://www.iana.org/domains/idn-tables/tables/club_ko_3.0.xml"
72 },
73 {
74 "type": "idn-table",
75 "key": "lt",
76 "value": "https://www.iana.org/domains/idn-tables/tables/club_lt_3.0.xml"
77 },
78 {
79 "type": "idn-table",
80 "key": "lv",
81 "value": "https://www.iana.org/domains/idn-tables/tables/club_lv_3.0.xml"
82 },
83 {
84 "type": "idn-table",
85 "key": "no",
86 "value": "https://www.iana.org/domains/idn-tables/tables/club_no_3.0.xml"
87 },
88 {
89 "type": "idn-table",
90 "key": "pl",
91 "value": "https://www.iana.org/domains/idn-tables/tables/club_pl_3.0.xml"
92 },
93 {
94 "type": "idn-table",
95 "key": "pt",
96 "value": "https://www.iana.org/domains/idn-tables/tables/club_pt_3.0.xml"
97 },
98 {
99 "type": "idn-table",
100 "key": "ru",
101 "value": "https://www.iana.org/domains/idn-tables/tables/club_ru_3.0.xml"
102 },
103 {
104 "type": "idn-table",
105 "key": "sv",
106 "value": "https://www.iana.org/domains/idn-tables/tables/club_sv_3.0.xml"
107 },
108 {
109 "type": "idn-table",
110 "key": "zh",
111 "value": "https://www.iana.org/domains/idn-tables/tables/club_zh_3.0.xml"
19112 }
20113 ]
21114 }
00 {
11 "domain": "club.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "clubmed",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.clubmed",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/clubmed/v1/"
66 ],
7 "whoisServer": "whois.nic.clubmed",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cm",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "https://antic.cm/",
63 "whoisServer": "whois.netcom.cm",
7 "whoisURL": "http://antic.cm",
84 "nameServers": [
95 "auth02.ns.uu.net",
106 "kim.camnet.cm",
128 "ns.itu.ch",
139 "sanaga.camnet.cm"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "cn.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/cn.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
99 "ns3.centralnic.net",
1010 "ns4.centralnic.net"
1111 ],
12 "wildcards": [
13 "54.153.56.183",
14 "cn.com"
12 "tags": [
13 "private"
1514 ]
1615 }
00 {
11 "domain": "cn",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "http://cnnic.cn/",
63 "whoisServer": "whois.cnnic.cn",
74 "nameServers": [
85 "a.dns.cn",
1310 "f.dns.cn",
1411 "g.dns.cn",
1512 "ns.cernet.net"
13 ],
14 "tags": [
15 "country",
16 "geo"
1617 ],
1718 "policies": [
1819 {
00 {
11 "domain": "co.bw",
2 "nameServers": [
3 "dns1.nic.net.bw",
4 "ns-bw.afrinic.net",
5 "pch.nic.net.bw"
6 ],
72 "policies": [
83 {
94 "type": "idn-disallowed"
00 {
11 "domain": "co.ca",
2 "tags": [
3 "private"
4 ],
52 "whoisServer": "whois.co.ca",
63 "nameServers": [
74 "primary.relay.co.ca",
107 "secondary.relay.co.ca",
118 "senary.relay.co.ca",
129 "tertiary.relay.co.ca"
10 ],
11 "tags": [
12 "private"
1313 ]
1414 }
55 "ns1.nic.cm",
66 "ns2.nic.cm"
77 ],
8 "wildcards": [
9 "85.25.140.105"
10 ],
118 "policies": [
129 {
1310 "type": "idn-disallowed"
00 {
11 "domain": "co.com",
2 "infoURL": "http://registry.co.com/",
3 "tags": [
4 "private"
2 "infoURL": "https://registry.co.com/",
3 "whoisServer": "whois.centralnic.net",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/co.com/"
56 ],
6 "whoisServer": "whois.centralnic.net",
77 "nameServers": [
88 "ns1.nic.co.com",
99 "ns2.nic.co.com",
1212 ],
1313 "wildcards": [
1414 "173.192.115.17"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
11 "domain": "co.dm",
22 "nameServers": [
33 "ns.blacknightsolutions.com",
4 "ns1.uniregistry.net",
45 "ns2.blacknightsolutions.com",
56 "ns2.nic.dm",
6 "ns34.cdns.net"
7 "ns2.uniregistry.info",
8 "ns3.uniregistry.net",
9 "ns34.cdns.net",
10 "ns4.uniregistry.info"
711 ],
812 "policies": [
913 {
00 {
11 "domain": "co.fo",
22 "nameServers": [
3 "ns1-07.azure-dns.com",
4 "ns2-07.azure-dns.net"
3 "ns1.cctld.com",
4 "ns2.cctld.com"
55 ],
66 "policies": [
77 {
00 {
11 "domain": "co.gg",
22 "nameServers": [
3 "b.ci-servers.com",
43 "c.ci-servers.org",
54 "dns1.nominetdns.uk",
6 "f.ci-servers.je",
7 "g.ci-servers.gg"
5 "dns2.nominetdns.uk",
6 "dns3.nominetdns.uk",
7 "dns4.nominetdns.uk"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "co.gp",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "co.gp"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
11 "domain": "co.gy",
22 "nameServers": [
33 "a.lactld.org",
4 "gy-ns.anycast.pch.net",
5 "ns.cocca.fr"
4 "gy-ns.anycast.pch.net"
65 ],
76 "policies": [
87 {
00 {
11 "domain": "co.il",
2 "infoURL": "http://www.isoc.org.il/domains/",
2 "infoURL": "https://www.isoc.org.il/domain-name-registry",
33 "nameServers": [
44 "ilns.ilan.net.il",
55 "lookup.iucc.ac.il",
00 {
11 "domain": "co.je",
22 "nameServers": [
3 "b.ci-servers.com",
43 "c.ci-servers.org",
54 "dns1.nominetdns.uk",
6 "f.ci-servers.je",
7 "g.ci-servers.gg"
5 "dns2.nominetdns.uk",
6 "dns3.nominetdns.uk",
7 "dns4.nominetdns.uk"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "co",
2 "infoURL": "http://www.go.co/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://www.go.co/",
83 "whoisServer": "whois.nic.co",
94 "nameServers": [
105 "ns1.cctld.co",
138 "ns4.cctld.co",
149 "ns5.cctld.co",
1510 "ns6.cctld.co"
11 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
1616 ],
1717 "policies": [
1818 {
11 "domain": "co.mu",
22 "nameServers": [
33 "anycast1.irondns.net",
4 "fork.sth.dnsnode.net",
45 "mu1.dyntld.net",
56 "mu2.dyntld.net",
67 "mu3.dyntld.net",
78 "mu4.dyntld.net",
8 "udns1.tld.mu"
9 "udns1.tld.mu",
10 "udns2.tld.mu"
911 ]
1012 }
00 {
11 "domain": "co.nl",
2 "tags": [
3 "private"
2 "rdapURLs": [
3 "https://rdap.centralnic.com/co.nl/"
44 ],
55 "nameServers": [
66 "a.nic.co.nl",
88 "c.nic.co.nl",
99 "d.nic.co.nl"
1010 ],
11 "tags": [
12 "private"
13 ],
1114 "policies": [
1215 {
1316 "type": "idn-disallowed"
00 {
11 "domain": "co.no",
2 "infoURL": "http://www.norid.no/index.en.html",
2 "infoURL": "https://www.norid.no/index.en.html",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/co.no/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "co.nu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "co.nu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "co.pt",
22 "nameServers": [
3 "os1.eurotux.com",
4 "os3.eurotux.com"
3 "ns61.plako.net",
4 "ns62.plako.net"
55 ],
66 "wildcards": [
77 "195.22.20.163"
00 {
11 "domain": "co.vu",
2 "infoURL": "www.co.vu",
2 "infoURL": "https://codotvu.co/",
33 "nameServers": [
44 "ns1.codotvu.com",
55 "ns2.codotvu.com",
00 {
11 "domain": "co.za",
2 "whoisServer": "whois.coza.net.za",
2 "whoisServer": "coza-whois.registry.net.za",
33 "nameServers": [
44 "coza1.dnsnode.net",
55 "ns.coza.net.za",
00 {
11 "domain": "coach",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.coach",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.coach",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "codes",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.codes",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.codes",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "codes.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "coffee",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.coffee",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.coffee",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "coffee.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "college",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.college",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/college/"
56 ],
6 "whoisServer": "whois.nic.college",
77 "nameServers": [
88 "a.nic.college",
99 "b.nic.college",
1010 "c.nic.college",
1111 "d.nic.college"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "college.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "cologne",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.ryce-rsp.com",
3 "rdapURLs": [
4 "https://rdap.ryce-rsp.com/rdap/"
5 ],
6 "nameServers": [
7 "dns.ryce-rsp.com",
8 "ns1.dns.business",
9 "ns1.ryce-rsp.com"
610 ],
711 "locations": [
812 "Cologne",
913 "Koeln"
1014 ],
11 "whoisServer": "whois.ryce-rsp.com",
12 "nameServers": [
13 "dns.ryce-rsp.com",
14 "ns1.dns.business",
15 "ns1.ryce-rsp.com"
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
11 "domain": "com.af",
22 "nameServers": [
33 "ns.anycast.nic.af",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "com.ai",
22 "nameServers": [
3 "ns.cocca.fr",
43 "pch.whois.ai"
54 ],
65 "policies": [
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.nic.bj",
5 "ns2.nic.bj",
56 "pch.nic.bj"
67 ],
78 "policies": [
+0
-11
metadata/com.cd.json less more
0 {
1 "domain": "com.cd",
2 "nameServers": [
3 "igubu.saix.net",
4 "ns-root-1.scpt-network.com",
5 "ns-root-2.scpt-network.com",
6 "ns-root-5.scpt-network.com",
7 "sabela.saix.net",
8 "sangoma.saix.net"
9 ]
10 }
11 "domain": "com.cx",
22 "nameServers": [
33 "ns.anycast.nic.cx",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ]
67 }
00 {
11 "domain": "com.de",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/com.de/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "com.es",
22 "nameServers": [
3 "c.nic.es",
34 "fnicdos.rediris.es",
45 "g.nic.es",
56 "h.nic.es",
00 {
11 "domain": "com.fo",
22 "nameServers": [
3 "ns1-03.azure-dns.com",
4 "ns2-03.azure-dns.net"
3 "ns1.cctld.com",
4 "ns2.cctld.com"
55 ],
66 "policies": [
77 {
11 "domain": "com.gy",
22 "nameServers": [
33 "a.lactld.org",
4 "gy-ns.anycast.pch.net",
5 "ns.cocca.fr"
4 "gy-ns.anycast.pch.net"
65 ],
76 "policies": [
87 {
00 {
11 "domain": "com.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ],
87 "policies": [
98 {
00 {
11 "domain": "com",
2 "infoURL": "http://www.verisigninc.com/en_US/products-and-services/domain-name-services/registry-services/index.xhtml",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.verisign.com/en_US/domain-names/com-domain-names/index.xhtml",
3 "whoisServer": "whois.verisign-grs.com",
4 "rdapURLs": [
5 "https://rdap.verisign.com/com/v1/"
56 ],
6 "whoisServer": "whois.verisign-grs.com",
77 "nameServers": [
88 "a.gtld-servers.net",
99 "b.gtld-servers.net",
1919 "l.gtld-servers.net",
2020 "m.gtld-servers.net"
2121 ],
22 "tags": [
23 "generic"
24 ],
2225 "policies": [
2326 {
2427 "type": "idn-table",
11 "domain": "com.kg",
22 "nameServers": [
33 "as.asiainfo.kg",
4 "kg.cctld.authdns.ripe.net",
54 "ns-kg.ripe.net",
65 "ns.kg"
76 ],
00 {
11 "domain": "com.lb",
22 "nameServers": [
3 "magma.aub.edu.lb",
3 "nn.uninett.no",
4 "ns3.seacomnet.com",
5 "ns4.seacomnet.com",
46 "rip.psg.com",
57 "zeina.aub.edu.lb"
68 ],
11 "domain": "com.mu",
22 "nameServers": [
33 "anycast1.irondns.net",
4 "fork.sth.dnsnode.net",
45 "mu1.dyntld.net",
56 "mu2.dyntld.net",
67 "mu3.dyntld.net",
78 "mu4.dyntld.net",
8 "udns1.tld.mu"
9 "udns1.tld.mu",
10 "udns2.tld.mu"
911 ],
1012 "policies": [
1113 {
00 {
11 "domain": "com.my",
2 "infoURL": "http://about.museum/",
2 "infoURL": "https://mynic.my/",
33 "nameServers": [
44 "a.mynic.centralnic-dns.com",
55 "b.mynic.centralnic-dns.com",
00 {
11 "domain": "com.nl",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.com.nl",
74 "ns2.com.nl"
96 "wildcards": [
107 "185.85.211.136"
118 ],
9 "tags": [
10 "private"
11 ],
1212 "policies": [
1313 {
1414 "type": "idn-disallowed"
00 {
11 "domain": "com.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "com.nu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "com.nu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "com.ps",
2 "infoURL": "http://www.pnina.ps/domains/registration-policy/",
2 "infoURL": "https://www.pnina.ps/registration-policy/",
33 "nameServers": [
44 "ns1.pnina.ps",
55 "ns2.pnina.ps",
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "com.sb",
22 "nameServers": [
3 "ns.cocca.fr",
3 "ns1.anycastdns.cz",
4 "ns2.anycastdns.cz",
45 "pch.nic.sb"
56 ],
67 "policies": [
00 {
11 "domain": "com.se",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/com.se/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "com.sn",
22 "nameServers": [
3 "dns.ucad.sn",
43 "ns.nic.sn",
5 "ns.ucad.sn"
4 "ns.ucad.sn",
5 "ns3.cctld.sn"
66 ],
77 "policies": [
88 {
+0
-8
metadata/com.ss.json less more
0 {
1 "domain": "com.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "pch.nic.ss"
6 ]
7 }
00 {
11 "domain": "com.td",
2 "nameServers": [
3 "ns-td.afrinic.net",
4 "ns.cocca.fr",
5 "pch.nic.td"
6 ],
72 "policies": [
83 {
94 "type": "idn-disallowed"
11 "domain": "com.tl",
22 "nameServers": [
33 "ns.anycast.nic.tl",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "com.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "com.uy",
2 "whoisURL": "https://nic.anteldata.com.uy/dns/consultaWhois/whois.action",
32 "nameServers": [
43 "ns1.anteldata.com.uy",
54 "ns2.anteldata.com.uy",
33 "ns2.dns.ws",
44 "ns3.dns.ws",
55 "ns4.dns.ws",
6 "ns5.dns.ws"
6 "ns5.dns.ws",
7 "ns6.dns.ws",
8 "ns7.dns.ws"
79 ],
810 "wildcards": [
911 "202.4.48.211"
00 {
11 "domain": "com.ye",
2 "nameServers": [
3 "ns1.yemen.net.ye",
4 "ns2.yemen.net.ye",
5 "pch.nic.ye",
6 "sah1.ye",
7 "sah2.ye"
8 ],
29 "policies": [
310 {
411 "type": "idn-disallowed"
00 {
11 "domain": "comcast",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.comcast",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/comcast/"
66 ],
7 "whoisServer": "whois.nic.comcast",
87 "nameServers": [
98 "dns1.nic.comcast",
109 "dns2.nic.comcast",
1514 "dnsc.nic.comcast",
1615 "dnsd.nic.comcast"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "commbank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.commbank",
4 "rdapURLs": [
5 "https://rdap.nic.commbank/"
66 ],
7 "whoisServer": "whois.nic.commbank",
87 "nameServers": [
98 "a.nic.commbank",
109 "b.nic.commbank",
1110 "c.nic.commbank",
1211 "d.nic.commbank"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "community",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.community",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.community",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "community.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "company",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.company",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.company",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "company.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "compare",
2 "infoURL": "http://nic.compare",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.go.compare/",
3 "whoisServer": "whois.nic.compare",
4 "rdapURLs": [
5 "https://rdap.nic.compare/"
56 ],
6 "whoisServer": "whois.nic.compare",
77 "nameServers": [
88 "a.nic.compare",
99 "b.nic.compare",
1010 "c.nic.compare",
1111 "d.nic.compare"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "computer",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.computer",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.computer",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "computer.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "comsec",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.comsec",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/comsec/v1/"
66 ],
7 "whoisServer": "whois.nic.comsec",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "condos",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.condos",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.condos",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "construction",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.construction",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.construction",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "consulting",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.consulting",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.consulting",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "contact",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.contact",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.contact",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "contractors",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.contractors",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.contractors",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cooking",
22 "infoURL": "http://nic.cooking/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cooking",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/cooking/"
56 ],
6 "whoisServer": "whois.nic.cooking",
77 "nameServers": [
88 "dns1.nic.cooking",
99 "dns2.nic.cooking",
1313 "dnsb.nic.cooking",
1414 "dnsc.nic.cooking",
1515 "dnsd.nic.cooking"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "cookingchannel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cookingchannel",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/cookingchannel/v1/"
66 ],
7 "whoisServer": "whois.nic.cookingchannel",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cool",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cool",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cool",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "cool.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "coop.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "coop",
2 "infoURL": "http://www.nic.coop/",
3 "tags": [
4 "generic",
5 "sponsored"
2 "infoURL": "https://identity.coop/",
3 "whoisServer": "whois.nic.coop",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/coop/"
66 ],
7 "whoisServer": "whois.nic.coop",
87 "nameServers": [
98 "a.nic.coop",
109 "b.nic.coop",
1110 "c.nic.coop",
1211 "d.nic.coop"
12 ],
13 "tags": [
14 "generic",
15 "sponsored"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "coop.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "corsica",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois-corsica.nic.fr",
4 "rdapURLs": [
5 "https://rdap.nic.corsica/"
6 ],
7 "nameServers": [
8 "d.nic.fr",
9 "f.ext.nic.fr",
10 "g.ext.nic.fr"
11 ],
12 "locations": [
13 "FR-H"
14 ],
315 "tags": [
416 "generic",
517 "geo",
618 "region"
7 ],
8 "locations": [
9 "FR-H"
10 ],
11 "whoisServer": "whois-corsica.nic.fr",
12 "nameServers": [
13 "d.nic.fr",
14 "f.ext.nic.fr",
15 "g.ext.nic.fr"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "country",
2 "infoURL": "http://nic.country/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.country/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "country.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "coupon",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.coupon",
4 "rdapURLs": [
5 "https://rdap.nic.coupon/"
56 ],
6 "whoisServer": "whois.nic.coupon",
77 "nameServers": [
88 "ns1.dns.nic.coupon",
99 "ns2.dns.nic.coupon",
1212 "ns5.dns.nic.coupon",
1313 "ns6.dns.nic.coupon"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "ar",
19 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ar_2.1.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ar_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "da",
24 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_da_2.1.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_da_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "de",
29 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_de_2.1.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_de_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "es",
34 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_es_2.1.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_es_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fi",
39 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fi_2.1.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fi_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "fr",
44 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fr_2.1.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fr_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "hu",
49 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_hu_2.1.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_hu_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "is",
54 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_is_2.1.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_is_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ja",
59 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ja_2.1.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ja_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "ko",
64 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ko_2.1.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ko_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lt",
69 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lt_2.1.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lt_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "lv",
74 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lv_2.1.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lv_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "no",
79 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_no_2.1.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_no_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pl",
84 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pl_2.1.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pl_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "pt",
89 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pt_2.1.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pt_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "ru",
94 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ru_2.1.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ru_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "sv",
99 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_sv_2.1.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_sv_3.0.xml"
100103 },
101104 {
102105 "type": "idn-table",
103106 "key": "zh",
104 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_zh_2.1.txt"
107 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_zh_3.0.xml"
105108 }
106109 ]
107110 }
00 {
11 "domain": "coupons",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.coupons",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.coupons",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "courses",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.courses",
4 "rdapURLs": [
5 "https://rdap.nic.courses/"
56 ],
6 "whoisServer": "whois.nic.courses",
77 "nameServers": [
88 "a.nic.courses",
99 "b.nic.courses",
1010 "c.nic.courses",
1111 "d.nic.courses"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
0 {
1 "domain": "coz.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "cpa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.nic.cpa",
74 "nameServers": [
85 "a.nic.cpa",
107 "c.nic.cpa",
118 "d.nic.cpa"
129 ],
10 "tags": [
11 "generic"
12 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "da",
17 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_da_3.0.xml"
18 },
19 {
20 "type": "idn-table",
21 "key": "de",
22 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_de_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "es",
27 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_es_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "fi",
32 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_fi_3.0.xml"
33 },
34 {
35 "type": "idn-table",
36 "key": "hu",
37 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_hu_3.0.xml"
38 },
39 {
40 "type": "idn-table",
41 "key": "is",
42 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_is_3.0.xml"
43 },
44 {
45 "type": "idn-table",
46 "key": "ja",
47 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_ja_3.0.xml"
48 },
49 {
50 "type": "idn-table",
51 "key": "ko",
52 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_ko_3.0.xml"
53 },
54 {
55 "type": "idn-table",
56 "key": "lt",
57 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_lt_3.0.xml"
58 },
59 {
60 "type": "idn-table",
61 "key": "lv",
62 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_lv_3.0.xml"
63 },
64 {
65 "type": "idn-table",
66 "key": "no",
67 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_no_3.0.xml"
68 },
69 {
70 "type": "idn-table",
71 "key": "pl",
72 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_pl_3.0.xml"
73 },
74 {
75 "type": "idn-table",
76 "key": "pt",
77 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_pt_3.0.xml"
78 },
79 {
80 "type": "idn-table",
81 "key": "ru",
82 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_ru_3.0.xml"
83 },
84 {
85 "type": "idn-table",
86 "key": "sv",
87 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_sv_3.0.xml"
88 },
89 {
90 "type": "idn-table",
91 "key": "zh",
92 "value": "https://www.iana.org/domains/idn-tables/tables/cpa_zh_3.0.xml"
1693 }
1794 ]
1895 }
00 {
11 "domain": "cr",
2 "tags": [
3 "country",
4 "geo"
2 "infoURL": "https://www.nic.cr/",
3 "whoisServer": "whois.nic.cr",
4 "rdapURLs": [
5 "https://rdap.nic.cr/"
56 ],
6 "whoisServer": "whois.nic.cr",
7 "whoisURL": "http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do",
87 "nameServers": [
98 "a.lactld.org",
109 "ca1.nic.cr",
1312 "dns.nic.cr",
1413 "p.nic.cr"
1514 ],
15 "tags": [
16 "country",
17 "geo"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "credit",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.credit",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.credit",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "credit.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "creditcard",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.creditcard",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.creditcard",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "creditcard.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "creditunion",
2 "infoURL": "http://nic.creditunion/",
2 "infoURL": "https://nic.creditunion/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/creditunion/"
6 ],
7 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns5.uniregistry.net",
11 "ns6.uniregistry.info"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.creditunion",
9 "a2.nic.creditunion",
10 "b0.nic.creditunion",
11 "c0.nic.creditunion"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cricket",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cricket",
4 "rdapURLs": [
5 "https://rdap.nic.cricket/"
56 ],
6 "whoisServer": "whois.nic.cricket",
77 "nameServers": [
88 "ns1.dns.nic.cricket",
99 "ns2.dns.nic.cricket",
1212 "ns5.dns.nic.cricket",
1313 "ns6.dns.nic.cricket"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "crown",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/crown/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "crs",
22 "infoURL": "http://nic.crs/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.crs",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/crs/v1/"
66 ],
7 "whoisServer": "whois.nic.crs",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cruise",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cruise",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/cruise/"
56 ],
6 "whoisServer": "whois.nic.cruise",
77 "nameServers": [
88 "a0.nic.cruise",
99 "a2.nic.cruise",
1010 "b0.nic.cruise",
1111 "c0.nic.cruise"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cruises",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.cruises",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.cruises",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "csc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.csc",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/csc/v1/"
66 ],
7 "whoisServer": "whois.nic.csc",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cu",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.cu/",
73 "nameServers": [
84 "cu.cctld.authdns.ripe.net",
128 "ns2.gip.net",
139 "rip.psg.com"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "cuisinella",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.cuisinella",
4 "rdapURLs": [
5 "https://rdap.nic.cuisinella/"
66 ],
7 "whoisServer": "whois.nic.cuisinella",
87 "nameServers": [
98 "a.nic.cuisinella",
109 "b.nic.cuisinella",
1110 "c.nic.cuisinella",
1211 "d.nic.cuisinella"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "cv",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.dns.cv/",
73 "nameServers": [
84 "c.dns.pt",
106 "ns-ext.isc.org",
117 "ns.dns.cv"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "cw",
2 "infoURL": "http://en.wikipedia.org/wiki/.cw",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://en.wikipedia.org/wiki/.cw",
73 "nameServers": [
84 "cw.cctld.authdns.ripe.net",
95 "kadushi.curinfo.cw",
139 "ns2.uoc.cw",
1410 "ns3.uoc.cw"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "cx",
2 "whoisServer": "whois.nic.cx",
3 "nameServers": [
4 "ns.anycast.nic.cx",
5 "ns1.anycastdns.cz",
6 "ns2.anycastdns.cz"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.nic.cx",
7 "nameServers": [
8 "ns.anycast.nic.cx",
9 "ns.cocca.fr"
1011 ],
1112 "policies": [
1213 {
00 {
11 "domain": "cy",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisURL": "http://www.nic.cy/nslookup/online_database.php",
83 "nameServers": [
94 "cy-ns.anycast.pch.net",
1510 "ns31.rcode0.net",
1611 "ns4.apnic.net"
1712 ],
13 "tags": [
14 "closed",
15 "country",
16 "geo"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-disallowed"
00 {
11 "domain": "cymru",
2 "infoURL": "http://nic.cymru/",
3 "tags": [
4 "generic",
5 "region"
2 "infoURL": "https://eincartrefarlein.cymru/",
3 "whoisServer": "whois.nic.cymru",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/cymru/"
66 ],
7 "locations": [
8 "GB-WLS"
9 ],
10 "whoisServer": "whois.nic.cymru",
117 "nameServers": [
128 "dns1.nic.cymru",
139 "dns2.nic.cymru",
1814 "dnsc.nic.cymru",
1915 "dnsd.nic.cymru"
2016 ],
17 "locations": [
18 "GB-WLS"
19 ],
20 "tags": [
21 "generic",
22 "region"
23 ],
2124 "policies": [
2225 {
2326 "type": "idn-table",
00 {
11 "domain": "cyou",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.cyou",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/cyou/"
56 ],
6 "whoisServer": "whois.nic.cyou",
77 "nameServers": [
88 "a.nic.cyou",
99 "b.nic.cyou",
1010 "c.nic.cyou",
1111 "d.nic.cyou"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "cz",
22 "infoURL": "https://www.nic.cz/",
3 "tags": [
4 "country",
5 "geo"
3 "whoisServer": "whois.nic.cz",
4 "rdapURLs": [
5 "https://rdap.nic.cz/"
66 ],
7 "whoisServer": "whois.nic.cz",
87 "nameServers": [
98 "a.ns.nic.cz",
109 "b.ns.nic.cz",
1110 "c.ns.nic.cz",
1211 "d.ns.nic.cz"
12 ],
13 "tags": [
14 "country",
15 "geo"
1316 ]
1417 }
00 {
11 "domain": "dabur",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/dabur/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.dabur",
99 "a2.nic.dabur",
1010 "b0.nic.dabur",
1111 "c0.nic.dabur"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "dad",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "dance",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.dance",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.dance",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "data",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.data",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/data/"
56 ],
6 "whoisServer": "whois.nic.data",
77 "nameServers": [
88 "a0.nic.data",
99 "a2.nic.data",
1010 "b0.nic.data",
1111 "c0.nic.data"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "date",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.date",
4 "rdapURLs": [
5 "https://rdap.nic.date/"
56 ],
6 "whoisServer": "whois.nic.date",
77 "nameServers": [
88 "ns1.dns.nic.date",
99 "ns2.dns.nic.date",
1212 "ns5.dns.nic.date",
1313 "ns6.dns.nic.date"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/date_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/date_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/date_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/date_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/date_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/date_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/date_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/date_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/date_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/date_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/date_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/date_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/date_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/date_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/date_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/date_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/date_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/date_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/date_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/date_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/date_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/date_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/date_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/date_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/date_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/date_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/date_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/date_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/date_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/date_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/date_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/date_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/date_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/date_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "dating",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.dating",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.dating",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "datsun",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
4144 "type": "idn-table",
4245 "key": "pt",
4346 "value": "https://www.iana.org/domains/idn-tables/tables/datsun_pt_1.0.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "zh",
51 "value": "https://www.iana.org/domains/idn-tables/tables/datsun_zh_1.1.txt"
4452 }
4553 ]
4654 }
00 {
11 "domain": "day",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "dclk",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "dds",
22 "infoURL": "http://nic.dds/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.dds",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/dds/"
56 ],
6 "whoisServer": "whois.nic.dds",
77 "nameServers": [
88 "dns1.nic.dds",
99 "dns2.nic.dds",
1414 "dnsc.nic.dds",
1515 "dnsd.nic.dds"
1616 ],
17 "tags": [
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-table",
2023 "key": "de",
21 "value": "https://registrars.nominet.uk/sites/default/files/german_idn.pdf",
24 "value": "https://www.iana.org/domains/idn-tables/tables/dds_de_1.0.txt",
2225 "comment": "https://registrars.nominet.uk/gtlds/gtld-registrar-systems/internationalised-domain-names-idns"
2326 },
2427 {
2528 "type": "idn-table",
2629 "key": "es",
27 "value": "https://registrars.nominet.uk/sites/default/files/spanish_idn.pdf",
30 "value": "https://www.iana.org/domains/idn-tables/tables/dds_es_1.0.txt",
2831 "comment": "https://registrars.nominet.uk/gtlds/gtld-registrar-systems/internationalised-domain-names-idns"
2932 },
3033 {
3134 "type": "idn-table",
3235 "key": "fr",
33 "value": "https://registrars.nominet.uk/sites/default/files/french_idn.pdf",
36 "value": "https://www.iana.org/domains/idn-tables/tables/dds_fr_1.0.txt",
3437 "comment": "https://registrars.nominet.uk/gtlds/gtld-registrar-systems/internationalised-domain-names-idns"
3538 }
3639 ]
00 {
11 "domain": "de.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/de.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "54.153.56.183",
1414 "de.com"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
00 {
11 "domain": "de",
22 "infoURL": "https://www.denic.de/",
3 "tags": [
4 "country",
5 "geo"
3 "whoisServer": "whois.denic.de",
4 "rdapURLs": [
5 "https://rdap.denic.de/"
66 ],
7 "whoisServer": "whois.denic.de",
87 "nameServers": [
98 "a.nic.de",
109 "f.nic.de",
1211 "n.de.net",
1312 "s.de.net",
1413 "z.nic.de"
14 ],
15 "tags": [
16 "country",
17 "geo"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "de.pn",
2 "nameServers": [
3 "ns1.idnscan.net",
4 "ns2.idnscan.net"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
00 {
11 "domain": "deal",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.deal",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/deal/"
56 ],
6 "whoisServer": "whois.nic.deal",
77 "nameServers": [
88 "dns1.nic.deal",
99 "dns2.nic.deal",
1313 "dnsb.nic.deal",
1414 "dnsc.nic.deal",
1515 "dnsd.nic.deal"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "dealer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.dealer",
4 "rdapURLs": [
5 "https://rdap.nic.dealer/"
56 ],
6 "whoisServer": "whois.nic.dealer",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "deals",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.deals",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.deals",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "degree",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.degree",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.degree",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "delivery",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.delivery",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.delivery",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "dell",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dell",
4 "rdapURLs": [
5 "https://rdap.nic.dell/"
66 ],
7 "whoisServer": "whois.nic.dell",
87 "nameServers": [
98 "ns1.dns.nic.dell",
109 "ns2.dns.nic.dell",
1312 "ns5.dns.nic.dell",
1413 "ns6.dns.nic.dell"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/dell_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "deloitte",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.deloitte",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/deloitte/"
66 ],
7 "whoisServer": "whois.nic.deloitte",
87 "nameServers": [
98 "a.nic.deloitte",
109 "b.nic.deloitte",
1110 "c.nic.deloitte",
1211 "d.nic.deloitte"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "delta",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.delta",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/delta/"
66 ],
7 "whoisServer": "whois.nic.delta",
87 "nameServers": [
98 "a0.nic.delta",
109 "a2.nic.delta",
1110 "b0.nic.delta",
1211 "c0.nic.delta"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "democrat",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.democrat",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.democrat",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "dental",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.dental",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.dental",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "dental.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "dentist",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.dentist",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.dentist",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
0 {
1 "domain": "des.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "desi",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.desi",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/desi/"
45 ],
5 "whoisServer": "whois.nic.desi",
66 "nameServers": [
77 "a.nic.desi",
88 "b.nic.desi",
99 "c.nic.desi",
1010 "d.nic.desi"
11 ],
12 "tags": [
13 "generic"
1114 ]
1215 }
00 {
11 "domain": "design",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.design",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/design/"
56 ],
6 "whoisServer": "whois.nic.design",
77 "nameServers": [
88 "a.nic.design",
99 "b.nic.design",
1010 "c.nic.design",
1111 "d.nic.design"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
0 {
1 "domain": "det.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
0 {
1 "domain": "dev.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "dev",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "dhl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://rdap.centralnic.com/dhl/"
65 ],
76 "nameServers": [
87 "a.nic.dhl",
98 "b.nic.dhl",
109 "c.nic.dhl",
1110 "d.nic.dhl"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "diamonds",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.diamonds",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.diamonds",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "diamonds.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "diet",
2 "infoURL": "http://nic.diet/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.diet/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/diet_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "digital",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.digital",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.digital",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "direct",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.direct",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.direct",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "directory",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.directory",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.directory",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "discount",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.discount",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.discount",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "discover",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.discover",
4 "rdapURLs": [
5 "https://rdap.nic.discover/"
66 ],
7 "whoisServer": "whois.nic.discover",
87 "nameServers": [
98 "ns1.dns.nic.discover",
109 "ns2.dns.nic.discover",
1312 "ns5.dns.nic.discover",
1413 "ns6.dns.nic.discover"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "dish",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dish",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/dish/"
66 ],
7 "whoisServer": "whois.nic.dish",
87 "nameServers": [
98 "a0.nic.dish",
109 "a2.nic.dish",
1110 "b0.nic.dish",
1211 "c0.nic.dish"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "diy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.diy",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/diy/v1/"
56 ],
6 "whoisServer": "whois.nic.diy",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "dj",
2 "tags": [
3 "country",
4 "generic",
5 "geo"
6 ],
72 "whoisURL": "http://www.nic.dj/whois.php",
83 "nameServers": [
94 "bow1.intnet.dj",
105 "bow5.intnet.dj",
116 "vps443605.ovh.net"
7 ],
8 "tags": [
9 "country",
10 "generic",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "dk",
22 "infoURL": "https://www.dk-hostmaster.dk/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.dk-hostmaster.dk",
84 "nameServers": [
95 "a.nic.dk",
1410 "p.nic.dk",
1511 "s.nic.dk"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-table",
00 {
11 "domain": "dm",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.dm",
73 "nameServers": [
84 "ns.blacknightsolutions.com",
95 "ns2.blacknightsolutions.com",
106 "ns2.nic.dm",
117 "ns34.cdns.net"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "dnp",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dnp",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.dnp",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "do",
2 "infoURL": "http://www.nic.do/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.do/",
73 "whoisServer": "whois.nic.do",
8 "whoisURL": "http://www.nic.do/whois-h.php3",
94 "nameServers": [
105 "a.lactld.org",
116 "ns.nic.do",
1611 "ns5.nic.do",
1712 "phloem.uoregon.edu"
1813 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1918 "policies": [
2019 {
2120 "type": "idn-disallowed"
00 {
11 "domain": "docs",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "doctor",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.doctor",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.doctor",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "dodge",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "dog",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.dog",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.dog",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "doha",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.doha",
4 "locations": [
5 "Doha",
6 "QA-DA"
7 ],
38 "tags": [
49 "city",
510 "generic",
611 "geo"
712 ],
8 "locations": [
9 "Doha",
10 "QA-DA"
11 ],
12 "whoisServer": "whois.nic.doha",
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "domains",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.domains",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.domains",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "doosan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.삼성",
34 "tags": [
45 "brand",
56 "generic",
67 "withdrawn"
78 ],
8 "whoisServer": "whois.nic.삼성",
99 "policies": [
1010 {
1111 "type": "idn-disallowed"
00 {
11 "domain": "dot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.dot",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/dot/"
56 ],
6 "whoisServer": "whois.nic.dot",
77 "nameServers": [
88 "a0.nic.dot",
99 "a2.nic.dot",
1010 "b0.nic.dot",
1111 "c0.nic.dot"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "download",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.download",
4 "rdapURLs": [
5 "https://rdap.nic.download/"
56 ],
6 "whoisServer": "whois.nic.download",
77 "nameServers": [
88 "ns1.dns.nic.download",
99 "ns2.dns.nic.download",
1212 "ns5.dns.nic.download",
1313 "ns6.dns.nic.download"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/download_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/download_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/download_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/download_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/download_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/download_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/download_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/download_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/download_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/download_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/download_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/download_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/download_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/download_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/download_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/download_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/download_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/download_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/download_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/download_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/download_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/download_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/download_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/download_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/download_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/download_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/download_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/download_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/download_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/download_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/download_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/download_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/download_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/download_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "dr.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "drive",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "dtv",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dtv",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/dtv/"
66 ],
7 "whoisServer": "whois.nic.dtv",
87 "nameServers": [
98 "a0.nic.dtv",
109 "a2.nic.dtv",
1110 "b0.nic.dtv",
1211 "c0.nic.dtv"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "dubai",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.dubai",
4 "rdapURLs": [
5 "https://rdap.nic.dubai/"
6 ],
7 "nameServers": [
8 "gtld.alpha.aridns.net.au",
9 "gtld.beta.aridns.net.au",
10 "gtld.delta.aridns.net.au",
11 "gtld.gamma.aridns.net.au"
712 ],
813 "locations": [
914 "AE-DU",
1015 "Dubai"
1116 ],
12 "whoisServer": "whois.nic.dubai",
13 "nameServers": [
14 "gtld.alpha.aridns.net.au",
15 "gtld.beta.aridns.net.au",
16 "gtld.delta.aridns.net.au",
17 "gtld.gamma.aridns.net.au"
17 "tags": [
18 "city",
19 "generic",
20 "geo"
1821 ],
1922 "policies": [
2023 {
00 {
11 "domain": "duck",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.duck",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/duck/v1/"
56 ],
6 "whoisServer": "whois.nic.duck",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "dunlop",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dunlop",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/dunlop/"
66 ],
7 "whoisServer": "whois.nic.dunlop",
87 "nameServers": [
98 "a0.nic.dunlop",
109 "a2.nic.dunlop",
1110 "b0.nic.dunlop",
1211 "c0.nic.dunlop"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "duns",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.duns",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.duns",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "dupont",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dupont",
4 "rdapURLs": [
5 "https://rdap.nic.dupont/"
66 ],
7 "whoisServer": "whois.nic.dupont",
87 "nameServers": [
98 "ns1.dns.nic.dupont",
109 "ns2.dns.nic.dupont",
1312 "ns5.dns.nic.dupont",
1413 "ns6.dns.nic.dupont"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "durban",
2 "whoisServer": "durban-whois.registry.net.za",
3 "rdapURLs": [
4 "https://rdap.registry.net.za/rdap/"
5 ],
6 "nameServers": [
7 "coza1.dnsnode.net",
8 "ns.coza.net.za",
9 "ns2us.dns.business"
10 ],
11 "locations": [
12 "Durban"
13 ],
214 "tags": [
315 "city",
416 "generic",
517 "geo"
6 ],
7 "locations": [
8 "Durban"
9 ],
10 "whoisServer": "durban-whois.registry.net.za",
11 "nameServers": [
12 "coza1.dnsnode.net",
13 "ns.coza.net.za",
14 "ns2us.dns.business"
1518 ]
1619 }
00 {
11 "domain": "dvag",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dvag",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/dvag/"
66 ],
7 "whoisServer": "whois.nic.dvag",
87 "nameServers": [
98 "a.nic.dvag",
109 "b.nic.dvag",
1110 "c.nic.dvag",
1211 "d.nic.dvag"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "dvr",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.dvr",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/dvr/"
66 ],
7 "whoisServer": "whois.nic.dvr",
87 "nameServers": [
98 "a0.nic.dvr",
109 "a2.nic.dvr",
1110 "b0.nic.dvr",
1211 "c0.nic.dvr"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "dz",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.dz",
73 "nameServers": [
84 "ns-dz.afrinic.net",
128 "ns4.nic.dz",
139 "ns5.nic.dz"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "e164.arpa",
2 "tags": [
3 "closed"
4 ],
52 "whoisServer": "whois.ripe.net",
63 "nameServers": [
74 "ns3.afrinic.net",
85 "ns3.lacnic.net",
96 "ns4.apnic.net",
107 "pri.authdns.ripe.net",
11 "tinnie.arin.net"
8 "rirns.arin.net"
9 ],
10 "tags": [
11 "closed"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "earth",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.earth",
4 "rdapURLs": [
5 "https://rdap.nic.earth/"
56 ],
6 "whoisServer": "whois.nic.earth",
77 "nameServers": [
88 "ns1.dns.nic.earth",
99 "ns2.dns.nic.earth",
1212 "ns5.dns.nic.earth",
1313 "ns6.dns.nic.earth"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "ja",
22 "value": "https://www.iana.org/domains/idn-tables/tables/earth_ja_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "ko",
27 "value": "https://www.iana.org/domains/idn-tables/tables/earth_ko_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "zh",
32 "value": "https://www.iana.org/domains/idn-tables/tables/earth_zh_3.0.xml"
1833 }
1934 ]
2035 }
00 {
11 "domain": "eat",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ec",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.ec",
73 "nameServers": [
84 "a.lactld.org",
95 "n2.nic.ec",
106 "n3.dns.ec"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "eco",
2 "infoURL": "http://nic.eco/",
3 "tags": [
4 "generic"
2 "infoURL": "https://bigroom.eco/",
3 "whoisServer": "whois.nic.eco",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/eco/"
56 ],
6 "whoisServer": "whois.nic.eco",
77 "nameServers": [
88 "a0.nic.eco",
99 "a2.nic.eco",
1010 "b0.nic.eco",
1111 "c0.nic.eco"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "edeka",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/edeka/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.edeka",
109 "a2.nic.edeka",
1110 "b0.nic.edeka",
1211 "c0.nic.edeka"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
77 "ns5.dp47.parklogic.com"
88 ],
99 "wildcards": [
10 "2600:3c02:1::2d4f:f40e",
1011 "72.52.179.175",
1112 "edi.ph"
1213 ]
11 "domain": "edu.af",
22 "nameServers": [
33 "ns.anycast.nic.af",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "edu.au",
2 "infoURL": "http://www.domainname.edu.au/",
2 "infoURL": "https://www.domainname.edu.au/",
33 "nameServers": [
44 "q.au",
55 "r.au",
00 {
11 "domain": "edu.ba",
22 "nameServers": [
3 "bosna.utic.net.ba",
3 "auth03.ns.uu.net",
4 "ns.ba",
45 "sava.utic.net.ba",
56 "una.utic.net.ba"
67 ],
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.nic.bj",
5 "ns2.nic.bj",
6 "pch.nic.bj",
57 "pch.nic.fr"
68 ],
79 "policies": [
00 {
11 "domain": "edu.cc",
22 "nameServers": [
3 "ns.cocca.fr",
4 "ns.coccaregistry.org"
3 "ns1.netdns.co.nz",
4 "ns2.netdns.co.nz"
55 ]
66 }
+0
-11
metadata/edu.cd.json less more
0 {
1 "domain": "edu.cd",
2 "nameServers": [
3 "igubu.saix.net",
4 "ns-root-1.scpt-network.com",
5 "ns-root-2.scpt-network.com",
6 "ns-root-5.scpt-network.com",
7 "sabela.saix.net",
8 "sangoma.saix.net"
9 ]
10 }
11 "domain": "edu.cx",
22 "nameServers": [
33 "ns.anycast.nic.cx",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ]
67 }
11 "domain": "edu.dm",
22 "nameServers": [
33 "ns.blacknightsolutions.com",
4 "ns1.uniregistry.net",
45 "ns2.blacknightsolutions.com",
56 "ns2.nic.dm",
6 "ns34.cdns.net"
7 "ns2.uniregistry.info",
8 "ns3.uniregistry.net",
9 "ns34.cdns.net",
10 "ns4.uniregistry.info"
711 ],
812 "policies": [
913 {
00 {
11 "domain": "edu.es",
22 "nameServers": [
3 "c.nic.es",
34 "fnicdos.rediris.es",
45 "g.nic.es",
56 "h.nic.es",
00 {
11 "domain": "edu.gd",
2 "tags": [
3 "retired"
4 ],
52 "nameServers": [
63 "a.nic.gd",
74 "b.nic.gd",
00 {
11 "domain": "edu.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "edu.hu",
22 "nameServers": [
3 "kubiac.iif.hu",
34 "ns2.iif.hu",
45 "ns2.sztaki.hbone.hu"
56 ],
00 {
11 "domain": "edu",
2 "tags": [
3 "generic",
4 "sponsored"
5 ],
62 "whoisServer": "whois.educause.edu",
73 "nameServers": [
84 "a.edu-servers.net",
1915 "l.edu-servers.net",
2016 "m.edu-servers.net"
2117 ],
18 "tags": [
19 "generic",
20 "sponsored"
21 ],
2222 "policies": [
2323 {
2424 "type": "idn-disallowed"
00 {
11 "domain": "edu.lb",
22 "nameServers": [
3 "magma.aub.edu.lb",
3 "nn.uninett.no",
4 "ns3.seacomnet.com",
5 "ns4.seacomnet.com",
46 "rip.psg.com",
57 "zeina.aub.edu.lb"
68 ],
00 {
11 "domain": "edu.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
6 "ns2.cosmicnepal.com",
76 "ns4.apnic.net",
87 "pch.nnic.np",
98 "shikhar.mos.com.np"
00 {
11 "domain": "edu.ps",
2 "infoURL": "http://www.tonic.to/",
2 "infoURL": "https://www.tonic.to/",
33 "nameServers": [
44 "dns1.gov.ps",
55 "dns3.gov.ps",
22 "nameServers": [
33 "ns1390.ztomy.com",
44 "ns2390.ztomy.com"
5 ],
6 "wildcards": [
7 "141.8.226.59"
85 ]
96 }
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "edu.sb",
22 "nameServers": [
3 "ns.cocca.fr",
3 "ns1.anycastdns.cz",
4 "ns2.anycastdns.cz",
45 "pch.nic.sb"
56 ],
67 "policies": [
00 {
11 "domain": "edu.sn",
22 "nameServers": [
3 "dns.ucad.sn",
43 "ns.nic.sn",
5 "ns.ucad.sn"
4 "ns.ucad.sn",
5 "ns3.cctld.sn"
66 ],
77 "policies": [
88 {
+0
-8
metadata/edu.ss.json less more
0 {
1 "domain": "edu.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "ssnic.anycastdns.cz"
6 ]
7 }
00 {
11 "domain": "edu.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
44 "b.twnic.net.tw",
55 "c.twnic.net.tw",
66 "d.twnic.net.tw",
7 "edudns-a1.edu.tw",
78 "edudns-a2.edu.tw",
89 "edudns-a3.edu.tw",
910 "moemoon.edu.tw",
33 "ns2.dns.ws",
44 "ns3.dns.ws",
55 "ns4.dns.ws",
6 "ns5.dns.ws"
6 "ns5.dns.ws",
7 "ns6.dns.ws",
8 "ns7.dns.ws"
79 ],
810 "wildcards": [
911 "202.4.48.211"
00 {
11 "domain": "education",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.education",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.education",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "ee",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.tld.ee",
73 "nameServers": [
84 "b.tld.ee",
117 "ee.eenet.ee",
128 "ns.tld.ee"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "eg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://lookup.egregistry.eg/english.aspx",
73 "nameServers": [
84 "frcu.eun.eg",
95 "ns5.univie.ac.at",
106 "rip.psg.com"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "email",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.email",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.email",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "email.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "emerck",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/emerck/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.emerck",
109 "a2.nic.emerck",
1110 "b0.nic.emerck",
1211 "c0.nic.emerck"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "da",
21 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_da_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "de",
26 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_de_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "es",
31 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_es_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "hu",
36 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_hu_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "is",
41 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_is_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "lt",
46 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_lt_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "lv",
51 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_lv_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "pl",
56 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_pl_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "sv",
61 "value": "https://www.iana.org/domains/idn-tables/tables/emerck_sv_1.txt"
1762 }
1863 ]
1964 }
00 {
11 "domain": "energy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.energy",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.energy",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
0 {
1 "domain": "enf.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "engineer",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.engineer",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.engineer",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "engineering",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.engineering",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.engineering",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "engineering.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "enterprises",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.enterprises",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.enterprises",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "epson",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.epson",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.epson",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/epson_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "equipment",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.equipment",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.equipment",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "er",
2 "nameServers": [
3 "er.cctld.authdns.ripe.net",
4 "sawanew.noc.net.er",
5 "zaranew.noc.net.er"
6 ],
27 "tags": [
38 "closed",
49 "country",
510 "geo"
6 ],
7 "nameServers": [
8 "er.cctld.authdns.ripe.net",
9 "sawanew.noc.net.er",
10 "zaranew.noc.net.er"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "ericsson",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ericsson",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/ericsson/v1/"
66 ],
7 "whoisServer": "whois.nic.ericsson",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "erni",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.erni",
4 "rdapURLs": [
5 "https://rdap.nic.erni/"
66 ],
7 "whoisServer": "whois.nic.erni",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "es",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.es",
73 "nameServers": [
84 "a.nic.es",
5 "c.nic.es",
96 "f.nic.es",
107 "g.nic.es",
118 "h.nic.es",
129 "ns-es.nic.fr",
1310 "ns1.cesca.es",
1411 "ssdns-tld.nic.cl"
12 ],
13 "tags": [
14 "country",
15 "geo"
1516 ]
1617 }
00 {
11 "domain": "esq",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "estate",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.estate",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.estate",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "estate.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "esurance",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "et",
22 "infoURL": "http://www.ethionet.et/?q=ipservicedomainname",
3 "nameServers": [
4 "a.nic.et",
5 "b.nic.et"
6 ],
37 "tags": [
48 "country",
59 "geo"
6 ],
7 "nameServers": [
8 "a.nic.et",
9 "b.nic.et"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "etisalat",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.centralnic.com",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/etisalat/"
66 ],
7 "whoisServer": "whois.centralnic.com",
87 "nameServers": [
98 "a.nic.etisalat",
109 "b.nic.etisalat",
1110 "c.nic.etisalat",
1211 "d.nic.etisalat"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "eu.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/eu.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "54.153.56.183",
1414 "eu.com"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
00 {
11 "domain": "eu.cr",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "eu.cr"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "eu.gg",
2 "nameServers": [
3 "ns1.dan.com",
4 "ns2.dan.com"
5 ],
26 "tags": [
37 "private"
4 ],
5 "nameServers": [
6 "ns5.myhostadmin.net",
7 "ns6.myhostadmin.net"
88 ]
99 }
00 {
11 "domain": "eu.gp",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "eu.gp"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "eu",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.eu",
73 "nameServers": [
84 "nl.dns.eu",
106 "w.dns.eu",
117 "x.dns.eu",
128 "y.dns.eu"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ],
1414 "policies": [
1515 {
00 {
11 "domain": "eu.ki",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "eu.ki"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "eu.nu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "eu.nu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "eurovision",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.eurovision",
4 "rdapURLs": [
5 "https://rdap.nic.eurovision/"
66 ],
7 "whoisServer": "whois.nic.eurovision",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "eus",
2 "tags": [
3 "generic",
4 "region"
2 "whoisServer": "whois.nic.eus",
3 "rdapURLs": [
4 "https://rdap.nic.eus/"
55 ],
6 "whoisServer": "whois.nic.eus",
76 "nameServers": [
87 "anycast10.irondns.net",
98 "anycast23.irondns.net",
109 "anycast24.irondns.net",
1110 "anycast9.irondns.net"
11 ],
12 "tags": [
13 "generic",
14 "region"
1215 ]
1316 }
00 {
11 "domain": "events",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.events",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.events",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "events.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "everbank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.everbank",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.everbank",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "exchange",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.exchange",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.exchange",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "expert",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.expert",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.expert",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "expert.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "exposed",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.exposed",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.exposed",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "express",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.express",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.express",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "extraspace",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/extraspace/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.extraspace",
109 "a2.nic.extraspace",
1110 "b0.nic.extraspace",
1211 "c0.nic.extraspace"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "fage",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/fage/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.fage",
109 "a2.nic.fage",
1110 "b0.nic.fage",
1211 "c0.nic.fage"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "fail",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.fail",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.fail",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "fairwinds",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fairwinds",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/fairwinds/v1/"
66 ],
7 "whoisServer": "whois.nic.fairwinds",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "faith",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.faith",
4 "rdapURLs": [
5 "https://rdap.nic.faith/"
56 ],
6 "whoisServer": "whois.nic.faith",
77 "nameServers": [
88 "ns1.dns.nic.faith",
99 "ns2.dns.nic.faith",
1212 "ns5.dns.nic.faith",
1313 "ns6.dns.nic.faith"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/faith_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/faith_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/faith_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/faith_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/faith_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/faith_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/faith_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/faith_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/faith_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/faith_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/faith_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/faith_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/faith_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/faith_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/faith_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/faith_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "family",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.family",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.family",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "fan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fan",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.fan",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "fans",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fans",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/fans/"
56 ],
6 "whoisServer": "whois.nic.fans",
77 "nameServers": [
88 "a.nic.fans",
99 "b.nic.fans",
1010 "c.nic.fans",
1111 "d.nic.fans"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "farm",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.farm",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.farm",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "farmers",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.farmers",
4 "rdapURLs": [
5 "https://rdap.nic.farmers/"
66 ],
7 "whoisServer": "whois.nic.farmers",
87 "nameServers": [
98 "ns1.dns.nic.farmers",
109 "ns2.dns.nic.farmers",
1312 "ns5.dns.nic.farmers",
1413 "ns6.dns.nic.farmers"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "fashion",
22 "infoURL": "http://nic.fashion/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fashion",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/fashion/"
56 ],
6 "whoisServer": "whois.nic.fashion",
77 "nameServers": [
88 "dns1.nic.fashion",
99 "dns2.nic.fashion",
1313 "dnsb.nic.fashion",
1414 "dnsc.nic.fashion",
1515 "dnsd.nic.fashion"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "fast",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fast",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/fast/"
66 ],
7 "whoisServer": "whois.nic.fast",
87 "nameServers": [
98 "dns1.nic.fast",
109 "dns2.nic.fast",
1413 "dnsb.nic.fast",
1514 "dnsc.nic.fast",
1615 "dnsd.nic.fast"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "fed.rep.br",
22 "nameServers": [
3 "ns1.nicdumali.presse.ml",
4 "ns2.nicdumali.presse.ml",
5 "ns3.nicdumali.presse.ml"
3 "cdns1.main-hosting.eu",
4 "cdns2.main-hosting.eu"
65 ]
76 }
00 {
11 "domain": "fedex",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fedex",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/fedex/"
66 ],
7 "whoisServer": "whois.nic.fedex",
87 "nameServers": [
98 "a0.nic.fedex",
109 "a2.nic.fedex",
1110 "b0.nic.fedex",
1211 "c0.nic.fedex"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "feedback",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.feedback",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/feedback/"
56 ],
6 "whoisServer": "whois.nic.feedback",
77 "nameServers": [
88 "a.nic.feedback",
99 "b.nic.feedback",
1010 "c.nic.feedback",
1111 "d.nic.feedback"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ferrari",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ferrari",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ferrari/"
66 ],
7 "whoisServer": "whois.nic.ferrari",
87 "nameServers": [
98 "a0.nic.ferrari",
109 "a2.nic.ferrari",
1110 "b0.nic.ferrari",
1211 "c0.nic.ferrari"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ferrero",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ferrero",
4 "rdapURLs": [
5 "https://rdap.nic.ferrero/"
66 ],
7 "whoisServer": "whois.nic.ferrero",
87 "nameServers": [
98 "ns1.dns.nic.ferrero",
109 "ns2.dns.nic.ferrero",
1312 "ns5.dns.nic.ferrero",
1413 "ns6.dns.nic.ferrero"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_da_1.0.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_da_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_de_1.0.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_de_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_es_1.0.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_es_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_fi_1.0.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_fi_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
3942 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_hu_1.0.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_hu_3.0.xml"
4144 },
4245 {
4346 "type": "idn-table",
4447 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_is_1.0.txt"
48 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_is_3.0.xml"
4649 },
4750 {
4851 "type": "idn-table",
4952 "key": "it",
50 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_it_1.0.txt"
53 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_it_3.0.xml"
5154 },
5255 {
5356 "type": "idn-table",
5457 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ja_1.0.txt"
58 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ja_3.0.xml"
5659 },
5760 {
5861 "type": "idn-table",
5962 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ko_1.0.txt"
63 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ko_3.0.xml"
6164 },
6265 {
6366 "type": "idn-table",
6467 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lt_1.0.txt"
68 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lt_3.0.xml"
6669 },
6770 {
6871 "type": "idn-table",
6972 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lv_1.0.txt"
73 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lv_3.0.xml"
7174 },
7275 {
7376 "type": "idn-table",
7477 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_no_1.0.txt"
78 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_no_3.0.xml"
7679 },
7780 {
7881 "type": "idn-table",
7982 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pl_1.0.txt"
83 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pl_3.0.xml"
8184 },
8285 {
8386 "type": "idn-table",
8487 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pt_1.0.txt"
88 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pt_3.0.xml"
8689 },
8790 {
8891 "type": "idn-table",
8992 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ru_1.0.txt"
93 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ru_3.0.xml"
9194 },
9295 {
9396 "type": "idn-table",
9497 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_sv_1.0.txt"
98 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_sv_3.0.xml"
9699 },
97100 {
98101 "type": "idn-table",
99102 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_zh_1.0.txt"
103 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_zh_3.0.xml"
101104 }
102105 ]
103106 }
00 {
11 "domain": "fi",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.fi",
73 "nameServers": [
84 "a.fi",
1410 "g.fi",
1511 "h.fi",
1612 "i.fi"
13 ],
14 "tags": [
15 "country",
16 "geo"
1717 ]
1818 }
00 {
11 "domain": "fiat",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/fiat/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.fiat",
109 "a2.nic.fiat",
1110 "b0.nic.fiat",
1211 "c0.nic.fiat"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "fidelity",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fidelity",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/fidelity/v1/"
66 ],
7 "whoisServer": "whois.nic.fidelity",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "fido",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/fido/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.fido",
109 "a2.nic.fido",
1110 "b0.nic.fido",
1211 "c0.nic.fido"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "film",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.film",
4 "rdapURLs": [
5 "https://rdap.nic.film/"
56 ],
6 "whoisServer": "whois.nic.film",
77 "nameServers": [
88 "a.nic.film",
99 "b.nic.film",
1010 "c.nic.film",
1111 "d.nic.film"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/film_ar_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/film_da_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/film_de_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/film_es_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/film_fi_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "fr",
45 "value": "https://www.iana.org/domains/idn-tables/tables/film_fr_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "he",
50 "value": "https://www.iana.org/domains/idn-tables/tables/film_he_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "hi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/film_hi_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "hu",
60 "value": "https://www.iana.org/domains/idn-tables/tables/film_hu_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "is",
65 "value": "https://www.iana.org/domains/idn-tables/tables/film_is_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "it",
70 "value": "https://www.iana.org/domains/idn-tables/tables/film_it_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "ja",
75 "value": "https://www.iana.org/domains/idn-tables/tables/film_ja_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "ko",
80 "value": "https://www.iana.org/domains/idn-tables/tables/film_ko_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "lt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/film_lt_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "lv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/film_lv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "nl",
95 "value": "https://www.iana.org/domains/idn-tables/tables/film_nl_3.0.xml"
96 },
97 {
98 "type": "idn-table",
99 "key": "no",
100 "value": "https://www.iana.org/domains/idn-tables/tables/film_no_3.0.xml"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/film_pl_3.0.xml"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/film_pt_3.0.xml"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/film_ru_3.0.xml"
116 },
117 {
118 "type": "idn-table",
119 "key": "sv",
120 "value": "https://www.iana.org/domains/idn-tables/tables/film_sv_3.0.xml"
121 },
122 {
123 "type": "idn-table",
124 "key": "zh",
125 "value": "https://www.iana.org/domains/idn-tables/tables/film_zh_3.0.xml"
16126 }
17127 ]
18128 }
00 {
11 "domain": "final",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.gtlds.nic.br",
4 "rdapURLs": [
5 "https://rdap.gtlds.nic.br/"
56 ],
6 "whoisServer": "whois.gtlds.nic.br",
77 "nameServers": [
88 "a.dns.br",
99 "b.dns.br",
1111 "d.dns.br",
1212 "e.dns.br",
1313 "f.dns.br"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "finance",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.finance",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.finance",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "finance.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "financial",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.financial",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.financial",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "financial.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "fire",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fire",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/fire/"
66 ],
7 "whoisServer": "whois.nic.fire",
87 "nameServers": [
98 "dns1.nic.fire",
109 "dns2.nic.fire",
1413 "dnsb.nic.fire",
1514 "dnsc.nic.fire",
1615 "dnsd.nic.fire"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "firestone",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.firestone",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.firestone",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/firestone_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "firm.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "firmdale",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.firmdale",
4 "rdapURLs": [
5 "https://rdap.nic.firmdale/"
6 ],
7 "nameServers": [
8 "ns1.nic.firmdale",
9 "ns2.nic.firmdale"
10 ],
311 "tags": [
412 "brand",
513 "generic"
6 ],
7 "whoisServer": "whois.nic.firmdale",
8 "nameServers": [
9 "ns1.nic.firmdale",
10 "ns2.nic.firmdale"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "fish",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.fish",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.fish",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "fish.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "fishing",
22 "infoURL": "http://nic.fishing/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fishing",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/fishing/"
56 ],
6 "whoisServer": "whois.nic.fishing",
77 "nameServers": [
88 "dns1.nic.fishing",
99 "dns2.nic.fishing",
1313 "dnsb.nic.fishing",
1414 "dnsc.nic.fishing",
1515 "dnsd.nic.fishing"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "fishing.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "fit",
22 "infoURL": "http://nic.fit/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fit",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/fit/"
56 ],
6 "whoisServer": "whois.nic.fit",
77 "nameServers": [
88 "dns1.nic.fit",
99 "dns2.nic.fit",
1313 "dnsb.nic.fit",
1414 "dnsc.nic.fit",
1515 "dnsd.nic.fit"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "fitness",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.fitness",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.fitness",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "fitness.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "fj",
2 "infoURL": "http://domains.fj/",
3 "whoisServer": "whois.usp.ac.fj",
4 "nameServers": [
5 "ns1.fj",
6 "ns2.fj",
7 "ns3.fj",
8 "ns4.fj",
9 "ns5.fj"
10 ],
211 "tags": [
312 "country",
413 "geo"
5 ],
6 "whoisServer": "whois.usp.ac.fj",
7 "whoisURL": "http://domains.fj",
8 "nameServers": [
9 "adns1.berkeley.edu",
10 "adns2.berkeley.edu",
11 "auth00.ns.uu.net",
12 "manu.usp.ac.fj",
13 "rip.psg.com",
14 "teri.usp.ac.fj"
1514 ],
1615 "policies": [
1716 {
00 {
11 "domain": "fk",
2 "whoisURL": "http://whois.marcaria.com/",
3 "nameServers": [
4 "ns1.horizon.net.fk",
5 "ns2.horizon.net.fk",
6 "ns3.horizon.net.fk"
7 ],
28 "tags": [
39 "closed",
410 "country",
511 "geo"
6 ],
7 "whoisURL": "http://whois.marcaria.com",
8 "nameServers": [
9 "ns1.horizon.net.fk",
10 "ns2.horizon.net.fk",
11 "ns3.horizon.net.fk"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "flickr",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.flickr",
4 "rdapURLs": [
5 "https://rdap.nic.flickr/"
66 ],
7 "whoisServer": "whois.nic.flickr",
87 "nameServers": [
98 "ns1.dns.nic.flickr",
109 "ns2.dns.nic.flickr",
1312 "ns5.dns.nic.flickr",
1413 "ns6.dns.nic.flickr"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "de",
20 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_de_1.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_de_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "es",
25 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_es_1.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_es_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "ja",
30 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ja_1.0.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ja_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "ko",
35 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ko_1.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ko_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
3942 "key": "ru",
40 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ru_1.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ru_3.0.xml"
4144 },
4245 {
4346 "type": "idn-table",
4447 "key": "zh",
45 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_zh_1.txt"
48 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_zh_3.0.xml"
4649 }
4750 ]
4851 }
00 {
11 "domain": "flights",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.flights",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.flights",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "flights.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "flir",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.flir",
4 "rdapURLs": [
5 "https://rdap.nic.flir/"
66 ],
7 "whoisServer": "whois.nic.flir",
87 "nameServers": [
98 "ns1.dns.nic.flir",
109 "ns2.dns.nic.flir",
1312 "ns5.dns.nic.flir",
1413 "ns6.dns.nic.flir"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "florist",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.florist",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.florist",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "florist.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "flowers",
2 "infoURL": "http://nic.flowers/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.flowers/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/flowers_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "flsmidth",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.ksregistry.net",
34 "tags": [
45 "brand",
56 "generic",
67 "withdrawn"
78 ],
8 "whoisServer": "whois.ksregistry.net",
99 "policies": [
1010 {
1111 "type": "idn-disallowed"
00 {
11 "domain": "fly",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "fm",
2 "infoURL": "https://dot.fm/",
3 "whoisServer": "whois.nic.fm",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/fm/"
6 ],
7 "nameServers": [
8 "a.nic.fm",
9 "b.nic.fm",
10 "c.nic.fm",
11 "d.nic.fm",
12 "e.nic.fm",
13 "f.nic.fm"
14 ],
215 "tags": [
316 "country",
417 "generic",
518 "geo"
6 ],
7 "whoisServer": "whois.nic.fm",
8 "whoisURL": "http://dot.fm/whois.html",
9 "nameServers": [
10 "tld1.ultradns.net",
11 "tld2.ultradns.net",
12 "tld3.ultradns.org",
13 "tld4.ultradns.org",
14 "tld5.ultradns.info",
15 "tld6.ultradns.co.uk"
16 ],
17 "wildcards": [
18 "198.74.54.240"
1919 ],
2020 "policies": [
2121 {
00 {
11 "domain": "fo",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.nic.fo",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/fo/"
55 ],
6 "whoisServer": "whois.nic.fo",
76 "nameServers": [
87 "a.nic.fo",
98 "b.nic.fo",
109 "c.nic.fo",
1110 "d.nic.fo"
11 ],
12 "tags": [
13 "country",
14 "geo"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "foo",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "food",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.food",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/food/v1/"
56 ],
6 "whoisServer": "whois.nic.food",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "foodnetwork",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.foodnetwork",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/foodnetwork/v1/"
66 ],
7 "whoisServer": "whois.nic.foodnetwork",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "football",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.football",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.football",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ford",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ford",
4 "rdapURLs": [
5 "https://rdap.nic.ford/"
66 ],
7 "whoisServer": "whois.nic.ford",
87 "nameServers": [
98 "ns1.dns.nic.ford",
109 "ns2.dns.nic.ford",
1312 "ns5.dns.nic.ford",
1413 "ns6.dns.nic.ford"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/ford_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "fr",
28 "value": "https://www.iana.org/domains/idn-tables/tables/ford_fr_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "pl",
33 "value": "https://www.iana.org/domains/idn-tables/tables/ford_pl_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "ru",
38 "value": "https://www.iana.org/domains/idn-tables/tables/ford_ru_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "sv",
43 "value": "https://www.iana.org/domains/idn-tables/tables/ford_sv_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "zh",
48 "value": "https://www.iana.org/domains/idn-tables/tables/ford_zh_3.0.xml"
1949 }
2050 ]
2151 }
00 {
11 "domain": "forex",
22 "infoURL": "https://bostonivy.co/",
3 "whoisServer": "whois.nic.forex",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.forex",
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "forsale",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.forsale",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.forsale",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "forum",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.forum",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/forum/"
56 ],
6 "whoisServer": "whois.nic.forum",
77 "nameServers": [
88 "a.nic.forum",
99 "b.nic.forum",
1010 "c.nic.forum",
1111 "d.nic.forum"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "foundation",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.foundation",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.foundation",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "fox",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fox",
4 "rdapURLs": [
5 "https://rdap.nic.fox/"
66 ],
7 "whoisServer": "whois.nic.fox",
87 "nameServers": [
98 "ns1.dns.nic.fox",
109 "ns2.dns.nic.fox",
1312 "ns5.dns.nic.fox",
1413 "ns6.dns.nic.fox"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/fox_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/fox_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/fox_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/fox_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/fox_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/fox_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/fox_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/fox_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/fox_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/fox_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/fox_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/fox_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/fox_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/fox_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/fox_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/fox_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "fr",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.fr",
73 "nameServers": [
84 "d.nic.fr",
95 "e.ext.nic.fr",
106 "f.ext.nic.fr",
117 "g.ext.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "free",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.free",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/free/"
56 ],
6 "whoisServer": "whois.nic.free",
77 "nameServers": [
88 "dns1.nic.free",
99 "dns2.nic.free",
1313 "dnsb.nic.free",
1414 "dnsc.nic.free",
1515 "dnsd.nic.free"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "fresenius",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.fresenius",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/fresenius/"
66 ],
7 "whoisServer": "whois.nic.fresenius",
87 "nameServers": [
98 "a.nic.fresenius",
109 "b.nic.fresenius",
1110 "c.nic.fresenius",
1211 "d.nic.fresenius"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "frl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.frl",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/frl/"
66 ],
7 "locations": [
8 "NL-FY"
9 ],
10 "whoisServer": "whois.nic.frl",
117 "nameServers": [
128 "a.nic.frl",
139 "b.nic.frl",
1410 "c.nic.frl",
1511 "d.nic.frl"
1612 ],
13 "locations": [
14 "NL-FY"
15 ],
16 "tags": [
17 "generic",
18 "region"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-table",
2023 "key": "mul-Latn",
21 "value": "https://www.iana.org/domains/idn-tables/tables/frl_latn_1.1.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/frl_latn_1.2.txt"
2225 }
2326 ]
2427 }
00 {
11 "domain": "frogans",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.frogans",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/frogans/"
66 ],
7 "whoisServer": "whois.nic.frogans",
87 "nameServers": [
98 "a0.nic.frogans",
109 "a2.nic.frogans",
1110 "b0.nic.frogans",
1211 "c0.nic.frogans"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "frontdoor",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.frontdoor",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/frontdoor/v1/"
56 ],
6 "whoisServer": "whois.nic.frontdoor",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "frontier",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.frontier",
4 "rdapURLs": [
5 "https://rdap.nic.frontier/"
66 ],
7 "whoisServer": "whois.nic.frontier",
87 "nameServers": [
98 "ns1.dns.nic.frontier",
109 "ns2.dns.nic.frontier",
1312 "ns5.dns.nic.frontier",
1413 "ns6.dns.nic.frontier"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "ftr",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ftr",
4 "rdapURLs": [
5 "https://rdap.nic.ftr/"
66 ],
7 "whoisServer": "whois.nic.ftr",
87 "nameServers": [
98 "ns1.dns.nic.ftr",
109 "ns2.dns.nic.ftr",
1312 "ns5.dns.nic.ftr",
1413 "ns6.dns.nic.ftr"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "fujitsu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/fujitsu_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "fujixerox",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.fujixerox",
34 "tags": [
45 "brand",
56 "generic"
6 ],
7 "whoisServer": "whois.nic.fujixerox",
8 "nameServers": [
9 "ac1.nstld.com",
10 "ac2.nstld.com",
11 "ac3.nstld.com",
12 "ac4.nstld.com"
137 ],
148 "policies": [
159 {
00 {
11 "domain": "fun",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fun",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/fun/"
56 ],
6 "whoisServer": "whois.nic.fun",
77 "nameServers": [
88 "a.nic.fun",
99 "b.nic.fun",
1010 "e.nic.fun",
1111 "f.nic.fun"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "fund",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.fund",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.fund",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "fund.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "furniture",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.furniture",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.furniture",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "furniture.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "futbol",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.futbol",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.futbol",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "futbol.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "fyi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.fyi",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.fyi",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ga",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dot.ga",
73 "nameServers": [
84 "a.ns.ga",
95 "b.ns.ga",
106 "c.ns.ga",
117 "d.ns.ga"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "gal",
2 "tags": [
3 "generic",
4 "geo",
5 "region"
2 "whoisServer": "whois.nic.gal",
3 "rdapURLs": [
4 "https://rdap.nic.gal/"
65 ],
7 "locations": [
8 "ES-GA"
9 ],
10 "whoisServer": "whois.nic.gal",
116 "nameServers": [
127 "anycast10.irondns.net",
138 "anycast23.irondns.net",
149 "anycast24.irondns.net",
1510 "anycast9.irondns.net"
11 ],
12 "locations": [
13 "ES-GA"
14 ],
15 "tags": [
16 "generic",
17 "geo",
18 "region"
1619 ]
1720 }
00 {
11 "domain": "gallery",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.gallery",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.gallery",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "gallery.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "gallo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gallo",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/gallo/v1/"
66 ],
7 "whoisServer": "whois.nic.gallo",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "gallup",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gallup",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/gallup/"
66 ],
7 "whoisServer": "whois.nic.gallup",
87 "nameServers": [
98 "a0.nic.gallup",
109 "a2.nic.gallup",
1110 "b0.nic.gallup",
1211 "c0.nic.gallup"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "game",
2 "infoURL": "http://nic.game/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.game/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/game_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "games",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.games",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.games",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "gap",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gap",
4 "rdapURLs": [
5 "https://rdap.nic.gap/"
66 ],
7 "whoisServer": "whois.nic.gap",
87 "nameServers": [
98 "ns1.dns.nic.gap",
109 "ns2.dns.nic.gap",
1312 "ns5.dns.nic.gap",
1413 "ns6.dns.nic.gap"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/gap_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "garden",
22 "infoURL": "http://nic.garden/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.garden",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/garden/"
56 ],
6 "whoisServer": "whois.nic.garden",
77 "nameServers": [
88 "dns1.nic.garden",
99 "dns2.nic.garden",
1313 "dnsb.nic.garden",
1414 "dnsc.nic.garden",
1515 "dnsd.nic.garden"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "gay",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.gay",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/gay/"
56 ],
6 "whoisServer": "whois.nic.gay",
77 "nameServers": [
88 "a.nic.gay",
99 "b.nic.gay",
1010 "c.nic.gay",
1111 "d.nic.gay"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "gb.com",
2 "whoisServer": "whois.centralnic.com",
3 "nameServers": [
4 "ns-cloud-a1.googledomains.com",
5 "ns-cloud-a2.googledomains.com",
6 "ns-cloud-a3.googledomains.com",
7 "ns-cloud-a4.googledomains.com"
8 ],
29 "tags": [
310 "private"
4 ],
5 "whoisServer": "whois.centralnic.com",
6 "nameServers": [
7 "ns71.domaincontrol.com",
8 "ns72.domaincontrol.com"
911 ]
1012 }
00 {
11 "domain": "gb",
2 "nameServers": [
3 "ns.uu.net",
4 "ns0.ja.net",
5 "ns4.ja.net"
6 ],
27 "tags": [
38 "closed",
49 "country",
510 "geo"
6 ],
7 "nameServers": [
8 "ns.uu.net",
9 "ns0.ja.net",
10 "ns4.ja.net"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "gb.net",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/gb.net/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "gbiz",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "gd",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.nic.gd",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/gd/"
55 ],
6 "whoisServer": "whois.nic.gd",
76 "nameServers": [
87 "a.nic.gd",
98 "b.nic.gd",
109 "c.nic.gd",
1110 "d.nic.gd"
11 ],
12 "tags": [
13 "country",
14 "geo"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "gdn",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
6 ],
73 "whoisServer": "whois.nic.gdn",
84 "nameServers": [
95 "ns1.nic.gdn",
106 "ns3.nic.gdn",
117 "ns4.nic.gdn"
8 ],
9 "tags": [
10 "brand",
11 "generic"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "ge",
2 "infoURL": "http://www.nic.net.ge/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://nic.ge/",
73 "whoisServer": "whois.nic.ge",
8 "whoisURL": "http://www.registration.ge/",
94 "nameServers": [
105 "ge.hostmaster.ua",
116 "ns.nic.ge",
138 "ns2.nic.fr",
149 "ns2.nic.ge"
1510 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1615 "policies": [
1716 {
1817 "type": "idn-disallowed"
00 {
11 "domain": "gea",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.gea",
4 "rdapURLs": [
5 "https://rdap.nic.gea/"
6 ],
7 "nameServers": [
8 "a.dns.nic.gea",
9 "m.dns.nic.gea",
10 "n.dns.nic.gea"
11 ],
312 "tags": [
413 "brand",
514 "generic"
6 ],
7 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.gea",
10 "a2.nic.gea",
11 "b0.nic.gea",
12 "c0.nic.gea"
1315 ],
1416 "policies": [
1517 {
00 {
11 "domain": "gen.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "gent",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.gent",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/gent/"
5 ],
6 "nameServers": [
7 "a.nic.gent",
8 "b.nic.gent",
9 "c.nic.gent",
10 "d.nic.gent"
611 ],
712 "locations": [
813 "Gent",
914 "Ghent"
1015 ],
11 "whoisServer": "whois.nic.gent",
12 "nameServers": [
13 "a.nic.gent",
14 "b.nic.gent",
15 "c.nic.gent",
16 "d.nic.gent"
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ]
1821 }
00 {
11 "domain": "genting",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.genting",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/genting/v1/"
56 ],
6 "whoisServer": "whois.nic.genting",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
0 {
1 "domain": "geo.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "george",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.george",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/george/v1/"
66 ],
7 "whoisServer": "whois.nic.george",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "gf",
2 "infoURL": "https://www.dom-enic.com/",
3 "whoisServer": "whois.mediaserv.net",
4 "nameServers": [
5 "ns1-gp.mediaserv.net",
6 "ns1-mq.mediaserv.net"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.mediaserv.net",
7 "whoisURL": "https://www.dom-enic.com/whois.html",
8 "nameServers": [
9 "ns1-gp.mediaserv.net",
10 "ns1-mq.mediaserv.net"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "gg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.gg",
73 "nameServers": [
84 "c.ci-servers.org",
95 "dns1.nominetdns.uk",
10 "e.ci-servers.gg",
11 "f.ci-servers.je",
12 "ns0.ja.net",
13 "ns99.dns.net.nz"
6 "dns2.nominetdns.uk",
7 "dns3.nominetdns.uk",
8 "dns4.nominetdns.uk",
9 "e.ci-servers.net"
10 ],
11 "tags": [
12 "country",
13 "geo"
1414 ],
1515 "policies": [
1616 {
00 {
11 "domain": "ggee",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ggee",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.ggee",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "gh",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisURL": "http://www.nic.gh/customer/search_c.htm",
83 "nameServers": [
94 "ns.dns.br",
105 "ns1.nic.gh",
116 "ns2.nic.gh"
7 ],
8 "tags": [
9 "closed",
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "gi",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois2.afilias-grs.net",
73 "nameServers": [
84 "a0.cctld.afilias-nst.info",
128 "c0.cctld.afilias-nst.info",
139 "d0.cctld.afilias-nst.org"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "gift",
2 "infoURL": "http://nic.gift/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.gift/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/gift_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "gifts",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.gifts",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.gifts",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "gives",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.gives",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.gives",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "giving",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.giving",
4 "rdapURLs": [
5 "https://rdap.nic.giving/"
56 ],
6 "whoisServer": "whois.nic.giving",
77 "nameServers": [
88 "a.nic.giving",
99 "b.nic.giving",
1010 "c.nic.giving",
1111 "d.nic.giving"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "gl",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.gl",
73 "nameServers": [
84 "a.nuuk.nic.gl",
95 "d.nic.gl",
10 "ns.cocca.fr"
6 "ns1.anycastdns.cz",
7 "ns2.anycastdns.cz"
8 ],
9 "tags": [
10 "country",
11 "geo"
1112 ]
1213 }
00 {
11 "domain": "glade",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.glade",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/glade/v1/"
66 ],
7 "whoisServer": "whois.nic.glade",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "glass",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.glass",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.glass",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "gle",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "global",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.global",
3 "rdapURLs": [
4 "https://rdap.afilias-srs.net/rdap/global/"
45 ],
5 "whoisServer": "whois.nic.global",
66 "nameServers": [
77 "a0.nic.global",
88 "a2.nic.global",
99 "b0.nic.global",
1010 "c0.nic.global"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "globo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.gtlds.nic.br",
4 "rdapURLs": [
5 "https://rdap.gtlds.nic.br/"
66 ],
7 "whoisServer": "whois.gtlds.nic.br",
87 "nameServers": [
98 "a.dns.br",
109 "b.dns.br",
1211 "d.dns.br",
1312 "e.dns.br",
1413 "f.dns.br"
14 ],
15 "tags": [
16 "brand",
17 "generic"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "gm",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.gm/htmlpages/whois.htm",
73 "nameServers": [
84 "ns-gm.afrinic.net",
95 "ns1.nic.gm",
106 "ns2.nic.gm"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "gmail",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "gmbh",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.gmbh",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.gmbh",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "gmo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "gmx",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmx",
4 "rdapURLs": [
5 "https://rdap.nic.gmx/"
66 ],
7 "whoisServer": "whois.nic.gmx",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "gn",
2 "nameServers": [
3 "fork.sth.dnsnode.net",
4 "ns-gn.afrinic.net",
5 "rip.psg.com"
6 ],
27 "tags": [
38 "closed",
49 "country",
510 "geo"
6 ],
7 "nameServers": [
8 "fork.sth.dnsnode.net",
9 "ns-gn.afrinic.net",
10 "rip.psg.com"
1111 ],
1212 "policies": [
1313 {
22 "nameServers": [
33 "ns1390.ztomy.com",
44 "ns2390.ztomy.com"
5 ],
6 "wildcards": [
7 "141.8.226.59"
85 ]
96 }
00 {
11 "domain": "gob.es",
22 "nameServers": [
3 "c.nic.es",
34 "fnicdos.rediris.es",
45 "g.nic.es",
56 "h.nic.es",
00 {
11 "domain": "godaddy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/godaddy/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.godaddy",
109 "a2.nic.godaddy",
1110 "b0.nic.godaddy",
1211 "c0.nic.godaddy"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_ar_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "be",
26 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_be_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bg",
31 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_bg_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "bs",
36 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "da",
41 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_da_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "de",
46 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_de_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "es",
51 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_es_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "fi",
56 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_fi_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "fr",
61 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_fr_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "hi",
66 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_hi_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "hu",
71 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_hu_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "is",
76 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_is_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "it",
81 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_it_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ko",
86 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_ko_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "lt",
91 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_lt_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "lv",
96 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_lv_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "mk",
101 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_mk_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pl",
106 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_pl_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "pt",
111 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_pt_1.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "ru",
116 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_ru_1.txt"
117 },
118 {
119 "type": "idn-table",
120 "key": "sr",
121 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_sr_1.txt"
122 },
123 {
124 "type": "idn-table",
125 "key": "sr-ME",
126 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_sr-me_1.txt"
127 },
128 {
129 "type": "idn-table",
130 "key": "sv",
131 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_sv_1.txt"
132 },
133 {
134 "type": "idn-table",
135 "key": "uk",
136 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_uk_1.txt"
137 },
138 {
139 "type": "idn-table",
140 "key": "zh-CN",
141 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_zh-cn_4.0.txt"
142 },
143 {
144 "type": "idn-table",
145 "key": "zh-TW",
146 "value": "https://www.iana.org/domains/idn-tables/tables/godaddy_zh-tw_4.0.txt"
17147 }
18148 ]
19149 }
00 {
11 "domain": "gold",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.gold",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.gold",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "goldpoint",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.goldpoint",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.goldpoint",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "golf",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.golf",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.golf",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "goo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "goodhands",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "goodyear",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.goodyear",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/goodyear/"
66 ],
7 "whoisServer": "whois.nic.goodyear",
87 "nameServers": [
98 "a0.nic.goodyear",
109 "a2.nic.goodyear",
1110 "b0.nic.goodyear",
1211 "c0.nic.goodyear"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "goog",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "google",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "gop",
2 "infoURL": "http://nic.gop/",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.join.gop/",
3 "whoisServer": "whois.nic.gop",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/gop/"
56 ],
6 "whoisServer": "whois.nic.gop",
77 "nameServers": [
88 "dns1.nic.gop",
99 "dns2.nic.gop",
1414 "dnsc.nic.gop",
1515 "dnsd.nic.gop"
1616 ],
17 "tags": [
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-disallowed",
00 {
11 "domain": "got",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.got",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/got/"
66 ],
7 "whoisServer": "whois.nic.got",
87 "nameServers": [
98 "dns1.nic.got",
109 "dns2.nic.got",
1413 "dnsb.nic.got",
1514 "dnsc.nic.got",
1615 "dnsd.nic.got"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
+0
-11
metadata/gouv.cd.json less more
0 {
1 "domain": "gouv.cd",
2 "nameServers": [
3 "igubu.saix.net",
4 "ns-root-1.scpt-network.net",
5 "ns-root-2.scpt-network.net",
6 "ns-root-5.scpt-network.net",
7 "sabela.saix.net",
8 "sangoma.saix.net"
9 ]
10 }
00 {
11 "domain": "gouv.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
11 "domain": "gov.af",
22 "nameServers": [
33 "ns.anycast.nic.af",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "gov.ba",
22 "nameServers": [
3 "bosna.utic.net.ba",
3 "auth03.ns.uu.net",
4 "ns.ba",
45 "sava.utic.net.ba",
56 "una.utic.net.ba"
67 ],
00 {
11 "domain": "gov.co",
2 "nameServers": [
3 "ns-1462.awsdns-54.org",
4 "ns-1823.awsdns-35.co.uk",
5 "ns-479.awsdns-59.com",
6 "ns-943.awsdns-53.net"
7 ],
82 "policies": [
93 {
104 "type": "idn-disallowed"
11 "domain": "gov.cx",
22 "nameServers": [
33 "ns.anycast.nic.cx",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
11 "domain": "gov.dm",
22 "nameServers": [
33 "ns.blacknightsolutions.com",
4 "ns1.uniregistry.net",
45 "ns2.blacknightsolutions.com",
56 "ns2.nic.dm",
6 "ns34.cdns.net"
7 "ns2.uniregistry.info",
8 "ns3.uniregistry.net",
9 "ns34.cdns.net",
10 "ns4.uniregistry.info"
711 ],
812 "policies": [
913 {
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ],
87 "policies": [
98 {
66 "petra.nic.gov.jo",
77 "rip.psg.com"
88 ],
9 "wildcards": [
10 "193.188.66.238"
11 ],
129 "policies": [
1310 {
1411 "type": "idn-disallowed"
00 {
11 "domain": "gov",
2 "tags": [
3 "generic",
4 "sponsored"
5 ],
62 "whoisServer": "whois.dotgov.gov",
73 "nameServers": [
84 "a.gov-servers.net",
106 "c.gov-servers.net",
117 "d.gov-servers.net"
128 ],
9 "tags": [
10 "generic",
11 "sponsored"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "gov.lb",
22 "nameServers": [
3 "magma.aub.edu.lb",
3 "nn.uninett.no",
4 "ns3.seacomnet.com",
5 "ns4.seacomnet.com",
46 "rip.psg.com",
57 "zeina.aub.edu.lb"
68 ],
11 "domain": "gov.mg",
22 "nameServers": [
33 "ns.gov.mg",
4 "ns1.gov.mg",
45 "ns2.gov.mg"
56 ],
67 "policies": [
11 "domain": "gov.mr",
22 "nameServers": [
33 "dns.mauritania.mr",
4 "dns2.mauritania.mr",
5 "ns-mr.afrinic.net",
6 "ns-mr.nic.fr",
7 "ns-mr.nic.tn",
8 "ns1.nic.mr"
4 "dns2.mauritania.mr"
95 ],
106 "policies": [
117 {
00 {
11 "domain": "gov.np",
2 "infoURL": "http://nitc.gov.np",
2 "infoURL": "https://nitc.gov.np/",
33 "nameServers": [
44 "koshi.nitc.gov.np",
55 "mechi.nitc.gov.np",
22 "nameServers": [
33 "ns1390.ztomy.com",
44 "ns2390.ztomy.com"
5 ],
6 "wildcards": [
7 "141.8.226.59"
85 ],
96 "policies": [
107 {
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "gov.sb",
22 "nameServers": [
3 "ns.cocca.fr",
3 "ns1.anycastdns.cz",
4 "ns2.anycastdns.cz",
45 "pch.nic.sb"
56 ],
67 "policies": [
11 "domain": "gov.tl",
22 "nameServers": [
33 "ns.anycast.nic.tl",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "gov.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
33 "ns2.dns.ws",
44 "ns3.dns.ws",
55 "ns4.dns.ws",
6 "ns5.dns.ws"
6 "ns5.dns.ws",
7 "ns6.dns.ws",
8 "ns7.dns.ws"
79 ],
810 "policies": [
911 {
00 {
11 "domain": "gp",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "https://www.nic.gp/",
63 "whoisServer": "whois.nic.gp",
7 "whoisURL": "https://www.dom-enic.com/whois.html",
84 "nameServers": [
95 "a.lactld.org",
106 "gp.cctld.authdns.ripe.net",
128 "ns1.nic.gp",
139 "ns2.nic.gp"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "gq",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dominio.gq",
73 "nameServers": [
84 "a.ns.gq",
95 "b.ns.gq",
106 "c.ns.gq",
117 "d.ns.gq"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "gr.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/gr.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "72.34.38.11"
1414 ],
15 "tags": [
16 "private"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
00 {
11 "domain": "gr",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "https://grweb.ics.forth.gr/Whois?lang=en",
73 "nameServers": [
84 "estia.ics.forth.gr",
117 "gr-d.ics.forth.gr",
128 "gr-m.ics.forth.gr",
139 "grdns.ics.forth.gr"
10 ],
11 "tags": [
12 "country",
13 "geo"
1414 ]
1515 }
00 {
11 "domain": "grainger",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.grainger",
4 "rdapURLs": [
5 "https://rdap.nic.grainger/"
66 ],
7 "whoisServer": "whois.nic.grainger",
87 "nameServers": [
98 "ns1.dns.nic.grainger",
109 "ns2.dns.nic.grainger",
1312 "ns5.dns.nic.grainger",
1413 "ns6.dns.nic.grainger"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/grainger_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "graphics",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.graphics",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.graphics",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "gratis",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.gratis",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.gratis",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "green",
2 "infoURL": "http://nic.green/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.green/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/green/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.green",
99 "a2.nic.green",
1010 "b0.nic.green",
1111 "c0.nic.green"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/green_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/green_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/green_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/green_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/green_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/green_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/green_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/green_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/green_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/green_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/green_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/green_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/green_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/green_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/green_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/green_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/green_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/green_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/green_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/green_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/green_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/green_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/green_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/green_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/green_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/green_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "gripe",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.gripe",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.gripe",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "grocery",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/grocery/v1/"
55 ],
66 "nameServers": [
77 "ac1.nstld.com",
99 "ac3.nstld.com",
1010 "ac4.nstld.com"
1111 ],
12 "tags": [
13 "generic"
14 ],
1215 "policies": [
1316 {
1417 "type": "idn-disallowed"
00 {
11 "domain": "group",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.group",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.group",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "gs",
2 "whoisServer": "whois.nic.gs",
3 "nameServers": [
4 "ns.anycast.nic.gs",
5 "ns1.anycastdns.cz",
6 "ns2.anycastdns.cz"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.nic.gs",
7 "nameServers": [
8 "ns.anycast.nic.gs",
9 "ns.cocca.fr"
1011 ],
1112 "policies": [
1213 {
00 {
11 "domain": "gt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.gt/",
73 "nameServers": [
84 "a.lactld.org",
128 "pch.gt",
139 "ssdns-tld.nic.cl"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "gu",
2 "infoURL": "http://gadao.gov.gu",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "http://gadao.gov.gu/",
73 "whoisURL": "http://gadao.gov.gu/domainsearch.htm",
84 "nameServers": [
95 "gold.uog.edu",
117 "gu.cctld.authdns.ripe.net",
128 "phloem.uoregon.edu"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "guardian",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/guardian/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "gucci",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.gucci",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/gucci/"
6 ],
7 "nameServers": [
8 "dns1.nic.gucci",
9 "dns2.nic.gucci",
10 "dns3.nic.gucci",
11 "dns4.nic.gucci",
12 "dnsa.nic.gucci",
13 "dnsb.nic.gucci",
14 "dnsc.nic.gucci",
15 "dnsd.nic.gucci"
16 ],
317 "tags": [
418 "brand",
519 "generic"
620 ],
7 "whoisServer": "whois.nic.gucci",
8 "nameServers": [
9 "ns1.dns.nic.gucci",
10 "ns2.dns.nic.gucci",
11 "ns3.dns.nic.gucci",
12 "ns4.dns.nic.gucci",
13 "ns5.dns.nic.gucci",
14 "ns6.dns.nic.gucci"
15 ],
1621 "policies": [
22 {
23 "type": "idn-table",
24 "key": "ar",
25 "value": "https://www.iana.org/domains/idn-tables/tables/gucci_ar_1.0.txt"
26 },
1727 {
1828 "type": "idn-table",
1929 "key": "da",
4353 "type": "idn-table",
4454 "key": "is",
4555 "value": "https://www.iana.org/domains/idn-tables/tables/gucci_is_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "it",
60 "value": "https://www.iana.org/domains/idn-tables/tables/gucci_it_1.txt"
4661 },
4762 {
4863 "type": "idn-table",
00 {
11 "domain": "guge",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "guide",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.guide",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.guide",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "guitars",
2 "infoURL": "http://nic.guitars/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.guitars/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/guitars_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "guitars.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "guru",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.guru",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.guru",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "guru.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "gw",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://nic.gw/en/whois/",
73 "nameServers": [
84 "gw01.dns.pt",
95 "gw03.dns.pt",
106 "h.dns.pt"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "gy",
2 "whoisServer": "whois.registry.gy",
3 "nameServers": [
4 "a.lactld.org",
5 "gy-ns.anycast.pch.net"
6 ],
27 "tags": [
38 "country",
49 "geo"
5 ],
6 "whoisServer": "whois.registry.gy",
7 "nameServers": [
8 "a.lactld.org",
9 "gy-ns.anycast.pch.net",
10 "ns.cocca.fr"
1110 ],
1211 "policies": [
1312 {
00 {
11 "domain": "hair",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.hair",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/hair/"
56 ],
6 "whoisServer": "whois.nic.hair",
77 "nameServers": [
88 "a.nic.hair",
99 "b.nic.hair",
1010 "c.nic.hair",
1111 "d.nic.hair"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "hamburg",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.hamburg",
3 "rdapURLs": [
4 "https://rdap.nic.hamburg/v1/"
5 ],
6 "nameServers": [
7 "a.dns.nic.hamburg",
8 "m.dns.nic.hamburg",
9 "n.dns.nic.hamburg"
610 ],
711 "locations": [
812 "Hamburg",
913 "DE-HH"
1014 ],
11 "whoisServer": "whois.nic.hamburg",
12 "nameServers": [
13 "a.dns.nic.hamburg",
14 "m.dns.nic.hamburg",
15 "n.dns.nic.hamburg"
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "hangout",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "haus",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.haus",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.haus",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "hbo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hbo",
4 "rdapURLs": [
5 "https://rdap.nic.hbo/"
66 ],
7 "whoisServer": "whois.nic.hbo",
87 "nameServers": [
98 "ns1.dns.nic.hbo",
109 "ns2.dns.nic.hbo",
1312 "ns5.dns.nic.hbo",
1413 "ns6.dns.nic.hbo"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "hdfc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hdfc",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/hdfc/"
66 ],
7 "whoisServer": "whois.nic.hdfc",
87 "nameServers": [
98 "a0.nic.hdfc",
109 "a2.nic.hdfc",
1110 "b0.nic.hdfc",
1211 "c0.nic.hdfc"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hdfcbank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hdfcbank",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/hdfcbank/"
66 ],
7 "whoisServer": "whois.nic.hdfcbank",
87 "nameServers": [
98 "a0.nic.hdfcbank",
109 "a2.nic.hdfcbank",
1110 "b0.nic.hdfcbank",
1211 "c0.nic.hdfcbank"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "health",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.health",
4 "rdapURLs": [
5 "https://rdap.nic.health/"
56 ],
6 "whoisServer": "whois.nic.health",
77 "nameServers": [
88 "ns1.dns.nic.health",
99 "ns2.dns.nic.health",
1212 "ns5.dns.nic.health",
1313 "ns6.dns.nic.health"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/health_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "healthcare",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.healthcare",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.healthcare",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "help",
2 "infoURL": "http://nic.help/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.help/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/help_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "helsinki",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.helsinki",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/helsinki/"
56 ],
6 "whoisServer": "whois.nic.helsinki",
77 "nameServers": [
88 "a0.nic.helsinki",
99 "a2.nic.helsinki",
1010 "b0.nic.helsinki",
1111 "c0.nic.helsinki"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "fi",
20 "value": "https://www.iana.org/domains/idn-tables/tables/helsinki_fi_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "sv",
25 "value": "https://www.iana.org/domains/idn-tables/tables/helsinki_sv_1.txt"
1626 }
1727 ]
1828 }
00 {
11 "domain": "here",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hermes",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/hermes/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.hermes",
109 "a2.nic.hermes",
1110 "b0.nic.hermes",
1211 "c0.nic.hermes"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hgtv",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hgtv",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/hgtv/v1/"
66 ],
7 "whoisServer": "whois.nic.hgtv",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hiphop",
2 "infoURL": "http://nic.hiphop",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.hiphop/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/hiphop_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "hiphop.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "hisamitsu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/hisamitsu_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "hitachi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hiv",
2 "infoURL": "http://nic.hiv/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.hiv/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "hiv.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "hk.com",
2 "tags": [
3 "private"
4 ],
52 "whoisServer": "whois.registry.hk.com",
63 "nameServers": [
74 "a.udrtld.net",
107 "dns7.cloudns.net",
118 "dns8.cloudns.net"
129 ],
10 "tags": [
11 "private"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "hk",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.hkirc.hk",
73 "nameServers": [
84 "c.hkirc.net.hk",
139 "x.hkirc.net.hk",
1410 "y.hkirc.net.hk",
1511 "z.hkirc.net.hk"
12 ],
13 "tags": [
14 "country",
15 "geo"
1616 ]
1717 }
00 {
11 "domain": "hkt",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hkt",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/hkt/"
66 ],
7 "whoisServer": "whois.nic.hkt",
87 "nameServers": [
98 "a0.nic.hkt",
109 "a2.nic.hkt",
1110 "b0.nic.hkt",
1211 "c0.nic.hkt"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "zh-CN",
21 "value": "https://www.iana.org/domains/idn-tables/tables/hkt_zh-cn_4.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-TW",
26 "value": "https://www.iana.org/domains/idn-tables/tables/hkt_zh-tw_4.0.txt"
1727 }
1828 ]
1929 }
00 {
11 "domain": "hm",
22 "infoURL": "http://www.registry.hm/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.registry.hm",
84 "nameServers": [
95 "ns1.registry.hm",
106 "ns2.registry.hm",
117 "ns3.registry.hm"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "hn",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.hn",
73 "nameServers": [
84 "a.lactld.org",
95 "nicmx-anycast.rds.org.hn",
106 "pch-anycast.rds.org.hn"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "hockey",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.hockey",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.hockey",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "holdings",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.holdings",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.holdings",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "holiday",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.holiday",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.holiday",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "homedepot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.homedepot",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/homedepot/"
66 ],
7 "whoisServer": "whois.nic.homedepot",
87 "nameServers": [
98 "a0.nic.homedepot",
109 "a2.nic.homedepot",
1110 "b0.nic.homedepot",
1211 "c0.nic.homedepot"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "homegoods",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.homegoods",
4 "rdapURLs": [
5 "https://rdap.nic.homegoods/"
66 ],
7 "whoisServer": "whois.nic.homegoods",
87 "nameServers": [
98 "ns1.dns.nic.homegoods",
109 "ns2.dns.nic.homegoods",
1312 "ns5.dns.nic.homegoods",
1413 "ns6.dns.nic.homegoods"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "homes",
2 "infoURL": "http://nic.homes/",
2 "infoURL": "https://nic.homes/",
3 "whoisServer": "whois.nic.homes",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/homes/"
6 ],
7 "nameServers": [
8 "a.nic.homes",
9 "b.nic.homes",
10 "c.nic.homes",
11 "d.nic.homes"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.homes",
9 "a2.nic.homes",
10 "b0.nic.homes",
11 "c0.nic.homes"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "homesense",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.homesense",
4 "rdapURLs": [
5 "https://rdap.nic.homesense/"
66 ],
7 "whoisServer": "whois.nic.homesense",
87 "nameServers": [
98 "ns1.dns.nic.homesense",
109 "ns2.dns.nic.homesense",
1312 "ns5.dns.nic.homesense",
1413 "ns6.dns.nic.homesense"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "honda",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.honda",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.honda",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/honda_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "honeywell",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.honeywell",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.honeywell",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "horse",
22 "infoURL": "http://nic.horse/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.horse",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/horse/"
56 ],
6 "whoisServer": "whois.nic.horse",
77 "nameServers": [
88 "dns1.nic.horse",
99 "dns2.nic.horse",
1313 "dnsb.nic.horse",
1414 "dnsc.nic.horse",
1515 "dnsd.nic.horse"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "hospital",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.hospital",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.hospital",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "host",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.host",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/host/"
45 ],
5 "whoisServer": "whois.nic.host",
66 "nameServers": [
77 "a.nic.host",
88 "b.nic.host",
99 "e.nic.host",
1010 "f.nic.host"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
3336 {
3437 "type": "idn-table",
3538 "key": "lo",
36 "value": "https://www.iana.org/domains/idn-tables/tables/host_lo_1.1.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/host_lo_2.0.txt"
3740 },
3841 {
3942 "type": "idn-table",
00 {
11 "domain": "hosting",
2 "infoURL": "http://nic.hosting/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.hosting/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/hosting_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "hot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.hot",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/hot/"
56 ],
6 "whoisServer": "whois.nic.hot",
77 "nameServers": [
88 "dns1.nic.hot",
99 "dns2.nic.hot",
1313 "dnsb.nic.hot",
1414 "dnsc.nic.hot",
1515 "dnsd.nic.hot"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "hoteles",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.hoteles",
4 "rdapURLs": [
5 "https://rdap.nic.hoteles/"
56 ],
6 "whoisServer": "whois.nic.hoteles",
77 "nameServers": [
88 "ns1.dns.nic.hoteles",
99 "ns2.dns.nic.hoteles",
1212 "ns5.dns.nic.hoteles",
1313 "ns6.dns.nic.hoteles"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/hoteles_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "hotels",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.hotels",
4 "rdapURLs": [
5 "https://rdap.nic.hotels/"
56 ],
6 "whoisServer": "whois.nic.hotels",
77 "nameServers": [
88 "ns1.dns.nic.hotels",
99 "ns2.dns.nic.hotels",
1212 "ns5.dns.nic.hotels",
1313 "ns6.dns.nic.hotels"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "da",
22 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_da_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "de",
27 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_de_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "es",
32 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_es_3.0.xml"
33 },
34 {
35 "type": "idn-table",
36 "key": "fi",
37 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_fi_3.0.xml"
38 },
39 {
40 "type": "idn-table",
41 "key": "hu",
42 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_hu_3.0.xml"
43 },
44 {
45 "type": "idn-table",
46 "key": "is",
47 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_is_3.0.xml"
48 },
49 {
50 "type": "idn-table",
51 "key": "ja",
52 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_ja_3.0.xml"
53 },
54 {
55 "type": "idn-table",
56 "key": "ko",
57 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_ko_3.0.xml"
58 },
59 {
60 "type": "idn-table",
61 "key": "lt",
62 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_lt_3.0.xml"
63 },
64 {
65 "type": "idn-table",
66 "key": "lv",
67 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_lv_3.0.xml"
68 },
69 {
70 "type": "idn-table",
71 "key": "no",
72 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_no_3.0.xml"
73 },
74 {
75 "type": "idn-table",
76 "key": "pl",
77 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_pl_3.0.xml"
78 },
79 {
80 "type": "idn-table",
81 "key": "pt",
82 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_pt_3.0.xml"
83 },
84 {
85 "type": "idn-table",
86 "key": "ru",
87 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_ru_3.0.xml"
88 },
89 {
90 "type": "idn-table",
91 "key": "sv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_sv_3.0.xml"
93 },
94 {
95 "type": "idn-table",
96 "key": "zh",
97 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_zh_3.0.xml"
1898 }
1999 ]
20100 }
00 {
11 "domain": "hotmail",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/hotmail/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "house",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.house",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.house",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "house.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "how",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hr",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dns.hr",
73 "nameServers": [
84 "hr-ns-1.carnet.hr",
95 "n.dns.hr",
106 "pch.carnet.hr"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "hsbc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hsbc",
4 "rdapURLs": [
5 "https://rdap.nic.hsbc/"
66 ],
7 "whoisServer": "whois.nic.hsbc",
87 "nameServers": [
98 "ns1.dns.nic.hsbc",
109 "ns2.dns.nic.hsbc",
1312 "ns5.dns.nic.hsbc",
1413 "ns6.dns.nic.hsbc"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_da_1.0.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_da_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_de_1.0.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_de_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_es_1.0.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_es_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_fi_1.0.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_fi_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
3942 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_hu_1.0.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_hu_3.0.xml"
4144 },
4245 {
4346 "type": "idn-table",
4447 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_is_1.0.txt"
48 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_is_3.0.xml"
4649 },
4750 {
4851 "type": "idn-table",
4952 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ja_1.0.txt"
53 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ja_3.0.xml"
5154 },
5255 {
5356 "type": "idn-table",
5457 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ko_1.0.txt"
58 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ko_3.0.xml"
5659 },
5760 {
5861 "type": "idn-table",
5962 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lt_1.0.txt"
63 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lt_3.0.xml"
6164 },
6265 {
6366 "type": "idn-table",
6467 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lv_1.0.txt"
68 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lv_3.0.xml"
6669 },
6770 {
6871 "type": "idn-table",
6972 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_no_1.0.txt"
73 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_no_3.0.xml"
7174 },
7275 {
7376 "type": "idn-table",
7477 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pl_1.0.txt"
78 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pl_3.0.xml"
7679 },
7780 {
7881 "type": "idn-table",
7982 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pt_1.0.txt"
83 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pt_3.0.xml"
8184 },
8285 {
8386 "type": "idn-table",
8487 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ru_1.0.txt"
88 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ru_3.0.xml"
8689 },
8790 {
8891 "type": "idn-table",
8992 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_sv_1.0.txt"
93 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_sv_3.0.xml"
9194 },
9295 {
9396 "type": "idn-table",
9497 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_zh_1.0.txt"
98 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_zh_3.0.xml"
9699 }
97100 ]
98101 }
00 {
11 "domain": "ht",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.ht",
73 "nameServers": [
8 "ns.cocca.fr",
94 "ns1.nic.ht",
105 "ns1.polymtl.ca",
116 "ns3.nic.fr",
127 "pch.nic.ht"
8 ],
9 "tags": [
10 "country",
11 "geo"
1312 ],
1413 "policies": [
1514 {
00 {
11 "domain": "hu.com",
2 "tags": [
3 "private"
4 ],
52 "whoisServer": "whois.centralnic.com",
63 "nameServers": [
74 "ns3.dns.com",
85 "ns4.dns.com"
6 ],
7 "tags": [
8 "private"
99 ]
1010 }
00 {
11 "domain": "hu",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.hu",
73 "nameServers": [
84 "a.hu",
128 "e.hu",
139 "ns-com.nic.hu",
1410 "ns2.nic.fr"
11 ],
12 "tags": [
13 "country",
14 "geo"
1515 ]
1616 }
00 {
11 "domain": "hu.net",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/hu.net/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "hughes",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hughes",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/hughes/"
66 ],
7 "whoisServer": "whois.nic.hughes",
87 "nameServers": [
98 "a0.nic.hughes",
109 "a2.nic.hughes",
1110 "b0.nic.hughes",
1211 "c0.nic.hughes"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "hyatt",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hyatt",
4 "rdapURLs": [
5 "https://rdap.nic.hyatt/"
66 ],
7 "whoisServer": "whois.nic.hyatt",
87 "nameServers": [
98 "ns1.dns.nic.hyatt",
109 "ns2.dns.nic.hyatt",
1312 "ns5.dns.nic.hyatt",
1413 "ns6.dns.nic.hyatt"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/hyatt_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "hyundai",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.hyundai",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.hyundai",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ko",
21 "value": "https://www.iana.org/domains/idn-tables/tables/hyundai_ko_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "ibm",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ibm",
4 "rdapURLs": [
5 "https://rdap.nic.ibm/"
66 ],
7 "whoisServer": "whois.nic.ibm",
87 "nameServers": [
98 "a.nic.ibm",
109 "b.nic.ibm",
1110 "c.nic.ibm",
1211 "d.nic.ibm"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "icbc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.icbc",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/icbc/"
66 ],
7 "whoisServer": "whois.nic.icbc",
87 "nameServers": [
98 "a0.nic.icbc",
109 "a2.nic.icbc",
1110 "b0.nic.icbc",
1211 "c0.nic.icbc"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ice",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ice",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/ice/v1/"
66 ],
7 "whoisServer": "whois.nic.ice",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "icu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.icu",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/icu/"
66 ],
7 "whoisServer": "whois.nic.icu",
87 "nameServers": [
98 "a.nic.icu",
109 "b.nic.icu",
1110 "c.nic.icu",
1211 "d.nic.icu"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "id",
22 "infoURL": "https://pandi.id/",
3 "tags": [
4 "country",
5 "geo"
3 "whoisServer": "whois.id",
4 "rdapURLs": [
5 "https://rdap.pandi.id/rdap/"
66 ],
7 "whoisServer": "whois.id",
87 "nameServers": [
98 "b.dns.id",
109 "c.dns.id",
1110 "d.dns.id",
1211 "e.dns.id",
1312 "ns4.apnic.net"
13 ],
14 "tags": [
15 "country",
16 "geo"
1417 ]
1518 }
00 {
11 "domain": "ie",
22 "infoURL": "https://www.iedr.ie/",
3 "tags": [
4 "country",
5 "geo"
6 ],
7 "whoisServer": "whois.iedr.ie",
3 "whoisServer": "whois.weare.ie",
84 "nameServers": [
95 "b.ns.ie",
106 "c.ns.ie",
139 "h.ns.ie",
1410 "i.ns.ie"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-table",
00 {
11 "domain": "ieee",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ieee",
4 "rdapURLs": [
5 "https://rdap.nic.ieee/"
66 ],
7 "whoisServer": "whois.nic.ieee",
87 "nameServers": [
98 "ns1.dns.nic.ieee",
109 "ns2.dns.nic.ieee",
1312 "ns5.dns.nic.ieee",
1413 "ns6.dns.nic.ieee"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/ieee_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "ifm",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ifm",
4 "rdapURLs": [
5 "https://rdap.nic.ifm/"
66 ],
7 "whoisServer": "whois.nic.ifm",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "iinet",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.aridnrs.net.au",
34 "tags": [
45 "brand",
56 "generic",
67 "withdrawn"
78 ],
8 "whoisServer": "whois.aridnrs.net.au",
99 "policies": [
1010 {
1111 "type": "idn-disallowed"
00 {
11 "domain": "ikano",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ikano",
4 "rdapURLs": [
5 "https://rdap.nic.ikano/v1/"
66 ],
7 "whoisServer": "whois.nic.ikano",
87 "nameServers": [
98 "a.dns.nic.ikano",
109 "m.dns.nic.ikano",
1110 "n.dns.nic.ikano"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "il",
2 "infoURL": "http://www.isoc.org.il/domains/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "https://www.isoc.org.il/domain-name-registry",
83 "whoisServer": "whois.isoc.org.il",
94 "nameServers": [
105 "ilns.ilan.net.il",
1611 "nsb.ns.il",
1712 "nse.ns.il"
1813 ],
14 "tags": [
15 "closed",
16 "country",
17 "geo"
18 ],
1919 "policies": [
2020 {
2121 "type": "idn-table",
00 {
11 "domain": "im",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.im",
73 "nameServers": [
84 "barney.advsys.co.uk",
106 "ns4.ja.net",
117 "pebbles.iom.com"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "imamat",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/imamat/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.imamat",
109 "a2.nic.imamat",
1110 "b0.nic.imamat",
1211 "c0.nic.imamat"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "imdb",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.imdb",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/imdb/"
66 ],
7 "whoisServer": "whois.nic.imdb",
87 "nameServers": [
98 "dns1.nic.imdb",
109 "dns2.nic.imdb",
1413 "dnsb.nic.imdb",
1514 "dnsc.nic.imdb",
1615 "dnsd.nic.imdb"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "immo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.immo",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.immo",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "immobilien",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.immobilien",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.immobilien",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "in-addr.arpa",
2 "tags": [
3 "closed"
4 ],
52 "nameServers": [
63 "a.in-addr-servers.arpa",
74 "b.in-addr-servers.arpa",
107 "e.in-addr-servers.arpa",
118 "f.in-addr-servers.arpa"
129 ],
10 "tags": [
11 "closed"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "in",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
1411 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1516 "policies": [
1617 {
1718 "type": "idn-disallowed"
00 {
11 "domain": "in.net",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/in.net/"
5 ],
36 "nameServers": [
47 "ns1.nic.in.net",
58 "ns2.nic.in.net",
00 {
11 "domain": "inc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.inc",
4 "rdapURLs": [
5 "https://whois.nic.inc/rdap/"
56 ],
6 "whoisServer": "whois.nic.inc",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "industries",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.industries",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.industries",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "industries.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "infiniti",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
4144 "type": "idn-table",
4245 "key": "pt",
4346 "value": "https://www.iana.org/domains/idn-tables/tables/infiniti_pt_1.0.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "zh",
51 "value": "https://www.iana.org/domains/idn-tables/tables/infiniti_zh_1.1.txt"
4452 }
4553 ]
4654 }
00 {
11 "domain": "info.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "info",
2 "infoURL": "http://info.info/",
3 "tags": [
4 "generic"
2 "infoURL": "https://info.info/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/info/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.info.afilias-nst.info",
99 "a2.info.afilias-nst.info",
1212 "c0.info.afilias-nst.info",
1313 "d0.info.afilias-nst.org"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
19 {
20 "type": "idn-table",
21 "key": "ar",
22 "value": "https://www.iana.org/domains/idn-tables/tables/info_ar_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "be",
27 "value": "https://www.iana.org/domains/idn-tables/tables/info_be_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bg",
32 "value": "https://www.iana.org/domains/idn-tables/tables/info_bg_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "bs",
37 "value": "https://www.iana.org/domains/idn-tables/tables/info_bs_1.txt"
38 },
1639 {
1740 "type": "idn-table",
1841 "key": "da",
3053 },
3154 {
3255 "type": "idn-table",
56 "key": "fi",
57 "value": "https://www.iana.org/domains/idn-tables/tables/info_fi_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "fr",
62 "value": "https://www.iana.org/domains/idn-tables/tables/info_fr_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hi",
67 "value": "https://www.iana.org/domains/idn-tables/tables/info_hi_1.txt"
68 },
69 {
70 "type": "idn-table",
3371 "key": "hu",
3472 "value": "https://www.iana.org/domains/idn-tables/tables/info_hu_1.txt"
3573 },
3775 "type": "idn-table",
3876 "key": "is",
3977 "value": "https://www.iana.org/domains/idn-tables/tables/info_is_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "it",
82 "value": "https://www.iana.org/domains/idn-tables/tables/info_it_1.txt"
4083 },
4184 {
4285 "type": "idn-table",
5598 },
5699 {
57100 "type": "idn-table",
101 "key": "mk",
102 "value": "https://www.iana.org/domains/idn-tables/tables/info_mk_1.txt"
103 },
104 {
105 "type": "idn-table",
58106 "key": "pl",
59107 "value": "https://www.iana.org/domains/idn-tables/tables/info_pl_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "pt",
112 "value": "https://www.iana.org/domains/idn-tables/tables/info_pt_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "ru",
117 "value": "https://www.iana.org/domains/idn-tables/tables/info_ru_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr",
122 "value": "https://www.iana.org/domains/idn-tables/tables/info_sr_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sr-ME",
127 "value": "https://www.iana.org/domains/idn-tables/tables/info_sr-me_1.txt"
60128 },
61129 {
62130 "type": "idn-table",
65133 },
66134 {
67135 "type": "idn-table",
136 "key": "uk",
137 "value": "https://www.iana.org/domains/idn-tables/tables/info_uk_1.txt"
138 },
139 {
140 "type": "idn-table",
68141 "key": "zh-CN",
69142 "value": "https://www.iana.org/domains/idn-tables/tables/info_zh-cn_4.0.txt"
143 },
144 {
145 "type": "idn-table",
146 "key": "zh-TW",
147 "value": "https://www.iana.org/domains/idn-tables/tables/info_zh-tw_4.0.txt"
70148 }
71149 ]
72150 }
00 {
11 "domain": "info.ni",
22 "nameServers": [
3 "auth01.ns.uu.net",
43 "dns-ext.nic.cr",
5 "dns.nic.cr",
6 "ns.ibw.com.ni",
74 "ns.ideay.net.ni",
85 "ns.ni",
9 "ns.tmx.com.ni",
106 "ns.uu.net",
11 "ns1.bb-online.net",
127 "ns2.ni",
138 "ns3.ni"
149 ],
00 {
11 "domain": "info.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "info.nu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "info.nu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "info.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "ing",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ink",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.ink",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/ink/"
45 ],
5 "whoisServer": "whois.nic.ink",
66 "nameServers": [
77 "a.nic.ink",
88 "b.nic.ink",
99 "c.nic.ink",
1010 "d.nic.ink"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "ink.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "institute",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.institute",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.institute",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "insurance",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.insurance",
4 "rdapURLs": [
5 "https://rdap.nic.insurance/"
56 ],
6 "whoisServer": "whois.nic.insurance",
77 "nameServers": [
88 "a.nic.insurance",
99 "b.nic.insurance",
1212 "e.nic.insurance",
1313 "f.nic.insurance"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
00 {
11 "domain": "insure",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.insure",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.insure",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "int",
2 "tags": [
3 "generic",
4 "sponsored"
5 ],
62 "whoisServer": "whois.iana.org",
73 "nameServers": [
84 "ns.uu.net",
128 "y.iana-servers.net",
139 "z.iana-servers.net"
1410 ],
11 "tags": [
12 "generic",
13 "sponsored"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "int.ni",
22 "nameServers": [
3 "auth01.ns.uu.net",
43 "dns-ext.nic.cr",
54 "ns.ideay.net.ni",
65 "ns.ni",
00 {
11 "domain": "intel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.intel",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.intel",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "international",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.international",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.international",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "intuit",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.intuit",
4 "rdapURLs": [
5 "https://rdap.nic.intuit/"
66 ],
7 "whoisServer": "whois.nic.intuit",
87 "nameServers": [
98 "ns1.dns.nic.intuit",
109 "ns2.dns.nic.intuit",
1312 "ns5.dns.nic.intuit",
1413 "ns6.dns.nic.intuit"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "investments",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.investments",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.investments",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "io",
2 "infoURL": "http://nic.io/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://www.nic.io/",
83 "whoisServer": "whois.nic.io",
94 "nameServers": [
105 "a0.nic.io",
116 "a2.nic.io",
127 "b0.nic.io",
138 "c0.nic.io"
9 ],
10 "tags": [
11 "country",
12 "generic",
13 "geo"
1414 ],
1515 "policies": [
1616 {
00 {
11 "domain": "ip6.arpa",
2 "tags": [
3 "closed"
4 ],
52 "nameServers": [
63 "a.ip6-servers.arpa",
74 "b.ip6-servers.arpa",
107 "e.ip6-servers.arpa",
118 "f.ip6-servers.arpa"
129 ],
10 "tags": [
11 "closed"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "ipiranga",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ipiranga",
4 "rdapURLs": [
5 "https://rdap.nic.ipiranga/"
66 ],
7 "whoisServer": "whois.nic.ipiranga",
87 "nameServers": [
98 "ns1.dns.nic.ipiranga",
109 "ns2.dns.nic.ipiranga",
1312 "ns5.dns.nic.ipiranga",
1413 "ns6.dns.nic.ipiranga"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "iq",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.cmc.iq",
73 "nameServers": [
84 "iq.cctld.authdns.ripe.net",
106 "ns1.cmc.iq",
117 "nsp-anycast.cmc.iq"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "ir",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.ir",
73 "nameServers": [
84 "a.nic.ir",
95 "b.nic.ir",
106 "ir.cctld.authdns.ripe.net",
117 "ns5.univie.ac.at"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "iris.arpa",
2 "tags": [
3 "closed"
4 ],
52 "nameServers": [
63 "a.iana-servers.net",
74 "b.iana-servers.net",
96 "ns3.lacnic.net",
107 "ns4.apnic.net"
118 ],
9 "tags": [
10 "closed"
11 ],
1212 "policies": [
1313 {
1414 "type": "idn-disallowed"
00 {
11 "domain": "irish",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.irish",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.irish",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "is",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.isnic.is",
3 "rdapURLs": [
4 "https://rdap.isnic.is/rdap/"
55 ],
6 "whoisServer": "whois.isnic.is",
76 "nameServers": [
87 "bes.isnic.is",
98 "durinn.rhnet.is",
109 "isgate.is",
1110 "sab.isnic.is",
1211 "sunic.sunet.se"
12 ],
13 "tags": [
14 "country",
15 "geo"
1316 ]
1417 }
00 {
11 "domain": "iselect",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.iselect",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.iselect",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "ismaili",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ismaili/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.ismaili",
109 "a2.nic.ismaili",
1110 "b0.nic.ismaili",
1211 "c0.nic.ismaili"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ist",
22 "infoURL": "http://nic.ist/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ist/"
76 ],
8 "locations": [
9 "Istanbul",
10 "TR-34"
11 ],
12 "whoisServer": "whois.afilias-srs.net",
137 "nameServers": [
148 "a0.nic.ist",
159 "a2.nic.ist",
1610 "b0.nic.ist",
1711 "c0.nic.ist"
1812 ],
13 "locations": [
14 "Istanbul",
15 "TR-34"
16 ],
17 "tags": [
18 "city",
19 "generic",
20 "geo"
21 ],
1922 "policies": [
2023 {
21 "type": "idn-disallowed"
24 "type": "idn-table",
25 "key": "tr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/ist_tr_1.txt"
2227 }
2328 ]
2429 }
00 {
11 "domain": "istanbul",
2 "infoURL": "http://nic.istanbul/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
2 "infoURL": "https://nic.istanbul/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/istanbul/"
76 ],
8 "locations": [
9 "Istanbul",
10 "TR-34"
11 ],
12 "whoisServer": "whois.afilias-srs.net",
137 "nameServers": [
148 "a0.nic.istanbul",
159 "a2.nic.istanbul",
1610 "b0.nic.istanbul",
1711 "c0.nic.istanbul"
1812 ],
13 "locations": [
14 "Istanbul",
15 "TR-34"
16 ],
17 "tags": [
18 "city",
19 "generic",
20 "geo"
21 ],
1922 "policies": [
2023 {
21 "type": "idn-disallowed"
24 "type": "idn-table",
25 "key": "tr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/istanbul_tr_1.txt"
2227 }
2328 ]
2429 }
00 {
11 "domain": "it",
2 "infoURL": "http://www.nic.it/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.it/it",
73 "whoisServer": "whois.nic.it",
84 "nameServers": [
95 "a.dns.it",
139 "r.dns.it",
1410 "s.dns.it"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-table",
00 {
11 "domain": "itau",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.itau",
4 "rdapURLs": [
5 "https://rdap.nic.itau/"
66 ],
7 "whoisServer": "whois.nic.itau",
87 "nameServers": [
98 "ns1.dns.nic.itau",
109 "ns2.dns.nic.itau",
1312 "ns5.dns.nic.itau",
1413 "ns6.dns.nic.itau"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/itau_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/itau_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/itau_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/itau_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/itau_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/itau_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/itau_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/itau_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/itau_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/itau_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/itau_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/itau_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/itau_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/itau_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/itau_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/itau_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "itv",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/itv/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.itv",
109 "a2.nic.itv",
1110 "b0.nic.itv",
1211 "c0.nic.itv"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "be",
21 "value": "https://www.iana.org/domains/idn-tables/tables/itv_be_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "bg",
26 "value": "https://www.iana.org/domains/idn-tables/tables/itv_bg_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bs",
31 "value": "https://www.iana.org/domains/idn-tables/tables/itv_bs_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "da",
36 "value": "https://www.iana.org/domains/idn-tables/tables/itv_da_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "de",
41 "value": "https://www.iana.org/domains/idn-tables/tables/itv_de_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "es",
46 "value": "https://www.iana.org/domains/idn-tables/tables/itv_es_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "hu",
51 "value": "https://www.iana.org/domains/idn-tables/tables/itv_hu_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "is",
56 "value": "https://www.iana.org/domains/idn-tables/tables/itv_is_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "ko",
61 "value": "https://www.iana.org/domains/idn-tables/tables/itv_ko_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "lt",
66 "value": "https://www.iana.org/domains/idn-tables/tables/itv_lt_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "lv",
71 "value": "https://www.iana.org/domains/idn-tables/tables/itv_lv_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "mk",
76 "value": "https://www.iana.org/domains/idn-tables/tables/itv_mk_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "pl",
81 "value": "https://www.iana.org/domains/idn-tables/tables/itv_pl_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ru",
86 "value": "https://www.iana.org/domains/idn-tables/tables/itv_ru_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "sr",
91 "value": "https://www.iana.org/domains/idn-tables/tables/itv_sr_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "sr-ME",
96 "value": "https://www.iana.org/domains/idn-tables/tables/itv_sr-me_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "sv",
101 "value": "https://www.iana.org/domains/idn-tables/tables/itv_sv_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "uk",
106 "value": "https://www.iana.org/domains/idn-tables/tables/itv_uk_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "zh-CN",
111 "value": "https://www.iana.org/domains/idn-tables/tables/itv_zh-cn_4.0.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "zh-TW",
116 "value": "https://www.iana.org/domains/idn-tables/tables/itv_zh-tw_4.0.txt"
17117 }
18118 ]
19119 }
00 {
11 "domain": "iveco",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.iveco",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/iveco/"
66 ],
7 "whoisServer": "whois.nic.iveco",
87 "nameServers": [
98 "a0.nic.iveco",
109 "a2.nic.iveco",
1110 "b0.nic.iveco",
1211 "c0.nic.iveco"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "iwc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.iwc",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.iwc",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "jaguar",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.jaguar",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/jaguar/v1/"
66 ],
7 "whoisServer": "whois.nic.jaguar",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "java",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.java",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/java/v1/"
66 ],
7 "whoisServer": "whois.nic.java",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "jcb",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
18 {
19 "type": "idn-table",
20 "key": "es",
21 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_es_1.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "fr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_fr_1.0.txt"
27 },
1528 {
1629 "type": "idn-table",
1730 "key": "ja",
1831 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_ja_1.0.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "ko",
36 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_ko_1.0.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "pl",
41 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_pl_1.0.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "pt",
46 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_pt_1.0.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "zh",
51 "value": "https://www.iana.org/domains/idn-tables/tables/jcb_zh_1.1.txt"
1952 }
2053 ]
2154 }
00 {
11 "domain": "jcp",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
6 ],
7 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.jcp",
10 "a2.nic.jcp",
11 "b0.nic.jcp",
12 "c0.nic.jcp"
137 ],
148 "policies": [
159 {
00 {
11 "domain": "je",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.je",
73 "nameServers": [
84 "c.ci-servers.org",
95 "dns1.nominetdns.uk",
10 "e.ci-servers.gg",
11 "f.ci-servers.je",
12 "ns0.ja.net",
13 "ns99.dns.net.nz"
6 "dns2.nominetdns.uk",
7 "dns3.nominetdns.uk",
8 "dns4.nominetdns.uk",
9 "e.ci-servers.net"
10 ],
11 "tags": [
12 "country",
13 "geo"
1414 ],
1515 "policies": [
1616 {
00 {
11 "domain": "jeep",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/jeep/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.jeep",
109 "a2.nic.jeep",
1110 "b0.nic.jeep",
1211 "c0.nic.jeep"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "jetzt",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.jetzt",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.jetzt",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "jewelry",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.jewelry",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.jewelry",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "jio",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.jio",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/jio/"
56 ],
6 "whoisServer": "whois.nic.jio",
77 "nameServers": [
88 "a0.nic.jio",
99 "a2.nic.jio",
1010 "b0.nic.jio",
1111 "c0.nic.jio"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "jlc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.jlc",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.jlc",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "jll",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/jll/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.jll",
109 "a2.nic.jll",
1110 "b0.nic.jll",
1211 "c0.nic.jll"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "jm",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "nameServers": [
83 "jm.cctld.authdns.ripe.net",
94 "ns.jm",
116 "ns3-jm.fsl.org.jm",
127 "phloem.uoregon.edu"
138 ],
9 "tags": [
10 "closed",
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "jmp",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.jmp",
4 "rdapURLs": [
5 "https://rdap.nic.jmp/"
66 ],
7 "whoisServer": "whois.nic.jmp",
87 "nameServers": [
98 "ns1.dns.nic.jmp",
109 "ns2.dns.nic.jmp",
1312 "ns5.dns.nic.jmp",
1413 "ns6.dns.nic.jmp"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/jmp_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "jnj",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.jnj",
4 "rdapURLs": [
5 "https://rdap.nic.jnj/"
66 ],
7 "whoisServer": "whois.nic.jnj",
87 "nameServers": [
98 "ns1.dns.nic.jnj",
109 "ns2.dns.nic.jnj",
1312 "ns5.dns.nic.jnj",
1413 "ns6.dns.nic.jnj"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/jnj_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "jo",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.dns.jo/Whois.aspx",
73 "nameServers": [
84 "amra.nic.gov.jo",
117 "petra.nic.gov.jo",
128 "rip.psg.com"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "jobs",
2 "tags": [
3 "generic",
4 "sponsored"
2 "whoisServer": "whois.nic.jobs",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/jobs/v1/"
55 ],
6 "whoisServer": "whois.nic.jobs",
76 "nameServers": [
87 "ac1.nstld.com",
98 "ac2.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
11 ],
12 "tags": [
13 "generic",
14 "sponsored"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "jobs.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
+0
-7
metadata/jobs.tt.json less more
0 {
1 "domain": "jobs.tt",
2 "nameServers": [
3 "dns1.zoneedit.com",
4 "dns2.zoneedit.com"
5 ]
6 }
00 {
11 "domain": "joburg",
2 "whoisServer": "joburg-whois.registry.net.za",
3 "rdapURLs": [
4 "https://rdap.registry.net.za/rdap/"
5 ],
6 "nameServers": [
7 "coza1.dnsnode.net",
8 "ns.coza.net.za",
9 "ns2us.dns.business"
10 ],
11 "locations": [
12 "Johannesburg"
13 ],
214 "tags": [
315 "city",
416 "generic",
517 "geo"
6 ],
7 "locations": [
8 "Johannesburg"
9 ],
10 "whoisServer": "joburg-whois.registry.net.za",
11 "nameServers": [
12 "coza1.dnsnode.net",
13 "ns.coza.net.za",
14 "ns2us.dns.business"
1518 ]
1619 }
00 {
11 "domain": "jot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.jot",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/jot/"
56 ],
6 "whoisServer": "whois.nic.jot",
77 "nameServers": [
88 "dns1.nic.jot",
99 "dns2.nic.jot",
1313 "dnsb.nic.jot",
1414 "dnsc.nic.jot",
1515 "dnsd.nic.jot"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
4447 "type": "idn-table",
4548 "key": "fr",
4649 "value": "https://www.iana.org/domains/idn-tables/tables/jot_fr_2.1.txt"
50 },
51 {
52 "type": "idn-table",
53 "key": "hi",
54 "value": "https://www.iana.org/domains/idn-tables/tables/jot_hi_2.2.txt"
4755 },
4856 {
4957 "type": "idn-table",
00 {
11 "domain": "joy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.joy",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/joy/"
56 ],
6 "whoisServer": "whois.nic.joy",
77 "nameServers": [
88 "dns1.nic.joy",
99 "dns2.nic.joy",
1313 "dnsb.nic.joy",
1414 "dnsc.nic.joy",
1515 "dnsd.nic.joy"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "jp",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.jprs.jp",
73 "nameServers": [
84 "a.dns.jp",
1410 "g.dns.jp",
1511 "h.dns.jp"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-table",
00 {
11 "domain": "jp.net",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/jp.net/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "jpmorgan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.jpmorgan",
4 "rdapURLs": [
5 "https://rdap.nic.jpmorgan/"
66 ],
7 "whoisServer": "whois.nic.jpmorgan",
87 "nameServers": [
98 "ns1.dns.nic.jpmorgan",
109 "ns2.dns.nic.jpmorgan",
1312 "ns5.dns.nic.jpmorgan",
1413 "ns6.dns.nic.jpmorgan"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "jpn.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/jpn.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "54.153.56.183",
1414 "jpn.com"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
00 {
11 "domain": "jprs",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://rdap.nic.jprs/rdap/"
65 ],
76 "nameServers": [
87 "tld1.nic.jprs",
109 "tld3.nic.jprs",
1110 "tld4.nic.jprs",
1211 "tld5.nic.jprs"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
22 "nameServers": [
33 "miles.ns.cloudflare.com",
44 "pam.ns.cloudflare.com"
5 ],
6 "wildcards": [
7 "89.41.169.49"
58 ]
69 }
00 {
11 "domain": "juegos",
2 "infoURL": "http://nic.juegos/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.juegos/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/juegos_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "juniper",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.juniper",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/juniper/v1/"
66 ],
7 "whoisServer": "whois.nic.juniper",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "k12.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "kaufen",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.kaufen",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.kaufen",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "kddi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kddi",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.kddi",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ke",
2 "infoURL": "http://www.kenic.or.ke/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "https://kenic.or.ke/",
83 "whoisServer": "whois.kenic.or.ke",
94 "nameServers": [
105 "kenic.anycastdns.cz",
138 "ns.anycast.kenic.or.ke",
149 "ns2ke.dns.business"
1510 ],
11 "tags": [
12 "closed",
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "kerryhotels",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kerryhotels",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/kerryhotels/v1/"
66 ],
7 "whoisServer": "whois.nic.kerryhotels",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kerrylogistics",
22 "whoisServer": "whois.nic.kerrylogistics",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/kerrylogistics/v1/"
5 ],
36 "nameServers": [
47 "ac1.nstld.com",
58 "ac2.nstld.com",
00 {
11 "domain": "kerryproperties",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kerryproperties",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/kerryproperties/v1/"
66 ],
7 "whoisServer": "whois.nic.kerryproperties",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kfh",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kfh",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/kfh/"
66 ],
7 "whoisServer": "whois.nic.kfh",
87 "nameServers": [
98 "a.nic.kfh",
109 "b.nic.kfh",
1110 "c.nic.kfh",
1211 "d.nic.kfh"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.kg",
73 "nameServers": [
84 "kg.cctld.authdns.ripe.net",
95 "ns.kg"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "kh",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "dns1.online.com.kh",
84 "ns.camnet.com.kh",
95 "ns1.dns.net.kh",
106 "ns4.apnic.net"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "ki",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.ki",
73 "nameServers": [
84 "ns.cocca.fr",
95 "pch.nic.ki"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "kia",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kia",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.kia",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ko",
21 "value": "https://www.iana.org/domains/idn-tables/tables/kia_ko_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "kim",
2 "infoURL": "http://nic.kim/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.kim/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/kim/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.kim",
99 "a2.nic.kim",
1010 "b0.nic.kim",
1111 "c0.nic.kim"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/kim_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/kim_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/kim_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/kim_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/kim_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/kim_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/kim_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/kim_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/kim_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/kim_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/kim_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/kim_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/kim_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/kim_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/kim_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/kim_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/kim_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/kim_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/kim_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/kim_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/kim_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/kim_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/kim_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/kim_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/kim_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/kim_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "kinder",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.kinder",
4 "rdapURLs": [
5 "https://rdap.nic.kinder/"
56 ],
6 "whoisServer": "whois.nic.kinder",
77 "nameServers": [
88 "ns1.dns.nic.kinder",
99 "ns2.dns.nic.kinder",
1212 "ns5.dns.nic.kinder",
1313 "ns6.dns.nic.kinder"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_da_1.0.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_de_1.0.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_es_1.0.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_fi_1.0.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "hu",
39 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_hu_1.0.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_hu_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "is",
44 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_is_1.0.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_is_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "it",
49 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_it_1.0.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_it_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ja_1.0.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ko_1.0.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lt_1.0.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lv_1.0.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_no_1.0.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pl_1.0.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pt_1.0.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ru_1.0.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_sv_1.0.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_zh_1.0.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "kindle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kindle",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/kindle/"
66 ],
7 "whoisServer": "whois.nic.kindle",
87 "nameServers": [
98 "dns1.nic.kindle",
109 "dns2.nic.kindle",
1413 "dnsb.nic.kindle",
1514 "dnsc.nic.kindle",
1615 "dnsd.nic.kindle"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "kitchen",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.kitchen",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.kitchen",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "kiwi",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.kiwi",
3 "rdapURLs": [
4 "https://rdap.kiwi.fury.ca/rdap/"
45 ],
5 "whoisServer": "whois.nic.kiwi",
66 "nameServers": [
77 "a.ns.nic.kiwi",
88 "b.ns.nic.kiwi"
9 ],
10 "tags": [
11 "generic"
912 ],
1013 "policies": [
1114 {
00 {
11 "domain": "km",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "dns1.nic.km",
84 "dns2.nic.km",
95 "ns-km.afrinic.net"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "kn",
2 "infoURL": "https://www.nic.kn/",
3 "whoisServer": "whois.nic.kn",
4 "nameServers": [
5 "ns1.anycastdns.cz",
6 "ns2.anycastdns.cz",
7 "pch.nic.kn"
8 ],
29 "tags": [
310 "country",
411 "geo"
5 ],
6 "whoisServer": "whois.nic.kn",
7 "whoisURL": "http://www.nic.kn/",
8 "nameServers": [
9 "ns.cocca.fr",
10 "ns.coccaregistry.org",
11 "pch.nic.kn"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "koeln",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.ryce-rsp.com",
3 "rdapURLs": [
4 "https://rdap.ryce-rsp.com/rdap/"
5 ],
6 "nameServers": [
7 "dns.ryce-rsp.com",
8 "ns1.dns.business",
9 "ns1.ryce-rsp.com"
610 ],
711 "locations": [
812 "Cologne",
913 "Koeln"
1014 ],
11 "whoisServer": "whois.ryce-rsp.com",
12 "nameServers": [
13 "dns.ryce-rsp.com",
14 "ns1.dns.business",
15 "ns1.ryce-rsp.com"
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "komatsu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.komatsu",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.komatsu",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/komatsu_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "kosher",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.kosher",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/kosher/"
56 ],
6 "whoisServer": "whois.nic.kosher",
77 "nameServers": [
88 "a0.nic.kosher",
99 "a2.nic.kosher",
1010 "b0.nic.kosher",
1111 "c0.nic.kosher"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "kp",
2 "nameServers": [
3 "ns1.kptc.kp",
4 "ns2.kptc.kp"
5 ],
26 "tags": [
37 "country",
48 "geo"
5 ],
6 "nameServers": [
7 "ns1.kptc.kp",
8 "ns2.kptc.kp"
99 ],
1010 "policies": [
1111 {
00 {
11 "domain": "kpmg",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kpmg",
4 "rdapURLs": [
5 "https://rdap.nic.kpmg/"
66 ],
7 "whoisServer": "whois.nic.kpmg",
87 "nameServers": [
98 "ns1.dns.nic.kpmg",
109 "ns2.dns.nic.kpmg",
1312 "ns5.dns.nic.kpmg",
1413 "ns6.dns.nic.kpmg"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "de",
20 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_de_2.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_de_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "es",
25 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_es_2.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_es_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "ja",
30 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ja_2.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ja_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "ko",
35 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ko_2.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ko_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
3942 "key": "zh",
40 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_zh_2.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_zh_3.0.xml"
4144 }
4245 ]
4346 }
00 {
11 "domain": "kpn",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://rdap.centralnic.com/kpn/"
65 ],
76 "nameServers": [
87 "a.nic.kpn",
109 "c.nic.kpn",
1110 "d.nic.kpn"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "kr.com",
2 "whoisServer": "whois.centralnic.com",
3 "nameServers": [
4 "jm1.dns.com",
5 "jm2.dns.com"
6 ],
27 "tags": [
38 "private"
4 ],
5 "whoisServer": "whois.centralnic.com",
6 "nameServers": [
7 "ns1.dns.com",
8 "ns2.dns.com"
99 ]
1010 }
00 {
11 "domain": "kr",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.kr",
73 "nameServers": [
84 "b.dns.kr",
128 "f.dns.kr",
139 "g.dns.kr"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-table",
44 "ns.udag.net",
55 "ns.udag.org"
66 ],
7 "wildcards": [
8 "89.31.143.1"
9 ],
107 "policies": [
118 {
129 "type": "idn-disallowed"
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "krd",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.krd",
4 "rdapURLs": [
5 "https://rdap.nic.krd/"
66 ],
7 "whoisServer": "whois.nic.krd",
87 "nameServers": [
98 "a.nic.krd",
109 "b.nic.krd",
1110 "c.nic.krd",
1211 "d.nic.krd"
12 ],
13 "tags": [
14 "generic",
15 "region"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kred",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "community",
5 "generic"
3 "whoisServer": "whois.nic.kred",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/kred/"
66 ],
7 "whoisServer": "whois.nic.kred",
87 "nameServers": [
98 "a.nic.kred",
109 "b.nic.kred",
1110 "c.nic.kred",
1211 "d.nic.kred"
12 ],
13 "tags": [
14 "community",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kuokgroup",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.kuokgroup",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/kuokgroup/v1/"
66 ],
7 "whoisServer": "whois.nic.kuokgroup",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kw",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.kw/",
73 "nameServers": [
84 "a.nic.kw",
128 "e.nic.kw",
139 "pch.nic.kw"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "ky",
2 "tags": [
3 "country",
4 "geo"
2 "infoURL": "https://kyregistry.ky/",
3 "whoisServer": "whois.kyregistry.ky",
4 "rdapURLs": [
5 "https://whois.kyregistry.ky/rdap/"
56 ],
6 "whoisServer": "whois.kyregistry.ky",
7 "whoisURL": "http://kynseweb.messagesecure.com/kywebadmin/",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns3.uniregistry.net",
1211 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "country",
15 "geo"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "kyoto.jp",
2 "locations": [
3 "Kyoto"
4 ],
25 "tags": [
36 "city",
47 "geo"
5 ],
6 "locations": [
7 "Kyoto"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "kyoto",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.kyoto",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
76 ],
8 "locations": [
9 "Kyoto",
10 "JP-26"
11 ],
12 "whoisServer": "whois.nic.kyoto",
137 "nameServers": [
148 "a.gmoregistry.net",
159 "b.gmoregistry.net",
1610 "k.gmoregistry.net",
1711 "l.gmoregistry.net"
1812 ],
13 "locations": [
14 "Kyoto",
15 "JP-26"
16 ],
17 "tags": [
18 "city",
19 "generic",
20 "geo"
21 ],
1922 "policies": [
2023 {
21 "type": "idn-disallowed"
24 "type": "idn-table",
25 "key": "ja",
26 "value": "https://www.iana.org/domains/idn-tables/tables/kyoto_ja_1.0.txt"
2227 }
2328 ]
2429 }
00 {
11 "domain": "kz",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.kz",
73 "nameServers": [
84 "ns.nic.kz",
95 "ns1.nic.kz"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "la",
2 "tags": [
3 "city",
4 "country",
5 "geo"
6 ],
7 "locations": [
8 "Los Angeles"
9 ],
102 "whoisServer": "whois.nic.la",
113 "nameServers": [
124 "ns1.nic.la",
135 "ns2.nic.la",
146 "ns3.nic.la",
157 "ns4.nic.la"
8 ],
9 "locations": [
10 "Los Angeles"
11 ],
12 "tags": [
13 "city",
14 "country",
15 "geo"
1616 ],
1717 "policies": [
1818 {
00 {
11 "domain": "lacaixa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lacaixa",
4 "rdapURLs": [
5 "https://rdap.nic.lacaixa/"
66 ],
7 "whoisServer": "whois.nic.lacaixa",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ladbrokes",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.ladbrokes",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.ladbrokes",
88 "policies": [
99 {
1010 "type": "idn-table",
00 {
11 "domain": "lamborghini",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/lamborghini/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.lamborghini",
109 "a2.nic.lamborghini",
1110 "b0.nic.lamborghini",
1211 "c0.nic.lamborghini"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lamer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lamer",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/lamer/"
66 ],
7 "whoisServer": "whois.nic.lamer",
87 "nameServers": [
98 "a0.nic.lamer",
109 "a2.nic.lamer",
1110 "b0.nic.lamer",
1211 "c0.nic.lamer"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lancaster",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lancaster",
4 "rdapURLs": [
5 "https://rdap.nic.lancaster/"
66 ],
7 "whoisServer": "whois.nic.lancaster",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "mul-Latn",
20 "value": "https://www.iana.org/domains/idn-tables/tables/lancaster_latn_1.txt"
1621 }
1722 ]
1823 }
00 {
11 "domain": "lancia",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/lancia/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.lancia",
109 "a2.nic.lancia",
1110 "b0.nic.lancia",
1211 "c0.nic.lancia"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lancome",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.lancome",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.lancome",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "land",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.land",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.land",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "landrover",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.landrover",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/landrover/v1/"
66 ],
7 "whoisServer": "whois.nic.landrover",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lanxess",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lanxess",
4 "rdapURLs": [
5 "https://rdap.nic.lanxess/"
66 ],
7 "whoisServer": "whois.nic.lanxess",
87 "nameServers": [
98 "ns1.dns.nic.lanxess",
109 "ns2.dns.nic.lanxess",
1312 "ns5.dns.nic.lanxess",
1413 "ns6.dns.nic.lanxess"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "lasalle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/lasalle/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.lasalle",
109 "a2.nic.lasalle",
1110 "b0.nic.lasalle",
1211 "c0.nic.lasalle"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lat",
2 "infoURL": "http://nic.lat/",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.nic.lat/en/",
3 "whoisServer": "whois.nic.lat",
4 "rdapURLs": [
5 "https://rdap.nic.lat/"
56 ],
6 "whoisServer": "whois.nic.lat",
77 "nameServers": [
88 "c.mx-ns.mx",
99 "e.mx-ns.mx",
1111 "m.mx-ns.mx",
1212 "o.mx-ns.mx",
1313 "x.mx-ns.mx"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "latino",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.latino",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/latino/"
56 ],
6 "whoisServer": "whois.nic.latino",
77 "nameServers": [
88 "a0.nic.latino",
99 "a2.nic.latino",
1010 "b0.nic.latino",
1111 "c0.nic.latino"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "latrobe",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.latrobe",
4 "rdapURLs": [
5 "https://rdap.nic.latrobe/"
66 ],
7 "whoisServer": "whois.nic.latrobe",
87 "nameServers": [
98 "a.nic.latrobe",
109 "b.nic.latrobe",
1110 "c.nic.latrobe",
1211 "d.nic.latrobe"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "law",
2 "infoURL": "http://nic.law/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.law/",
3 "whoisServer": "whois.nic.law",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/law/"
56 ],
6 "whoisServer": "whois.nic.law",
77 "nameServers": [
88 "dns1.nic.law",
99 "dns2.nic.law",
1313 "dnsb.nic.law",
1414 "dnsc.nic.law",
1515 "dnsd.nic.law"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "lawyer",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.lawyer",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.lawyer",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "lb",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisURL": "http://www.aub.edu.lb/lbdr/",
83 "nameServers": [
94 "fork.sth.dnsnode.net",
105 "rip.psg.com",
116 "zeina.aub.edu.lb"
7 ],
8 "tags": [
9 "closed",
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "lc",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "http://www.nic.lc/",
63 "whoisServer": "whois.afilias-grs.info",
7 "whoisURL": "http://www.nic.lc",
84 "nameServers": [
95 "a0.cctld.afilias-nst.info",
106 "a2.cctld.afilias-nst.info",
139 "c0.cctld.afilias-nst.info",
1410 "d0.cctld.afilias-nst.org"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "lds",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lds",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/lds/"
66 ],
7 "whoisServer": "whois.nic.lds",
87 "nameServers": [
98 "a0.nic.lds",
109 "a2.nic.lds",
1110 "b0.nic.lds",
1211 "c0.nic.lds"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lease",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.lease",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.lease",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "leclerc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois-leclerc.nic.fr",
4 "rdapURLs": [
5 "https://rdap.nic.leclerc/"
66 ],
7 "whoisServer": "whois-leclerc.nic.fr",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "lefrak",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lefrak",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/lefrak/v1/"
66 ],
7 "whoisServer": "whois.nic.lefrak",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "legal",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.legal",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.legal",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "lego",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lego",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/lego/v1/"
66 ],
7 "whoisServer": "whois.nic.lego",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lexus",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lexus",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.lexus",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/lexus_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "lgbt",
2 "infoURL": "http://nic.lgbt/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.lgbt/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/lgbt/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.lgbt",
99 "a2.nic.lgbt",
1010 "b0.nic.lgbt",
1111 "c0.nic.lgbt"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "li",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.nic.li",
3 "rdapURLs": [
4 "https://rdap.nic.li/"
55 ],
6 "whoisServer": "whois.nic.li",
76 "nameServers": [
87 "a.nic.li",
98 "b.nic.li",
109 "c.nic.li",
1110 "e.nic.li",
1211 "f.nic.li",
13 "g.nic.li",
14 "h.nic.li"
12 "g.nic.li"
13 ],
14 "tags": [
15 "country",
16 "geo"
1517 ]
1618 }
00 {
11 "domain": "liaison",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.liaison",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.liaison",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "lidl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lidl",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/lidl/"
66 ],
7 "whoisServer": "whois.nic.lidl",
87 "nameServers": [
98 "a.nic.lidl",
109 "b.nic.lidl",
1110 "c.nic.lidl",
1211 "d.nic.lidl"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "life",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.life",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.life",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "lifeinsurance",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.lifeinsurance",
4 "rdapURLs": [
5 "https://rdap.nic.lifeinsurance/"
56 ],
6 "whoisServer": "whois.nic.lifeinsurance",
77 "nameServers": [
88 "ns1.dns.nic.lifeinsurance",
99 "ns2.dns.nic.lifeinsurance",
1212 "ns5.dns.nic.lifeinsurance",
1313 "ns6.dns.nic.lifeinsurance"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/lifeinsurance_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "lifestyle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.lifestyle",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/lifestyle/v1/"
56 ],
6 "whoisServer": "whois.nic.lifestyle",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "lighting",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.lighting",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.lighting",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "like",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.like",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/like/"
66 ],
7 "whoisServer": "whois.nic.like",
87 "nameServers": [
98 "dns1.nic.like",
109 "dns2.nic.like",
1413 "dnsb.nic.like",
1514 "dnsc.nic.like",
1615 "dnsd.nic.like"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "lilly",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lilly",
4 "rdapURLs": [
5 "https://rdap.nic.lilly/"
66 ],
7 "whoisServer": "whois.nic.lilly",
87 "nameServers": [
98 "ns1.dns.nic.lilly",
109 "ns2.dns.nic.lilly",
1312 "ns5.dns.nic.lilly",
1413 "ns6.dns.nic.lilly"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/lilly_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "limited",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.limited",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.limited",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "limited.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "limo",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.limo",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.limo",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "lincoln",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lincoln",
4 "rdapURLs": [
5 "https://rdap.nic.lincoln/"
66 ],
7 "whoisServer": "whois.nic.lincoln",
87 "nameServers": [
98 "ns1.dns.nic.lincoln",
109 "ns2.dns.nic.lincoln",
1312 "ns5.dns.nic.lincoln",
1413 "ns6.dns.nic.lincoln"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "fr",
28 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_fr_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "pl",
33 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_pl_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "ru",
38 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_ru_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "sv",
43 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_sv_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "zh",
48 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_zh_3.0.xml"
1949 }
2050 ]
2151 }
00 {
11 "domain": "linde",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.linde",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/linde/v1/"
66 ],
7 "whoisServer": "whois.nic.linde",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "link",
2 "infoURL": "http://nic.link/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.link/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/link_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "link.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "lipsy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lipsy",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/lipsy/v1/"
66 ],
7 "whoisServer": "whois.nic.lipsy",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "live",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.live",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.live",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "living",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/living/v1/"
55 ],
66 "nameServers": [
77 "ac1.nstld.com",
99 "ac3.nstld.com",
1010 "ac4.nstld.com"
1111 ],
12 "tags": [
13 "generic"
14 ],
1215 "policies": [
1316 {
1417 "type": "idn-disallowed"
00 {
11 "domain": "lixil",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lixil",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.lixil",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/lixil_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "lk",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.lk",
73 "nameServers": [
84 "c.nic.lk",
1410 "pendragon.cs.purdue.edu",
1511 "t.nic.lk"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "llc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/llc/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.llc",
99 "a2.nic.llc",
1010 "b0.nic.llc",
1111 "c0.nic.llc"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "llp",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.uniregistry.net",
74 "nameServers": [
85 "ns1.uniregistry.net",
107 "ns3.uniregistry.net",
118 "ns4.uniregistry.info"
129 ],
10 "tags": [
11 "generic"
12 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "es",
17 "value": "https://www.iana.org/domains/idn-tables/tables/llp_es_1.0.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "ja",
22 "value": "https://www.iana.org/domains/idn-tables/tables/llp_ja_1.1.txt"
1623 }
1724 ]
1825 }
00 {
11 "domain": "loan",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.loan",
4 "rdapURLs": [
5 "https://rdap.nic.loan/"
56 ],
6 "whoisServer": "whois.nic.loan",
77 "nameServers": [
88 "ns1.dns.nic.loan",
99 "ns2.dns.nic.loan",
1212 "ns5.dns.nic.loan",
1313 "ns6.dns.nic.loan"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/loan_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/loan_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/loan_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/loan_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/loan_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/loan_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/loan_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/loan_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/loan_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/loan_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/loan_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/loan_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/loan_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/loan_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/loan_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/loan_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "loans",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.loans",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.loans",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "locker",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.locker",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/locker/"
66 ],
7 "whoisServer": "whois.nic.locker",
87 "nameServers": [
98 "a0.nic.locker",
109 "a2.nic.locker",
1110 "b0.nic.locker",
1211 "c0.nic.locker"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "locus",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.locus",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/locus/"
66 ],
7 "whoisServer": "whois.nic.locus",
87 "nameServers": [
98 "dns1.nic.locus",
109 "dns2.nic.locus",
1514 "dnsc.nic.locus",
1615 "dnsd.nic.locus"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "loft",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.loft",
4 "rdapURLs": [
5 "https://rdap.nic.loft/"
56 ],
6 "whoisServer": "whois.nic.loft",
77 "nameServers": [
88 "ns1.dns.nic.loft",
99 "ns2.dns.nic.loft",
1212 "ns5.dns.nic.loft",
1313 "ns6.dns.nic.loft"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
0 {
1 "domain": "log.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "lol",
2 "infoURL": "http://nic.lol/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.lol/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/lol_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "london",
22 "infoURL": "http://nic.london/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.london",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/london/"
6 ],
7 "nameServers": [
8 "dns1.nic.london",
9 "dns2.nic.london",
10 "dns3.nic.london",
11 "dns4.nic.london",
12 "dnsa.nic.london",
13 "dnsb.nic.london",
14 "dnsc.nic.london",
15 "dnsd.nic.london"
716 ],
817 "locations": [
918 "London",
4150 "GB-WND",
4251 "GB-WSM"
4352 ],
44 "whoisServer": "whois.nic.london",
45 "nameServers": [
46 "dns1.nic.london",
47 "dns2.nic.london",
48 "dns3.nic.london",
49 "dns4.nic.london",
50 "dnsa.nic.london",
51 "dnsb.nic.london",
52 "dnsc.nic.london",
53 "dnsd.nic.london"
53 "tags": [
54 "city",
55 "generic",
56 "geo"
5457 ],
5558 "policies": [
5659 {
00 {
11 "domain": "lotte",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lotte",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.lotte",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lotto",
22 "infoURL": "https://nic.lotto/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/lotto/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.lotto",
99 "a2.nic.lotto",
1010 "b0.nic.lotto",
1111 "c0.nic.lotto"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "love",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.love",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/love/"
56 ],
6 "whoisServer": "whois.nic.love",
77 "nameServers": [
88 "a.nic.love",
99 "b.nic.love",
1010 "c.nic.love",
1111 "d.nic.love"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "lpl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lpl",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/lpl/"
66 ],
7 "whoisServer": "whois.nic.lpl",
87 "nameServers": [
98 "a.nic.lpl",
109 "b.nic.lpl",
1110 "c.nic.lpl",
1211 "d.nic.lpl"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lplfinancial",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lplfinancial",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/lplfinancial/"
66 ],
7 "whoisServer": "whois.nic.lplfinancial",
87 "nameServers": [
98 "a.nic.lplfinancial",
109 "b.nic.lplfinancial",
1110 "c.nic.lplfinancial",
1211 "d.nic.lplfinancial"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "lr",
2 "nameServers": [
3 "fork.sth.dnsnode.net",
4 "ns-lr.afrinic.net",
5 "rip.psg.com"
6 ],
27 "tags": [
38 "closed",
49 "country",
510 "geo"
6 ],
7 "nameServers": [
8 "fork.sth.dnsnode.net",
9 "ns-lr.afrinic.net",
10 "rip.psg.com"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "ls",
2 "infoURL": "http://www.co.ls/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "http://www.nic.ls/",
83 "whoisServer": "whois.nic.ls",
9 "whoisURL": "http://www.co.ls/co.asp",
104 "nameServers": [
115 "ls-ns.anycast.pch.net",
126 "ns-ls.afrinic.net",
137 "ns1.nic.ls",
148 "ns2.nic.ls"
9 ],
10 "tags": [
11 "country",
12 "geo"
1513 ],
1614 "policies": [
1715 {
00 {
11 "domain": "lt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.domreg.lt",
73 "nameServers": [
84 "a.tld.lt",
117 "d.tld.lt",
128 "e.tld.lt",
139 "f.tld.lt"
10 ],
11 "tags": [
12 "country",
13 "geo"
1414 ]
1515 }
00 {
11 "domain": "ltd",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ltd",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.ltd",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ltda",
22 "infoURL": "https://nic.ltda/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ltda/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.ltda",
99 "a2.nic.ltda",
1010 "b0.nic.ltda",
1111 "c0.nic.ltda"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "lu",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dns.lu",
73 "nameServers": [
84 "g.dns.lu",
117 "k.dns.lu",
128 "ns1.dns.lu",
139 "p.dns.lu"
10 ],
11 "tags": [
12 "country",
13 "geo"
1414 ]
1515 }
00 {
11 "domain": "lundbeck",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.lundbeck",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/lundbeck/v1/"
66 ],
7 "whoisServer": "whois.nic.lundbeck",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
44 "brand",
55 "generic"
66 ],
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
12 ],
137 "policies": [
148 {
159 "type": "idn-disallowed"
00 {
11 "domain": "luxe",
22 "infoURL": "http://nix.luxe/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.luxe",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/luxe/"
56 ],
6 "whoisServer": "whois.nic.luxe",
77 "nameServers": [
88 "dns1.nic.luxe",
99 "dns2.nic.luxe",
1313 "dnsb.nic.luxe",
1414 "dnsc.nic.luxe",
1515 "dnsd.nic.luxe"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "luxury",
2 "infoURL": "http://nic.luxury/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.luxury/",
3 "whoisServer": "whois.nic.luxury",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/luxury/"
56 ],
6 "whoisServer": "whois.nic.luxury",
77 "nameServers": [
88 "a.nic.luxury",
99 "b.nic.luxury",
1010 "c.nic.luxury",
1111 "d.nic.luxury"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "lv",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.lv",
73 "nameServers": [
84 "a.nic.lv",
106 "c.nic.lv",
117 "d.nic.lv",
128 "sunic.sunet.se"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ]
1414 }
00 {
11 "domain": "ly",
2 "infoURL": "http://nic.ly/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://nic.ly/",
73 "whoisServer": "whois.nic.ly",
84 "nameServers": [
95 "dns.lttnet.net",
128 "pch.ltt.ly",
139 "phloem.uoregon.edu"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "ma",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.registre.ma",
73 "nameServers": [
84 "a.tld.ma",
1410 "f.tld.ma",
1511 "ns-ma.nic.fr"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "macys",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.macys",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/macys/v1/"
66 ],
7 "whoisServer": "whois.nic.macys",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "madrid",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.madrid",
4 "rdapURLs": [
5 "https://rdap.nic.madrid/"
6 ],
7 "nameServers": [
8 "anycast10.irondns.net",
9 "anycast23.irondns.net",
10 "anycast24.irondns.net",
11 "anycast9.irondns.net"
712 ],
813 "locations": [
914 "Madrid",
1015 "ES-MD"
1116 ],
12 "whoisServer": "whois.nic.madrid",
13 "nameServers": [
14 "anycast10.irondns.net",
15 "anycast23.irondns.net",
16 "anycast24.irondns.net",
17 "anycast9.irondns.net"
17 "tags": [
18 "city",
19 "generic",
20 "geo"
1821 ],
1922 "policies": [
2023 {
00 {
11 "domain": "maif",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/maif/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
98 "ac2.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "maison",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.maison",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.maison",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "makeup",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.makeup",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/makeup/"
66 ],
7 "whoisServer": "whois.nic.makeup",
87 "nameServers": [
98 "a.nic.makeup",
109 "b.nic.makeup",
1110 "c.nic.makeup",
1211 "d.nic.makeup"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "man",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.man",
4 "rdapURLs": [
5 "https://rdap.nic.man/"
66 ],
7 "whoisServer": "whois.nic.man",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "management",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.management",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.management",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "management.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "mango",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mango",
4 "rdapURLs": [
5 "https://rdap.nic.mango/"
66 ],
7 "whoisServer": "whois.nic.mango",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "map",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "market",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.market",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.market",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "marketing",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.marketing",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.marketing",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "marketing.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "markets",
22 "infoURL": "https://bostonivy.co/",
3 "whoisServer": "whois.nic.markets",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.markets",
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "marriott",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/marriott/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.marriott",
109 "a2.nic.marriott",
1110 "b0.nic.marriott",
1211 "c0.nic.marriott"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "marshalls",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.marshalls",
4 "rdapURLs": [
5 "https://rdap.nic.marshalls/"
66 ],
7 "whoisServer": "whois.nic.marshalls",
87 "nameServers": [
98 "ns1.dns.nic.marshalls",
109 "ns2.dns.nic.marshalls",
1312 "ns5.dns.nic.marshalls",
1413 "ns6.dns.nic.marshalls"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "maserati",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.maserati",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/maserati/"
66 ],
7 "whoisServer": "whois.nic.maserati",
87 "nameServers": [
98 "a0.nic.maserati",
109 "a2.nic.maserati",
1110 "b0.nic.maserati",
1211 "c0.nic.maserati"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "mattel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mattel",
4 "rdapURLs": [
5 "https://rdap.nic.mattel/"
66 ],
7 "whoisServer": "whois.nic.mattel",
87 "nameServers": [
98 "ns1.dns.nic.mattel",
109 "ns2.dns.nic.mattel",
1312 "ns5.dns.nic.mattel",
1413 "ns6.dns.nic.mattel"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/mattel_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "mba",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.mba",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.mba",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "mc",
2 "infoURL": "http://www.nic.mc/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.mc/",
73 "nameServers": [
84 "mc.cctld.authdns.ripe.net",
95 "ns1.nic.mc",
106 "ns2.nic.mc"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "mckinsey",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mckinsey",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/mckinsey/"
66 ],
7 "whoisServer": "whois.nic.mckinsey",
87 "nameServers": [
98 "a0.nic.mckinsey",
109 "a2.nic.mckinsey",
1110 "b0.nic.mckinsey",
1211 "c0.nic.mckinsey"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "md",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.md",
73 "nameServers": [
84 "nsa.tld.md",
117 "nsf.dns.md",
128 "nsr.dns.md"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "me",
2 "infoURL": "http://domain.me/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://domain.me/",
83 "whoisServer": "whois.nic.me",
94 "nameServers": [
105 "a0.nic.me",
138 "b2.nic.me",
149 "c0.nic.me"
1510 ],
11 "tags": [
12 "country",
13 "generic",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
+0
-9
metadata/me.ss.json less more
0 {
1 "domain": "me.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "root.nic.ss",
6 "ssnic.anycastdns.cz"
7 ]
8 }
00 {
11 "domain": "med.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "med",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.med",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/med/v1/"
56 ],
6 "whoisServer": "whois.nic.med",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "media",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.media",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.media",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "media.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "meet",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "melbourne",
2 "infoURL": "http://nic.melbourne/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
2 "infoURL": "https://www.live.melbourne/",
3 "whoisServer": "whois.nic.melbourne",
4 "rdapURLs": [
5 "https://rdap.nic.melbourne/"
76 ],
8 "locations": [
9 "Melbourne"
10 ],
11 "whoisServer": "whois.nic.melbourne",
127 "nameServers": [
138 "a.nic.melbourne",
149 "b.nic.melbourne",
1510 "c.nic.melbourne",
1611 "d.nic.melbourne"
12 ],
13 "locations": [
14 "Melbourne"
15 ],
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "meme",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "memorial",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.memorial",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.memorial",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "men",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.men",
4 "rdapURLs": [
5 "https://rdap.nic.men/"
56 ],
6 "whoisServer": "whois.nic.men",
77 "nameServers": [
88 "a.nic.men",
99 "b.nic.men",
1010 "c.nic.men",
1111 "d.nic.men"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "menu",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.menu",
3 "rdapURLs": [
4 "https://rdap.nic.menu/"
45 ],
5 "whoisServer": "whois.nic.menu",
66 "nameServers": [
77 "a.nic.menu",
88 "b.nic.menu",
99 "c.nic.menu",
1010 "d.nic.menu"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "menu.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "merckmsd",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/merckmsd/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "metlife",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.metlife",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.metlife",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "mex.com",
2 "tags": [
3 "private"
2 "rdapURLs": [
3 "https://rdap.centralnic.com/mex.com/"
44 ],
55 "nameServers": [
66 "ns1.centralnic.net",
88 "ns3.centralnic.net",
99 "ns4.centralnic.net"
1010 ],
11 "wildcards": [
12 "54.153.56.183",
13 "mex.com"
11 "tags": [
12 "private"
1413 ],
1514 "policies": [
1615 {
00 {
11 "domain": "mf",
2 "infoURL": "http://en.wikipedia.org/wiki/.mf",
2 "infoURL": "https://en.wikipedia.org/wiki/.mf",
33 "tags": [
44 "country",
55 "geo",
00 {
11 "domain": "mg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.mg",
73 "nameServers": [
84 "censvrns0001.ird.fr",
117 "ns.nic.mg",
128 "pch.nic.mg"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "mh",
2 "nameServers": [
3 "ns.amarshallinc.com",
4 "ns.ntamar.net"
5 ],
26 "tags": [
37 "closed",
48 "country",
59 "geo"
6 ],
7 "nameServers": [
8 "ns.amarshallinc.com",
9 "ns.ntamar.net"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "miami",
22 "infoURL": "http://nic.miami/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.miami",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/miami/"
76 ],
8 "locations": [
9 "Miami"
10 ],
11 "whoisServer": "whois.nic.miami",
127 "nameServers": [
138 "dns1.nic.miami",
149 "dns2.nic.miami",
1813 "dnsb.nic.miami",
1914 "dnsc.nic.miami",
2015 "dnsd.nic.miami"
16 ],
17 "locations": [
18 "Miami"
19 ],
20 "tags": [
21 "city",
22 "generic",
23 "geo"
2124 ],
2225 "policies": [
2326 {
00 {
11 "domain": "microsoft",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/microsoft/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "mil",
2 "tags": [
3 "generic",
4 "sponsored"
5 ],
62 "whoisServer": "is-1.nic.mil",
73 "nameServers": [
84 "con1.nipr.mil",
128 "pac1.nipr.mil",
139 "pac2.nipr.mil"
1410 ],
11 "tags": [
12 "generic",
13 "sponsored"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "mil.ni",
22 "nameServers": [
3 "auth01.ns.uu.net",
43 "dns-ext.nic.cr",
54 "ns.ideay.net.ni",
65 "ns.ni",
00 {
11 "domain": "mil.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np.cctld.authdns.ripe.net",
55 "ns-ext.vix.com",
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "mini",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mini",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/mini/"
66 ],
7 "whoisServer": "whois.nic.mini",
87 "nameServers": [
98 "a.nic.mini",
109 "b.nic.mini",
1110 "c.nic.mini",
1211 "d.nic.mini"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "mint",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mint",
4 "rdapURLs": [
5 "https://rdap.nic.mint/"
66 ],
7 "whoisServer": "whois.nic.mint",
87 "nameServers": [
98 "ns1.dns.nic.mint",
109 "ns2.dns.nic.mint",
1312 "ns5.dns.nic.mint",
1413 "ns6.dns.nic.mint"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/mint_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/mint_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/mint_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/mint_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/mint_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/mint_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/mint_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/mint_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/mint_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/mint_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/mint_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/mint_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/mint_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/mint_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/mint_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/mint_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "mit",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/mit/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.mit",
109 "a2.nic.mit",
1110 "b0.nic.mit",
1211 "c0.nic.mit"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "mitsubishi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/mitsubishi_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "mk",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.marnet.mk",
73 "nameServers": [
84 "d.ext.nic.cz",
106 "ns2.arnes.si",
117 "tld1.marnet.mk"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "ml",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dot.ml",
73 "nameServers": [
84 "a.ns.ml",
95 "b.ns.ml",
106 "c.ns.ml",
117 "d.ns.ml"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "mlb",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mlb",
4 "rdapURLs": [
5 "https://rdap.nic.mlb/"
66 ],
7 "whoisServer": "whois.nic.mlb",
87 "nameServers": [
98 "ns1.dns.nic.mlb",
109 "ns2.dns.nic.mlb",
1312 "ns5.dns.nic.mlb",
1413 "ns6.dns.nic.mlb"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/mlb_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "mls",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.mls",
4 "rdapURLs": [
5 "https://rdap.mls.fury.ca/rdap/"
56 ],
6 "whoisServer": "whois.nic.mls",
77 "nameServers": [
88 "a.ns.nic.mls",
99 "b.ns.nic.mls"
10 ],
11 "tags": [
12 "generic"
1013 ],
1114 "policies": [
1215 {
00 {
11 "domain": "mm",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisServer": "whois.registry.gov.mm",
83 "nameServers": [
94 "a.nic.net.mm",
116 "c.nic.net.mm",
127 "d.nic.net.mm"
138 ],
9 "tags": [
10 "closed",
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "mma",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mma",
4 "rdapURLs": [
5 "https://rdap.nic.mma/"
66 ],
7 "whoisServer": "whois.nic.mma",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "mn",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.mn",
73 "nameServers": [
84 "a0.cctld.afilias-nst.info",
1612 "ns3.magic.mn",
1713 "ns4.magic.mn"
1814 ],
15 "tags": [
16 "country",
17 "geo"
18 ],
1919 "policies": [
2020 {
2121 "type": "idn-disallowed"
00 {
11 "domain": "mo",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.monic.mo",
73 "nameServers": [
84 "a.monic.mo",
139 "ns17.cdns.net",
1410 "ns2.cuhk.edu.hk"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "mobi",
22 "infoURL": "https://dotmobi.mobi/",
3 "tags": [
4 "generic",
5 "sponsored"
3 "whoisServer": "whois.nic.mobi",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/mobi/"
66 ],
7 "whoisServer": "whois.nic.mobi",
87 "nameServers": [
98 "a0.mobi.afilias-nst.info",
109 "a2.mobi.afilias-nst.info",
1211 "b2.mobi.afilias-nst.org",
1312 "c0.mobi.afilias-nst.info",
1413 "d0.mobi.afilias-nst.org"
14 ],
15 "tags": [
16 "generic",
17 "sponsored"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "mobi.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "mobi.ps",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
85 ],
9 "wildcards": [
10 "144.76.162.245",
11 "mobi.ps"
6 "tags": [
7 "private"
128 ]
139 }
00 {
11 "domain": "mobile",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.mobile",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/mobile/"
56 ],
6 "whoisServer": "whois.nic.mobile",
77 "nameServers": [
88 "a0.nic.mobile",
99 "a2.nic.mobile",
1010 "b0.nic.mobile",
1111 "c0.nic.mobile"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "mobily",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.mobily",
34 "tags": [
45 "generic"
56 ],
6 "whoisServer": "whois.nic.mobily",
77 "policies": [
88 {
99 "type": "idn-disallowed"
00 {
11 "domain": "moda",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.moda",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.moda",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "moe",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.moe",
3 "rdapURLs": [
4 "https://rdap.nic.moe/"
45 ],
5 "whoisServer": "whois.nic.moe",
66 "nameServers": [
77 "ns1.dns.nic.moe",
88 "ns2.dns.nic.moe",
1111 "ns5.dns.nic.moe",
1212 "ns6.dns.nic.moe"
1313 ],
14 "tags": [
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
1720 "key": "ja",
18 "value": "https://www.iana.org/domains/idn-tables/tables/moe_ja_1.0.txt"
21 "value": "https://www.iana.org/domains/idn-tables/tables/moe_ja_3.0.xml"
1922 }
2023 ]
2124 }
00 {
11 "domain": "moi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.moi",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/moi/"
66 ],
7 "whoisServer": "whois.nic.moi",
87 "nameServers": [
98 "dns1.nic.moi",
109 "dns2.nic.moi",
1413 "dnsb.nic.moi",
1514 "dnsc.nic.moi",
1615 "dnsd.nic.moi"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "mom",
2 "infoURL": "http://nic.mom/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.mom/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/mom_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "monash",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.monash",
4 "rdapURLs": [
5 "https://rdap.nic.monash/"
66 ],
7 "whoisServer": "whois.nic.monash",
87 "nameServers": [
98 "a.nic.monash",
109 "b.nic.monash",
1110 "c.nic.monash",
1211 "d.nic.monash"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "money",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.money",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.money",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "monster",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.monster",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/monster/"
66 ],
7 "whoisServer": "whois.nic.monster",
87 "nameServers": [
98 "a.nic.monster",
109 "b.nic.monster",
1110 "c.nic.monster",
1211 "d.nic.monster"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "mopar",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "mormon",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mormon",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/mormon/"
66 ],
7 "whoisServer": "whois.nic.mormon",
87 "nameServers": [
98 "a0.nic.mormon",
109 "a2.nic.mormon",
1110 "b0.nic.mormon",
1211 "c0.nic.mormon"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "mortgage",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.mortgage",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.mortgage",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "moscow",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.moscow",
4 "rdapURLs": [
5 "https://flexireg.net/moscow/rdap/"
6 ],
7 "nameServers": [
8 "a.dns.flexireg.ru",
9 "b.dns.flexireg.net",
10 "c.dns.flexireg.org",
11 "d.dns.flexireg.domains"
712 ],
813 "locations": [
914 "Moscow",
1015 "RU-MOW"
1116 ],
12 "whoisServer": "whois.nic.moscow",
13 "nameServers": [
14 "a.dns.flexireg.ru",
15 "b.dns.flexireg.net",
16 "c.dns.flexireg.org",
17 "d.dns.flexireg.domains"
17 "tags": [
18 "city",
19 "generic",
20 "geo"
1821 ],
1922 "policies": [
2023 {
00 {
11 "domain": "moto",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.moto",
4 "rdapURLs": [
5 "https://rdap.nic.moto/"
56 ],
6 "whoisServer": "whois.nic.moto",
77 "nameServers": [
88 "ns1.dns.nic.moto",
99 "ns2.dns.nic.moto",
1212 "ns5.dns.nic.moto",
1313 "ns6.dns.nic.moto"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "da",
22 "value": "https://www.iana.org/domains/idn-tables/tables/moto_da_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "de",
27 "value": "https://www.iana.org/domains/idn-tables/tables/moto_de_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "es",
32 "value": "https://www.iana.org/domains/idn-tables/tables/moto_es_3.0.xml"
33 },
34 {
35 "type": "idn-table",
36 "key": "fi",
37 "value": "https://www.iana.org/domains/idn-tables/tables/moto_fi_3.0.xml"
38 },
39 {
40 "type": "idn-table",
41 "key": "fr",
42 "value": "https://www.iana.org/domains/idn-tables/tables/moto_fr_3.0.xml"
43 },
44 {
45 "type": "idn-table",
46 "key": "hu",
47 "value": "https://www.iana.org/domains/idn-tables/tables/moto_hu_3.0.xml"
48 },
49 {
50 "type": "idn-table",
51 "key": "is",
52 "value": "https://www.iana.org/domains/idn-tables/tables/moto_is_3.0.xml"
53 },
54 {
55 "type": "idn-table",
56 "key": "ja",
57 "value": "https://www.iana.org/domains/idn-tables/tables/moto_ja_3.0.xml"
58 },
59 {
60 "type": "idn-table",
61 "key": "ko",
62 "value": "https://www.iana.org/domains/idn-tables/tables/moto_ko_3.0.xml"
63 },
64 {
65 "type": "idn-table",
66 "key": "lt",
67 "value": "https://www.iana.org/domains/idn-tables/tables/moto_lt_3.0.xml"
68 },
69 {
70 "type": "idn-table",
71 "key": "lv",
72 "value": "https://www.iana.org/domains/idn-tables/tables/moto_lv_3.0.xml"
73 },
74 {
75 "type": "idn-table",
76 "key": "no",
77 "value": "https://www.iana.org/domains/idn-tables/tables/moto_no_3.0.xml"
78 },
79 {
80 "type": "idn-table",
81 "key": "pl",
82 "value": "https://www.iana.org/domains/idn-tables/tables/moto_pl_3.0.xml"
83 },
84 {
85 "type": "idn-table",
86 "key": "pt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/moto_pt_3.0.xml"
88 },
89 {
90 "type": "idn-table",
91 "key": "ru",
92 "value": "https://www.iana.org/domains/idn-tables/tables/moto_ru_3.0.xml"
93 },
94 {
95 "type": "idn-table",
96 "key": "sv",
97 "value": "https://www.iana.org/domains/idn-tables/tables/moto_sv_3.0.xml"
98 },
99 {
100 "type": "idn-table",
101 "key": "zh",
102 "value": "https://www.iana.org/domains/idn-tables/tables/moto_zh_3.0.xml"
18103 }
19104 ]
20105 }
00 {
11 "domain": "motorcycles",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.motorcycles",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/motorcycles/"
6 ],
7 "nameServers": [
8 "a.nic.motorcycles",
9 "b.nic.motorcycles",
10 "c.nic.motorcycles",
11 "d.nic.motorcycles"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.motorcycles",
9 "a2.nic.motorcycles",
10 "b0.nic.motorcycles",
11 "c0.nic.motorcycles"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "mov",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "movie",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.movie",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.movie",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "movistar",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois-fe.movistar.tango.knipp.de",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois-fe.movistar.tango.knipp.de",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "mp",
2 "infoURL": "http://chi.mp/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://get.mp/",
73 "whoisServer": "whois.nic.mp",
84 "nameServers": [
95 "ns1.nic.mp",
117 "ns3.nic.mp",
128 "ns4.nic.mp"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "mq",
2 "infoURL": "https://www.dom-enic.com/",
3 "whoisServer": "whois.mediaserv.net",
4 "nameServers": [
5 "ns1-gp.mediaserv.net",
6 "ns1-mq.mediaserv.net"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.mediaserv.net",
7 "whoisURL": "https://www.dom-enic.com/whois.html",
8 "nameServers": [
9 "ns1-fr.mediaserv.net",
10 "ns1-gp.mediaserv.net",
11 "ns1-mq.mediaserv.net"
1211 ],
1312 "policies": [
1413 {
00 {
11 "domain": "mr",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.mr",
73 "nameServers": [
84 "ns-mr.afrinic.net",
128 "ns2.nic.mr",
139 "ns3.nic.mr"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "ms",
2 "whoisServer": "whois.nic.ms",
3 "nameServers": [
4 "ms-ns.anycast.pch.net",
5 "ns.cocca.fr"
6 ],
27 "tags": [
38 "country",
49 "generic",
510 "geo"
6 ],
7 "whoisServer": "whois.nic.ms",
8 "nameServers": [
9 "ms-ns.anycast.pch.net",
10 "ns.cocca.fr"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "msd",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/msd/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "mt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "https://www.nic.org.mt/dotmt/",
73 "nameServers": [
84 "a.ns.mt",
106 "f.ns.mt",
117 "p.ns.mt"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "mtn",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.mtn",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/mtn/"
6 ],
7 "nameServers": [
8 "dns1.nic.mtn",
9 "dns2.nic.mtn",
10 "dns3.nic.mtn",
11 "dns4.nic.mtn",
12 "dnsa.nic.mtn",
13 "dnsb.nic.mtn",
14 "dnsc.nic.mtn",
15 "dnsd.nic.mtn"
16 ],
317 "tags": [
418 "brand",
519 "generic"
6 ],
7 "whoisServer": "whois.nic.mtn",
8 "nameServers": [
9 "a.nic.mtn",
10 "b.nic.mtn",
11 "c.nic.mtn",
12 "d.nic.mtn"
1320 ],
1421 "policies": [
1522 {
00 {
11 "domain": "mtpc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.mtpc",
34 "tags": [
45 "brand",
56 "generic",
67 "withdrawn"
78 ],
8 "whoisServer": "whois.nic.mtpc",
99 "policies": [
1010 {
1111 "type": "idn-disallowed"
00 {
11 "domain": "mtr",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mtr",
4 "rdapURLs": [
5 "https://whois.nic.mtr/rdap/"
66 ],
7 "whoisServer": "whois.nic.mtr",
87 "nameServers": [
98 "ns1.nic.mtr",
109 "ns2.nic.mtr",
1110 "ns3.nic.mtr",
1211 "ns4.nic.mtr"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "mu",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.mu",
73 "nameServers": [
84 "anycast1.irondns.net",
106 "udns1.tld.mu",
117 "udns2.tld.mu"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "museum",
2 "infoURL": "http://about.museum/",
3 "tags": [
4 "generic",
5 "sponsored"
2 "infoURL": "https://welcome.museum/",
3 "whoisServer": "whois.nic.museum",
4 "rdapURLs": [
5 "https://rdap.nic.museum/"
66 ],
7 "whoisServer": "whois.nic.museum",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
11 ],
12 "tags": [
13 "generic",
14 "sponsored"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "museum.mw",
22 "nameServers": [
3 "ns1.dns.com",
4 "ns2.dns.com"
3 "a.dnspod.com",
4 "b.dnspod.com",
5 "c.dnspod.com"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "museum.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "pch.nnic.np",
00 {
11 "domain": "mutual",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.mutual",
4 "rdapURLs": [
5 "https://rdap.nic.mutual/"
66 ],
7 "whoisServer": "whois.nic.mutual",
87 "nameServers": [
98 "ns1.dns.nic.mutual",
109 "ns2.dns.nic.mutual",
1312 "ns5.dns.nic.mutual",
1413 "ns6.dns.nic.mutual"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/mutual_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "mutuelle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois-mutuelle.nic.fr",
34 "tags": [
45 "generic",
56 "retired"
67 ],
7 "whoisServer": "whois-mutuelle.nic.fr",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "mv",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "mv-ns.anycast.pch.net",
84 "ns.dhivehinet.net.mv",
95 "ns2.dhivehinet.net.mv"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "mw",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "http://nic.mw/",
63 "whoisServer": "whois.nic.mw",
7 "whoisURL": "http://www.registrar.mw/",
84 "nameServers": [
95 "chambo.sdnp.org.mw",
106 "d.ext.nic.cz",
1410 "pch1.nic.mw",
1511 "rip.psg.com"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "mx",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.mx",
73 "nameServers": [
84 "c.mx-ns.mx",
128 "o.mx-ns.mx",
139 "x.mx-ns.mx"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
22 "nameServers": [
33 "leah.ns.cloudflare.com",
44 "noah.ns.cloudflare.com"
5 ],
6 "wildcards": [
7 "104.27.156.189",
8 "104.27.157.189",
9 "172.67.175.218",
10 "2606:4700:3031::681b:9cbd",
11 "2606:4700:3034::681b:9dbd",
12 "2606:4700:3036::ac43:afda"
135 ],
146 "policies": [
157 {
00 {
11 "domain": "my",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "https://mynic.my/",
63 "whoisServer": "whois.mynic.my",
74 "nameServers": [
85 "a.mynic.centralnic-dns.com",
118 "b.mynic.centralnic-dns.com",
129 "c.mynic.centralnic-dns.com",
1310 "d.mynic.centralnic-dns.com"
11 ],
12 "tags": [
13 "country",
14 "geo"
1415 ],
1516 "policies": [
1617 {
00 {
11 "domain": "mz",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.domains.co.mz/",
73 "whoisServer": "whois.nic.mz",
8 "whoisURL": "http://www.domains.co.mz",
94 "nameServers": [
105 "anyns.uem.mz",
116 "dzowo.uem.mz",
149 "phloem.uoregon.edu",
1510 "zebra.uem.mz"
1611 ],
12 "tags": [
13 "closed",
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "na",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.na-nic.com.na",
73 "nameServers": [
84 "anyc2.irondns.net",
106 "na-ns.anycast.pch.net",
117 "na.anycastdns.cz"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "nab",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nab",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/nab/v1/"
66 ],
7 "whoisServer": "whois.nic.nab",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "nadex",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.nadex",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.nadex",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "nagano.jp",
2 "locations": [
3 "Nagano",
4 "JP-20"
5 ],
26 "tags": [
37 "city",
48 "geo"
5 ],
6 "locations": [
7 "Nagano",
8 "JP-20"
99 ],
1010 "policies": [
1111 {
00 {
11 "domain": "nagasaki.jp",
2 "locations": [
3 "Nagasaki"
4 ],
25 "tags": [
36 "city",
47 "geo"
5 ],
6 "locations": [
7 "Nagasaki"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "nagoya",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.nagoya",
3 "rdapURLs": [
4 "https://rdap.gmoregistry.net/rdap/"
65 ],
7 "locations": [
8 "Nagoya-shi"
9 ],
10 "whoisServer": "whois.nic.nagoya",
116 "nameServers": [
127 "a.gmoregistry.net",
138 "b.gmoregistry.net",
149 "k.gmoregistry.net",
1510 "l.gmoregistry.net"
11 ],
12 "locations": [
13 "Nagoya-shi"
14 ],
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "name",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.name",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/name/v1/"
45 ],
5 "whoisServer": "whois.nic.name",
66 "nameServers": [
77 "ac1.nstld.com",
88 "ac2.nstld.com",
99 "ac3.nstld.com",
1010 "ac4.nstld.com"
1111 ],
12 "tags": [
13 "generic"
14 ],
1215 "policies": [
1316 {
1417 "type": "idn-table",
00 {
11 "domain": "name.my",
2 "infoURL": "https://mynic.my/",
23 "nameServers": [
34 "a.mynic.centralnic-dns.com",
45 "b.mynic.centralnic-dns.com",
00 {
11 "domain": "name.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns4.apnic.net",
00 {
11 "domain": "name.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "name.vu",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "name.vu"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "nationwide",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nationwide",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/nationwide/v1/"
66 ],
7 "whoisServer": "whois.nic.nationwide",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "natura",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.gtlds.nic.br",
4 "rdapURLs": [
5 "https://rdap.gtlds.nic.br/"
66 ],
7 "whoisServer": "whois.gtlds.nic.br",
87 "nameServers": [
98 "a.dns.br",
109 "b.dns.br",
1211 "d.dns.br",
1312 "e.dns.br",
1413 "f.dns.br"
14 ],
15 "tags": [
16 "brand",
17 "generic"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "navy",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.navy",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.navy",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "nba",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nba",
4 "rdapURLs": [
5 "https://rdap.nic.nba/"
66 ],
7 "whoisServer": "whois.nic.nba",
87 "nameServers": [
98 "ns1.dns.nic.nba",
109 "ns2.dns.nic.nba",
1312 "ns5.dns.nic.nba",
1413 "ns6.dns.nic.nba"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/nba_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "nc",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nc",
73 "nameServers": [
84 "any-ns1.nc",
106 "ns1.nc",
117 "ns2.nc"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "ne",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "bow.rain.fr",
84 "ne.cctld.authdns.ripe.net",
95 "ns-ne.afrinic.net",
106 "ns.intnet.ne"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "ne.pw",
22 "nameServers": [
3 "ns1.dns.com",
4 "ns2.dns.com"
3 "a.dnspod.com",
4 "b.dnspod.com",
5 "c.dnspod.com"
56 ]
67 }
00 {
11 "domain": "nec",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nec",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.nec",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/nec_ja_1.0.txt"
1722 }
1823 ]
1924 }
11 "domain": "net.af",
22 "nameServers": [
33 "ns.anycast.nic.af",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "net.ai",
22 "nameServers": [
3 "ns.cocca.fr",
43 "pch.whois.ai"
54 ],
65 "policies": [
00 {
11 "domain": "net.ba",
22 "nameServers": [
3 "bosna.utic.net.ba",
3 "auth03.ns.uu.net",
4 "ns.ba",
45 "sava.utic.net.ba",
56 "una.utic.net.ba"
67 ],
00 {
11 "domain": "net.bw",
2 "nameServers": [
3 "dns1.nic.net.bw",
4 "ns-bw.afrinic.net",
5 "pch.nic.net.bw"
6 ],
72 "policies": [
83 {
94 "type": "idn-disallowed"
00 {
11 "domain": "net.cd",
22 "nameServers": [
3 "igubu.saix.net",
4 "ns-root-1.scpt-network.com",
5 "ns-root-2.scpt-network.com",
6 "ns-root-5.scpt-network.com",
7 "sabela.saix.net",
8 "sangoma.saix.net"
3 "ns-root-21.scpt-network.net",
4 "ns-root-22.scpt-network.net"
95 ],
106 "policies": [
117 {
55 "ns1.nic.cm",
66 "ns2.nic.cm"
77 ],
8 "wildcards": [
9 "85.25.140.105"
10 ],
118 "policies": [
129 {
1310 "type": "idn-disallowed"
00 {
11 "domain": "net.cx",
22 "nameServers": [
3 "ns.anycast.nic.cx",
4 "ns.cocca.fr"
3 "ns.anycast.nic.cx"
54 ]
65 }
00 {
11 "domain": "net.gg",
22 "nameServers": [
3 "b.ci-servers.com",
43 "c.ci-servers.org",
54 "dns1.nominetdns.uk",
6 "f.ci-servers.je",
7 "g.ci-servers.gg"
5 "dns2.nominetdns.uk",
6 "dns3.nominetdns.uk",
7 "dns4.nominetdns.uk"
88 ],
99 "policies": [
1010 {
11 "domain": "net.gy",
22 "nameServers": [
33 "a.lactld.org",
4 "gy-ns.anycast.pch.net",
5 "ns.cocca.fr"
4 "gy-ns.anycast.pch.net"
65 ],
76 "policies": [
87 {
00 {
11 "domain": "net.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "net.il",
2 "infoURL": "http://www.isoc.org.il/domains/",
2 "infoURL": "https://www.isoc.org.il/domain-name-registry",
33 "nameServers": [
44 "ilns.ilan.net.il",
55 "lookup.iucc.ac.il",
00 {
11 "domain": "net.je",
22 "nameServers": [
3 "b.ci-servers.com",
43 "c.ci-servers.org",
54 "dns1.nominetdns.uk",
6 "f.ci-servers.je",
7 "g.ci-servers.gg"
5 "dns2.nominetdns.uk",
6 "dns3.nominetdns.uk",
7 "dns4.nominetdns.uk"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "net",
2 "infoURL": "http://www.verisigninc.com/en_US/products-and-services/domain-name-services/registry-services/index.xhtml",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.verisign.com/en_US/domain-names/net-domain-names/index.xhtml",
3 "whoisServer": "whois.verisign-grs.com",
4 "rdapURLs": [
5 "https://rdap.verisign.com/net/v1/"
56 ],
6 "whoisServer": "whois.verisign-grs.com",
77 "nameServers": [
88 "a.gtld-servers.net",
99 "b.gtld-servers.net",
1919 "l.gtld-servers.net",
2020 "m.gtld-servers.net"
2121 ],
22 "tags": [
23 "generic"
24 ],
2225 "policies": [
2326 {
2427 "type": "idn-table",
00 {
11 "domain": "net.lb",
22 "nameServers": [
3 "magma.aub.edu.lb",
3 "nn.uninett.no",
4 "ns3.seacomnet.com",
5 "ns4.seacomnet.com",
46 "rip.psg.com",
57 "zeina.aub.edu.lb"
68 ],
0 {
1 "domain": "net.ms",
2 "nameServers": [
3 "ns1.idnscan.net",
4 "ns6.idnscan.net"
5 ]
6 }
11 "domain": "net.mu",
22 "nameServers": [
33 "anycast1.irondns.net",
4 "fork.sth.dnsnode.net",
45 "mu1.dyntld.net",
56 "mu2.dyntld.net",
67 "mu3.dyntld.net",
78 "mu4.dyntld.net",
8 "udns1.tld.mu"
9 "udns1.tld.mu",
10 "udns2.tld.mu"
911 ],
1012 "policies": [
1113 {
00 {
11 "domain": "net.my",
2 "infoURL": "https://mynic.my/",
23 "nameServers": [
34 "a.mynic.centralnic-dns.com",
45 "b.mynic.centralnic-dns.com",
00 {
11 "domain": "net.nl",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.com.nl",
74 "ns2.com.nl"
85 ],
9 "wildcards": [
10 "185.85.211.136"
6 "tags": [
7 "private"
118 ],
129 "policies": [
1310 {
00 {
11 "domain": "net.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
22 "nameServers": [
33 "ns1390.ztomy.com",
44 "ns2390.ztomy.com"
5 ],
6 "wildcards": [
7 "141.8.226.59"
85 ],
96 "policies": [
107 {
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "net.sb",
22 "nameServers": [
3 "ns.cocca.fr",
3 "ns1.anycastdns.cz",
4 "ns2.anycastdns.cz",
45 "pch.nic.sb"
56 ],
67 "policies": [
+0
-8
metadata/net.ss.json less more
0 {
1 "domain": "net.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "pch.nic.ss"
6 ]
7 }
00 {
11 "domain": "net.td",
2 "nameServers": [
3 "ns-td.afrinic.net",
4 "ns.cocca.fr",
5 "nsa.nic.td",
6 "pch.nic.td"
7 ],
82 "policies": [
93 {
104 "type": "idn-disallowed"
11 "domain": "net.tl",
22 "nameServers": [
33 "ns.anycast.nic.tl",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "net.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
33 "ns2.dns.ws",
44 "ns3.dns.ws",
55 "ns4.dns.ws",
6 "ns5.dns.ws"
6 "ns5.dns.ws",
7 "ns6.dns.ws",
8 "ns7.dns.ws"
79 ],
810 "wildcards": [
911 "202.4.48.211"
00 {
11 "domain": "netbank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.netbank",
4 "rdapURLs": [
5 "https://rdap.nic.netbank/"
66 ],
7 "whoisServer": "whois.nic.netbank",
87 "nameServers": [
98 "a.nic.netbank",
109 "b.nic.netbank",
1110 "c.nic.netbank",
1211 "d.nic.netbank"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "netflix",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.netflix",
4 "rdapURLs": [
5 "https://rdap.nic.netflix/"
66 ],
7 "whoisServer": "whois.nic.netflix",
87 "nameServers": [
98 "ns1.dns.nic.netflix",
109 "ns2.dns.nic.netflix",
1312 "ns5.dns.nic.netflix",
1413 "ns6.dns.nic.netflix"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "network",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.network",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.network",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "neustar",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.neustar",
4 "rdapURLs": [
5 "https://rdap.nic.neustar/"
66 ],
7 "whoisServer": "whois.nic.neustar",
87 "nameServers": [
98 "ns1.dns.nic.neustar",
109 "ns2.dns.nic.neustar",
1312 "ns5.dns.nic.neustar",
1413 "ns6.dns.nic.neustar"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/neustar_es_1.0.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/neustar_es_3.0.xml"
2124 }
2225 ]
2326 }
00 {
11 "domain": "new",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "newholland",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.newholland",
34 "tags": [
45 "brand",
56 "generic"
6 ],
7 "whoisServer": "whois.nic.newholland",
8 "nameServers": [
9 "a0.nic.newholland",
10 "a2.nic.newholland",
11 "b0.nic.newholland",
12 "c0.nic.newholland"
137 ],
148 "policies": [
159 {
00 {
11 "domain": "news",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.news",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.news",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "next",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.next",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/next/v1/"
66 ],
7 "whoisServer": "whois.nic.next",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "nextdirect",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nextdirect",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/nextdirect/v1/"
66 ],
7 "whoisServer": "whois.nic.nextdirect",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "nexus",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "nf",
2 "whoisServer": "whois.nic.nf",
3 "nameServers": [
4 "ns.anycast.nic.nf",
5 "ns1.anycastdns.cz",
6 "ns2.anycastdns.cz"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.nic.nf",
7 "nameServers": [
8 "ns.anycast.nic.nf",
9 "ns.cocca.fr"
1011 ],
1112 "policies": [
1213 {
00 {
11 "domain": "nfl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nfl",
4 "rdapURLs": [
5 "https://rdap.nic.nfl/"
66 ],
7 "whoisServer": "whois.nic.nfl",
87 "nameServers": [
98 "ns1.dns.nic.nfl",
109 "ns2.dns.nic.nfl",
1312 "ns5.dns.nic.nfl",
1413 "ns6.dns.nic.nfl"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/nfl_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "ng",
2 "infoURL": "www.web4africa.com.ng",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://web4africa.ng/ng-domains/",
73 "whoisServer": "whois.nic.net.ng",
84 "nameServers": [
95 "ns1.nic.net.ng",
117 "ns5.nic.net.ng",
128 "nsa.nic.net.ng"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "ngo",
22 "infoURL": "https://pir.org/products/ngo-ong-domain/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.publicinterestregistry.net",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/ngo/"
56 ],
6 "whoisServer": "whois.publicinterestregistry.net",
77 "nameServers": [
88 "a0.nic.ngo",
99 "a2.nic.ngo",
1111 "b2.nic.ngo",
1212 "c0.nic.ngo",
1313 "d0.nic.ngo"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "nhk",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nhk",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.nhk",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
3437 },
3538 {
3639 "type": "idn-table",
40 "key": "pl",
41 "value": "https://www.iana.org/domains/idn-tables/tables/nhk_pl_1.0.txt"
42 },
43 {
44 "type": "idn-table",
3745 "key": "pt",
3846 "value": "https://www.iana.org/domains/idn-tables/tables/nhk_pt_1.0.txt"
3947 },
00 {
11 "domain": "ni",
2 "infoURL": "http://www.nic.ni/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "https://www.nic.ni/",
83 "whoisURL": "http://www.nic.ni/",
94 "nameServers": [
105 "dns-ext.nic.cr",
149 "ns2.ni",
1510 "ns3.ni"
1611 ],
12 "tags": [
13 "closed",
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "nico",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nico",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.nico",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "nike",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nike",
4 "rdapURLs": [
5 "https://rdap.nic.nike/"
66 ],
7 "whoisServer": "whois.nic.nike",
87 "nameServers": [
98 "ns1.dns.nic.nike",
109 "ns2.dns.nic.nike",
1312 "ns5.dns.nic.nike",
1413 "ns6.dns.nic.nike"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/nike_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "nikon",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nikon",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/nikon/v1/"
66 ],
7 "whoisServer": "whois.nic.nikon",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ninja",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.ninja",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.ninja",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "ninja.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "nissan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
4144 "type": "idn-table",
4245 "key": "pt",
4346 "value": "https://www.iana.org/domains/idn-tables/tables/nissan_pt_1.0.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "zh",
51 "value": "https://www.iana.org/domains/idn-tables/tables/nissan_zh_1.1.txt"
4452 }
4553 ]
4654 }
00 {
11 "domain": "nissay",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nissay",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/nissay/v1/"
66 ],
7 "whoisServer": "whois.nic.nissay",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "nl",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.domain-registry.nl",
73 "nameServers": [
84 "ns1.dns.nl",
95 "ns2.dns.nl",
106 "ns3.dns.nl"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "no.com",
2 "whoisServer": "whois.centralnic.com",
3 "nameServers": [
4 "pdns07.domaincontrol.com",
5 "pdns08.domaincontrol.com"
6 ],
27 "tags": [
38 "private"
4 ],
5 "whoisServer": "whois.centralnic.com",
6 "nameServers": [
7 "ns29.domaincontrol.com",
8 "ns30.domaincontrol.com"
99 ]
1010 }
00 {
11 "domain": "no",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.norid.no",
3 "rdapURLs": [
4 "https://rdap.norid.no/"
55 ],
6 "whoisServer": "whois.norid.no",
76 "nameServers": [
87 "i.nic.no",
98 "njet.norid.no",
1110 "x.nic.no",
1211 "y.nic.no",
1312 "z.nic.no"
13 ],
14 "tags": [
15 "country",
16 "geo"
1417 ]
1518 }
00 {
11 "domain": "nokia",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/nokia/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.nokia",
109 "a2.nic.nokia",
1110 "b0.nic.nokia",
1211 "c0.nic.nokia"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
9497 },
9598 {
9699 "type": "idn-table",
100 "key": "sr-ME",
101 "value": "https://www.iana.org/domains/idn-tables/tables/nokia_sr-me_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "sv",
106 "value": "https://www.iana.org/domains/idn-tables/tables/nokia_sv_1.txt"
107 },
108 {
109 "type": "idn-table",
97110 "key": "uk",
98111 "value": "https://www.iana.org/domains/idn-tables/tables/nokia_uk_1.txt"
99112 },
00 {
11 "domain": "nom.es",
22 "nameServers": [
3 "c.nic.es",
34 "fnicdos.rediris.es",
45 "g.nic.es",
56 "h.nic.es",
11 "domain": "nom.ni",
22 "nameServers": [
33 "dns-ext.nic.cr",
4 "dns.nic.cr",
45 "ns.ideay.net.ni",
56 "ns.ni",
67 "ns.uu.net",
44 "ns2.hostnetbv.com",
55 "ns3.hostnetbv.nl"
66 ],
7 "wildcards": [
8 "136.144.154.12"
9 ],
107 "policies": [
118 {
129 "type": "idn-disallowed"
55 "secdns1.posix.co.za",
66 "za-ns.anycast.pch.net"
77 ],
8 "wildcards": [
9 "78.31.111.139"
10 ],
118 "policies": [
129 {
1310 "type": "idn-disallowed"
00 {
11 "domain": "northwesternmutual",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.northwesternmutual",
4 "rdapURLs": [
5 "https://rdap.nic.northwesternmutual/"
66 ],
7 "whoisServer": "whois.nic.northwesternmutual",
87 "nameServers": [
98 "ns1.dns.nic.northwesternmutual",
109 "ns2.dns.nic.northwesternmutual",
1312 "ns5.dns.nic.northwesternmutual",
1413 "ns6.dns.nic.northwesternmutual"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/northwesternmutual_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "norton",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.norton",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/norton/v1/"
66 ],
7 "whoisServer": "whois.nic.norton",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "now",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.now",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/now/"
56 ],
6 "whoisServer": "whois.nic.now",
77 "nameServers": [
88 "dns1.nic.now",
99 "dns2.nic.now",
1313 "dnsb.nic.now",
1414 "dnsc.nic.now",
1515 "dnsd.nic.now"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "nowruz",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nowruz",
4 "rdapURLs": [
5 "https://api.rdap.agitsys.net/"
6 ],
7 "nameServers": [
8 "a.ns.nic.nowruz",
9 "b.ns.nic.nowruz",
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
612 ],
713 "locations": [
814 "Iran"
915 ],
10 "whoisServer": "whois.nic.nowruz",
11 "nameServers": [
12 "a.ns.nic.nowruz",
13 "b.ns.nic.nowruz",
14 "ns.cocca.fr"
16 "tags": [
17 "brand",
18 "generic"
1519 ],
1620 "policies": [
1721 {
00 {
11 "domain": "nowtv",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.nowtv",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/nowtv/"
66 ],
7 "whoisServer": "whois.nic.nowtv",
87 "nameServers": [
98 "a0.nic.nowtv",
109 "a2.nic.nowtv",
1110 "b0.nic.nowtv",
1211 "c0.nic.nowtv"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "zh-CN",
21 "value": "https://www.iana.org/domains/idn-tables/tables/nowtv_zh-cn_4.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-TW",
26 "value": "https://www.iana.org/domains/idn-tables/tables/nowtv_zh-tw_4.0.txt"
1727 }
1828 ]
1929 }
00 {
11 "domain": "np",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisURL": "http://register.mos.com.np/np-whois-lookup",
83 "nameServers": [
94 "np-ns.npix.net.np",
127 "pch.nnic.np",
138 "shikhar.mos.com.np"
149 ],
10 "tags": [
11 "closed",
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "nr",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.cenpac.net.nr/dns/whois.html",
73 "nameServers": [
84 "ns0.cenpac.net.nr",
106 "ns2.cenpac.net.nr",
117 "phloem.uoregon.edu"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "nra",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/nra/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.nra",
109 "a2.nic.nra",
1110 "b0.nic.nra",
1211 "c0.nic.nra"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "nrw",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.nrw",
4 "rdapURLs": [
5 "https://rdap.nic.nrw/"
66 ],
7 "locations": [
8 "DE-NW"
9 ],
10 "whoisServer": "whois.nic.nrw",
117 "nameServers": [
128 "anycast10.irondns.net",
139 "anycast23.irondns.net",
1410 "anycast24.irondns.net",
1511 "anycast9.irondns.net"
12 ],
13 "locations": [
14 "DE-NW"
15 ],
16 "tags": [
17 "generic",
18 "region"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "nsw.au",
2 "tags": [
3 "geo"
4 ],
5 "locations": [
6 "AU-NSW"
7 ],
82 "nameServers": [
93 "q.au",
104 "r.au",
115 "s.au",
126 "t.au"
7 ],
8 "locations": [
9 "AU-NSW"
10 ],
11 "tags": [
12 "geo"
1313 ],
1414 "policies": [
1515 {
00 {
11 "domain": "ntt",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://rdap.nic.ntt/rdap/"
65 ],
76 "nameServers": [
87 "tld1.nic.ntt",
98 "tld2.nic.ntt",
109 "tld3.nic.ntt",
1110 "tld5.nic.ntt"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "nu",
2 "infoURL": "http://www.nic.nu/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://www.nic.nu/",
83 "whoisServer": "whois.iis.nu",
94 "nameServers": [
105 "a.ns.nu",
149 "y.ns.nu",
1510 "z.ns.nu"
1611 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-table",
2020 "key": "mul-Latn",
2121 "value": "https://www.iis.se/docs/nu_teckentabell-01.pdf",
2222 "comment": "https://www.iis.se/english/domains/nu/idn/"
23 },
24 {
25 "type": "idn-table",
26 "key": "und-Latn",
27 "value": "https://www.iana.org/domains/idn-tables/tables/nu_und-latn_2.xml"
2328 }
2429 ]
2530 }
44 "park2.encirca.net"
55 ],
66 "wildcards": [
7 "107.23.61.162",
8 "52.207.204.172",
9 "52.70.72.251",
10 "54.87.195.23"
7 "3.209.180.95"
118 ],
129 "policies": [
1310 {
00 {
11 "domain": "nv.com",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "a.root-servers.nv.com",
74 "b.root-servers.nv.com",
1512 "205.159.223.111",
1613 "hosting.gi.net"
1714 ],
15 "tags": [
16 "private"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-disallowed"
00 {
11 "domain": "nyc",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.nyc",
3 "rdapURLs": [
4 "https://rdap.nic.nyc/"
65 ],
7 "locations": [
8 "New York City"
9 ],
10 "whoisServer": "whois.nic.nyc",
116 "nameServers": [
127 "ns1.dns.nic.nyc",
138 "ns2.dns.nic.nyc",
1611 "ns5.dns.nic.nyc",
1712 "ns6.dns.nic.nyc"
1813 ],
14 "locations": [
15 "New York City"
16 ],
17 "tags": [
18 "city",
19 "generic",
20 "geo"
21 ],
1922 "policies": [
2023 {
2124 "type": "idn-table",
2225 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/nyc_es_1.1.txt"
26 "value": "https://www.iana.org/domains/idn-tables/tables/nyc_es_3.0.xml"
2427 }
2528 ]
2629 }
00 {
11 "domain": "nz",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.srs.net.nz",
73 "nameServers": [
84 "ns1.dns.net.nz",
139 "ns6.dns.net.nz",
1410 "ns7.dns.net.nz"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-table",
00 {
11 "domain": "obi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.obi",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/obi/v1/"
66 ],
7 "whoisServer": "whois.nic.obi",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "observer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.observer",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "brand",
515 "generic"
6 ],
7 "whoisServer": "whois.nic.observer",
8 "nameServers": [
9 "a.nic.observer",
10 "b.nic.observer",
11 "c.nic.observer",
12 "d.nic.observer"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "off.ai",
22 "nameServers": [
3 "ns.cocca.fr",
43 "pch.whois.ai"
54 ],
65 "policies": [
00 {
11 "domain": "off",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.off",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/off/v1/"
66 ],
7 "whoisServer": "whois.nic.off",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "office",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.office",
4 "rdapURLs": [
5 "https://rdap.nic.office/"
66 ],
7 "whoisServer": "whois.nic.office",
87 "nameServers": [
98 "ns1.dns.nic.office",
109 "ns2.dns.nic.office",
1312 "ns5.dns.nic.office",
1413 "ns6.dns.nic.office"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/office_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/office_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/office_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/office_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/office_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/office_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/office_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/office_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/office_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/office_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/office_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/office_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/office_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/office_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/office_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/office_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "okinawa",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.okinawa",
3 "rdapURLs": [
4 "https://rdap.gmoregistry.net/rdap/"
5 ],
6 "nameServers": [
7 "a.gmoregistry.net",
8 "b.gmoregistry.net",
9 "k.gmoregistry.net",
10 "l.gmoregistry.net"
611 ],
712 "locations": [
813 "Okinawa",
914 "JP-47"
1015 ],
11 "whoisServer": "whois.nic.okinawa",
12 "nameServers": [
13 "a.gmoregistry.net",
14 "b.gmoregistry.net",
15 "k.gmoregistry.net",
16 "l.gmoregistry.net"
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "olayan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.olayan",
4 "rdapURLs": [
5 "https://rdap.nic.olayan/"
66 ],
7 "whoisServer": "whois.nic.olayan",
87 "nameServers": [
98 "a.nic.olayan",
109 "b.nic.olayan",
1110 "c.nic.olayan",
1211 "d.nic.olayan"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/olayan_ar_3.0.xml"
1722 }
1823 ]
1924 }
00 {
11 "domain": "olayangroup",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.olayangroup",
4 "rdapURLs": [
5 "https://rdap.nic.olayangroup/"
66 ],
7 "whoisServer": "whois.nic.olayangroup",
87 "nameServers": [
98 "a.nic.olayangroup",
109 "b.nic.olayangroup",
1110 "c.nic.olayangroup",
1211 "d.nic.olayangroup"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/olayangroup_ar_3.0.xml"
1722 }
1823 ]
1924 }
00 {
11 "domain": "oldnavy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.oldnavy",
4 "rdapURLs": [
5 "https://rdap.nic.oldnavy/"
66 ],
7 "whoisServer": "whois.nic.oldnavy",
87 "nameServers": [
98 "ns1.dns.nic.oldnavy",
109 "ns2.dns.nic.oldnavy",
1312 "ns5.dns.nic.oldnavy",
1413 "ns6.dns.nic.oldnavy"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/oldnavy_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "ollo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ollo",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ollo/"
66 ],
7 "whoisServer": "whois.nic.ollo",
87 "nameServers": [
98 "a0.nic.ollo",
109 "a2.nic.ollo",
1110 "b0.nic.ollo",
1211 "c0.nic.ollo"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "om",
2 "infoURL": "http://www.registry.om",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "http://www.registry.om/",
73 "whoisServer": "whois.registry.om",
84 "nameServers": [
95 "cctld.alpha.aridns.net.au",
139 "ns1.registry.om",
1410 "ns2.registry.om"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "omega",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.omega",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/omega/v1/"
66 ],
7 "whoisServer": "whois.nic.omega",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "one",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.one",
4 "rdapURLs": [
5 "https://rdap.nic.one/"
56 ],
6 "whoisServer": "whois.nic.one",
77 "nameServers": [
88 "a.nic.one",
99 "b.nic.one",
1010 "c.nic.one",
1111 "d.nic.one"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ong",
22 "infoURL": "https://pir.org/products/ngo-ong-domain/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.publicinterestregistry.net",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/ong/"
56 ],
6 "whoisServer": "whois.publicinterestregistry.net",
77 "nameServers": [
88 "a0.nic.ong",
99 "a2.nic.ong",
1212 "c0.nic.ong",
1313 "d0.nic.ong"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
00 {
11 "domain": "onl",
2 "infoURL": "http://nic.onl/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.onl/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/onl/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.onl",
99 "a2.nic.onl",
1010 "b0.nic.onl",
1111 "c0.nic.onl"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "be",
20 "value": "https://www.iana.org/domains/idn-tables/tables/onl_be_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "bg",
25 "value": "https://www.iana.org/domains/idn-tables/tables/onl_bg_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bs",
30 "value": "https://www.iana.org/domains/idn-tables/tables/onl_bs_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "da",
35 "value": "https://www.iana.org/domains/idn-tables/tables/onl_da_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "de",
40 "value": "https://www.iana.org/domains/idn-tables/tables/onl_de_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "es",
45 "value": "https://www.iana.org/domains/idn-tables/tables/onl_es_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "hu",
50 "value": "https://www.iana.org/domains/idn-tables/tables/onl_hu_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "is",
55 "value": "https://www.iana.org/domains/idn-tables/tables/onl_is_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/onl_ko_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/onl_lt_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/onl_lv_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "mk",
75 "value": "https://www.iana.org/domains/idn-tables/tables/onl_mk_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/onl_pl_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/onl_ru_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "sr",
90 "value": "https://www.iana.org/domains/idn-tables/tables/onl_sr_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "sr-ME",
95 "value": "https://www.iana.org/domains/idn-tables/tables/onl_sr-me_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "sv",
100 "value": "https://www.iana.org/domains/idn-tables/tables/onl_sv_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "uk",
105 "value": "https://www.iana.org/domains/idn-tables/tables/onl_uk_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "zh-CN",
110 "value": "https://www.iana.org/domains/idn-tables/tables/onl_zh-cn_4.0.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "zh-TW",
115 "value": "https://www.iana.org/domains/idn-tables/tables/onl_zh-tw_4.0.txt"
16116 }
17117 ]
18118 }
00 {
11 "domain": "onl.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "online.gp",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "online.gp"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "online",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.online",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/online/"
56 ],
6 "whoisServer": "whois.nic.online",
77 "nameServers": [
88 "a.nic.online",
99 "b.nic.online",
1010 "e.nic.online",
1111 "f.nic.online"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3437 {
3538 "type": "idn-table",
3639 "key": "lo",
37 "value": "https://www.iana.org/domains/idn-tables/tables/online_lo_1.1.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/online_lo_2.0.txt"
3841 },
3942 {
4043 "type": "idn-table",
4144 "key": "mul-Cyrl",
42 "value": "https://www.iana.org/domains/idn-tables/tables/online_cyrl_1.0.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/online_cyrl_1.1.txt"
4346 },
4447 {
4548 "type": "idn-table",
5457 {
5558 "type": "idn-table",
5659 "key": "th",
57 "value": "https://www.iana.org/domains/idn-tables/tables/online_th_1.1.txt"
60 "value": "https://www.iana.org/domains/idn-tables/tables/online_th_2.0.txt"
5861 },
5962 {
6063 "type": "idn-table",
6164 "key": "zh",
62 "value": "https://www.iana.org/domains/idn-tables/tables/online_zh_1.2.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/online_zh_1.0.txt"
6366 }
6467 ]
6568 }
00 {
11 "domain": "onyourside",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.onyourside",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/onyourside/v1/"
66 ],
7 "whoisServer": "whois.nic.onyourside",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ooo",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.ooo",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/ooo/"
45 ],
5 "whoisServer": "whois.nic.ooo",
66 "nameServers": [
77 "a.nic.ooo",
88 "b.nic.ooo",
99 "c.nic.ooo",
1010 "d.nic.ooo"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "open",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.open",
4 "rdapURLs": [
5 "https://rdap.nic.open/"
66 ],
7 "whoisServer": "whois.nic.open",
87 "nameServers": [
98 "ns1.dns.nic.open",
109 "ns2.dns.nic.open",
1312 "ns5.dns.nic.open",
1413 "ns6.dns.nic.open"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/open_es_3.0.xml"
1924 }
2025 ]
2126 }
11 "domain": "or.mu",
22 "nameServers": [
33 "anycast1.irondns.net",
4 "fork.sth.dnsnode.net",
45 "mu1.dyntld.net",
56 "mu2.dyntld.net",
67 "mu3.dyntld.net",
78 "mu4.dyntld.net",
8 "udns1.tld.mu"
9 "udns1.tld.mu",
10 "udns2.tld.mu"
911 ],
1012 "policies": [
1113 {
22 "nameServers": [
33 "ns1390.ztomy.com",
44 "ns2390.ztomy.com"
5 ],
6 "wildcards": [
7 "141.8.226.59"
85 ]
96 }
00 {
11 "domain": "oracle",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.oracle",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/oracle/v1/"
66 ],
7 "whoisServer": "whois.nic.oracle",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "orange",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.orange",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/orange/v1/"
66 ],
7 "whoisServer": "whois.nic.orange",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
11 "domain": "org.af",
22 "nameServers": [
33 "ns.anycast.nic.af",
4 "ns.cocca.fr"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "org.ai",
22 "nameServers": [
3 "ns.cocca.fr",
43 "pch.whois.ai"
54 ],
65 "policies": [
00 {
11 "domain": "org.ba",
22 "nameServers": [
3 "bosna.utic.net.ba",
3 "auth03.ns.uu.net",
4 "ns.ba",
45 "sava.utic.net.ba",
56 "una.utic.net.ba"
67 ],
00 {
11 "domain": "org.bw",
2 "nameServers": [
3 "dns1.nic.net.bw",
4 "ns-bw.afrinic.net",
5 "pch.nic.net.bw"
6 ],
72 "policies": [
83 {
94 "type": "idn-disallowed"
00 {
11 "domain": "org.cd",
2 "nameServers": [
3 "igubu.saix.net",
4 "ns-root-1.scpt-network.com",
5 "ns-root-2.scpt-network.com",
6 "ns-root-5.scpt-network.com",
7 "sabela.saix.net",
8 "sangoma.saix.net"
9 ],
102 "policies": [
113 {
124 "type": "idn-disallowed"
00 {
11 "domain": "org.cx",
22 "nameServers": [
3 "ns.anycast.nic.cx",
4 "ns.cocca.fr"
3 "ns.anycast.nic.cx"
54 ]
65 }
00 {
11 "domain": "org.es",
22 "nameServers": [
3 "c.nic.es",
34 "fnicdos.rediris.es",
45 "g.nic.es",
56 "h.nic.es",
00 {
11 "domain": "org.gg",
22 "nameServers": [
3 "b.ci-servers.com",
43 "c.ci-servers.org",
54 "dns1.nominetdns.uk",
6 "f.ci-servers.je",
7 "g.ci-servers.gg"
5 "dns2.nominetdns.uk",
6 "dns3.nominetdns.uk",
7 "dns4.nominetdns.uk"
88 ],
99 "policies": [
1010 {
11 "domain": "org.gy",
22 "nameServers": [
33 "a.lactld.org",
4 "gy-ns.anycast.pch.net",
5 "ns.cocca.fr"
4 "gy-ns.anycast.pch.net"
65 ]
76 }
00 {
11 "domain": "org.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "org.il",
2 "infoURL": "http://www.isoc.org.il/domains/",
2 "infoURL": "https://www.isoc.org.il/domain-name-registry",
33 "nameServers": [
44 "ilns.ilan.net.il",
55 "lookup.iucc.ac.il",
00 {
11 "domain": "org.je",
22 "nameServers": [
3 "b.ci-servers.com",
43 "c.ci-servers.org",
54 "dns1.nominetdns.uk",
6 "f.ci-servers.je",
7 "g.ci-servers.gg"
5 "dns2.nominetdns.uk",
6 "dns3.nominetdns.uk",
7 "dns4.nominetdns.uk"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "org",
22 "infoURL": "https://pir.org/products/org-domain/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.pir.org",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/org/"
56 ],
6 "whoisServer": "whois.pir.org",
77 "nameServers": [
88 "a0.org.afilias-nst.info",
99 "a2.org.afilias-nst.info",
1111 "b2.org.afilias-nst.org",
1212 "c0.org.afilias-nst.info",
1313 "d0.org.afilias-nst.org"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
4649 {
4750 "type": "idn-table",
4851 "key": "hu",
49 "value": "https://www.iana.org/domains/idn-tables/tables/org_hu_1.0.html"
52 "value": "https://www.iana.org/domains/idn-tables/tables/org_hu_1.txt"
5053 },
5154 {
5255 "type": "idn-table",
00 {
11 "domain": "org.lb",
22 "nameServers": [
3 "magma.aub.edu.lb",
3 "nn.uninett.no",
4 "ns3.seacomnet.com",
5 "ns4.seacomnet.com",
46 "rip.psg.com",
57 "zeina.aub.edu.lb"
68 ],
11 "domain": "org.mu",
22 "nameServers": [
33 "anycast1.irondns.net",
4 "fork.sth.dnsnode.net",
45 "mu1.dyntld.net",
56 "mu2.dyntld.net",
67 "mu3.dyntld.net",
78 "mu4.dyntld.net",
8 "udns1.tld.mu"
9 "udns1.tld.mu",
10 "udns2.tld.mu"
911 ],
1012 "policies": [
1113 {
00 {
11 "domain": "org.ne",
2 "nameServers": [
3 "sdns2.ovh.net",
4 "vps241916.ovh.net"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
00 {
11 "domain": "org.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
33 "b.dns.py",
44 "c.dns.py",
55 "l.dns.py",
6 "m.dns.py",
76 "p.dns.py",
87 "u.dns.py"
98 ],
00 {
11 "domain": "org.sb",
22 "nameServers": [
3 "ns.cocca.fr",
3 "ns1.anycastdns.cz",
4 "ns2.anycastdns.cz",
45 "pch.nic.sb"
56 ],
67 "policies": [
00 {
11 "domain": "org.sn",
22 "nameServers": [
3 "dns.ucad.sn",
43 "ns.nic.sn",
5 "ns.ucad.sn"
4 "ns.ucad.sn",
5 "ns3.cctld.sn"
66 ],
77 "policies": [
88 {
+0
-8
metadata/org.ss.json less more
0 {
1 "domain": "org.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "pch.nic.ss"
6 ]
7 }
00 {
11 "domain": "org.td",
2 "nameServers": [
3 "ns-td.afrinic.net",
4 "ns.cocca.fr",
5 "nsa.nic.td",
6 "pch.nic.td"
7 ],
82 "policies": [
93 {
104 "type": "idn-disallowed"
11 "domain": "org.tl",
22 "nameServers": [
33 "ns.anycast.nic.tl",
4 "ns.cocca.fr",
5 "ns.coccaregistry.org"
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
66 ],
77 "policies": [
88 {
00 {
11 "domain": "org.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
33 "ns2.dns.ws",
44 "ns3.dns.ws",
55 "ns4.dns.ws",
6 "ns5.dns.ws"
6 "ns5.dns.ws",
7 "ns6.dns.ws",
8 "ns7.dns.ws"
79 ],
810 "wildcards": [
911 "202.4.48.211"
11 "domain": "org.zw",
22 "nameServers": [
33 "ns1.liquidtelecom.net",
4 "ns1.telone.co.zw",
4 "ns1zim.telone.co.zw",
55 "ns2.liquidtelecom.net",
6 "ns2.telone.co.zw",
6 "ns2zim.telone.co.zw",
77 "zw-ns.anycast.pch.net"
88 ],
99 "policies": [
00 {
11 "domain": "organic",
2 "infoURL": "http://nic.organic/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.organic/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/organic/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.organic",
99 "a2.nic.organic",
1010 "b0.nic.organic",
1111 "c0.nic.organic"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/organic_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/organic_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/organic_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/organic_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/organic_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/organic_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/organic_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/organic_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/organic_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/organic_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/organic_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/organic_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/organic_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/organic_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/organic_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/organic_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/organic_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/organic_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/organic_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/organic_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/organic_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/organic_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/organic_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/organic_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/organic_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/organic_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "orientexpress",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic",
67 "withdrawn"
78 ],
8 "whoisServer": "whois.afilias-srs.net",
99 "policies": [
1010 {
1111 "type": "idn-disallowed"
00 {
11 "domain": "origins",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.origins",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/origins/"
66 ],
7 "whoisServer": "whois.nic.origins",
87 "nameServers": [
98 "a0.nic.origins",
109 "a2.nic.origins",
1110 "b0.nic.origins",
1211 "c0.nic.origins"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "osaka.jp",
2 "locations": [
3 "Osaka"
4 ],
25 "tags": [
36 "city",
47 "geo"
5 ],
6 "locations": [
7 "Osaka"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "osaka",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.osaka",
4 "rdapURLs": [
5 "https://rdap.nic.osaka/"
76 ],
8 "locations": [
9 "Osaka",
10 "JP-27"
11 ],
12 "whoisServer": "whois.nic.osaka",
137 "nameServers": [
148 "ns1.dns.nic.osaka",
159 "ns2.dns.nic.osaka",
1812 "ns5.dns.nic.osaka",
1913 "ns6.dns.nic.osaka"
2014 ],
15 "locations": [
16 "Osaka",
17 "JP-27"
18 ],
19 "tags": [
20 "city",
21 "generic",
22 "geo"
23 ],
2124 "policies": [
2225 {
23 "type": "idn-disallowed"
26 "type": "idn-table",
27 "key": "ja",
28 "value": "https://www.iana.org/domains/idn-tables/tables/osaka_ja_3.0.xml"
2429 }
2530 ]
2631 }
11 "domain": "other.nf",
22 "nameServers": [
33 "ns.anycast.nic.nf",
4 "ns.cocca.fr",
5 "ns.coccaregistry.org"
4 "ns.cocca.fr"
65 ],
76 "policies": [
87 {
00 {
11 "domain": "otsuka",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.otsuka",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.otsuka",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
4548 {
4649 "type": "idn-table",
4750 "key": "zh",
48 "value": "https://www.iana.org/domains/idn-tables/tables/otsuka_zh_1.0.txt"
51 "value": "https://www.iana.org/domains/idn-tables/tables/otsuka_zh_1.1.txt"
4952 }
5053 ]
5154 }
00 {
11 "domain": "ott",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.ott",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ott/"
66 ],
7 "whoisServer": "whois.nic.ott",
87 "nameServers": [
98 "a0.nic.ott",
109 "a2.nic.ott",
1110 "b0.nic.ott",
1211 "c0.nic.ott"
12 ],
13 "tags": [
14 "closed",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ovh",
2 "tags": [
3 "generic"
2 "whoisServer": "whois-ovh.nic.fr",
3 "rdapURLs": [
4 "https://rdap.nic.ovh/"
45 ],
5 "whoisServer": "whois-ovh.nic.fr",
66 "nameServers": [
77 "d.nic.fr",
88 "f.ext.nic.fr",
99 "g.ext.nic.fr"
10 ],
11 "tags": [
12 "generic"
1013 ],
1114 "policies": [
1215 {
00 {
11 "domain": "pa",
22 "infoURL": "http://www.nic.pa/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisURL": "http://www.nic.pa/",
84 "nameServers": [
95 "dns-ext.nic.cr",
139 "ns2.pa",
1410 "ssdns-tld.nic.cl"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "page",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "panasonic",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/panasonic_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "panerai",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.panerai",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.panerai",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "paris",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois-paris.nic.fr",
3 "rdapURLs": [
4 "https://rdap.nic.paris/"
5 ],
6 "nameServers": [
7 "d.nic.fr",
8 "f.ext.nic.fr",
9 "g.ext.nic.fr",
10 "h.ext.nic.fr"
611 ],
712 "locations": [
813 "Paris",
914 "FR-J"
1015 ],
11 "whoisServer": "whois-paris.nic.fr",
12 "nameServers": [
13 "d.nic.fr",
14 "f.ext.nic.fr",
15 "g.ext.nic.fr",
16 "h.ext.nic.fr"
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
+0
-9
metadata/parliament.ls.json less more
0 {
1 "domain": "parliament.ls",
2 "nameServers": [
3 "ls-ns.anycast.pch.net",
4 "ns-ls.afrinic.net",
5 "ns1.leo.co.ls",
6 "sas.leo.co.ls"
7 ]
8 }
00 {
11 "domain": "pars",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.pars",
4 "rdapURLs": [
5 "https://api.rdap.agitsys.net/"
6 ],
7 "nameServers": [
8 "a.ns.nic.pars",
9 "b.ns.nic.pars",
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
512 ],
613 "locations": [
714 "Iran"
815 ],
9 "whoisServer": "whois.nic.pars",
10 "nameServers": [
11 "a.ns.nic.pars",
12 "b.ns.nic.pars",
13 "ns.cocca.fr"
16 "tags": [
17 "generic"
1418 ],
1519 "policies": [
1620 {
00 {
11 "domain": "partners",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.partners",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.partners",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "partners.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "parts",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.parts",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.parts",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "parts.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "party",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.party",
4 "rdapURLs": [
5 "https://rdap.nic.party/"
56 ],
6 "whoisServer": "whois.nic.party",
77 "nameServers": [
88 "ns1.dns.nic.party",
99 "ns2.dns.nic.party",
1212 "ns5.dns.nic.party",
1313 "ns6.dns.nic.party"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/party_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/party_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/party_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/party_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/party_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/party_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/party_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/party_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/party_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/party_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/party_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/party_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/party_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/party_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/party_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/party_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/party_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/party_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/party_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/party_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/party_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/party_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/party_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/party_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/party_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/party_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/party_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/party_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/party_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/party_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/party_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/party_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/party_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/party_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "passagens",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.passagens",
4 "rdapURLs": [
5 "https://rdap.nic.passagens/"
66 ],
7 "whoisServer": "whois.nic.passagens",
87 "nameServers": [
98 "ns1.dns.nic.passagens",
109 "ns2.dns.nic.passagens",
1312 "ns5.dns.nic.passagens",
1413 "ns6.dns.nic.passagens"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/passagens_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "pay",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.pay",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/pay/"
56 ],
6 "whoisServer": "whois.nic.pay",
77 "nameServers": [
88 "dns1.nic.pay",
99 "dns2.nic.pay",
1313 "dnsb.nic.pay",
1414 "dnsc.nic.pay",
1515 "dnsd.nic.pay"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "pccw",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.pccw",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/pccw/"
66 ],
7 "whoisServer": "whois.nic.pccw",
87 "nameServers": [
98 "a0.nic.pccw",
109 "a2.nic.pccw",
1110 "b0.nic.pccw",
1211 "c0.nic.pccw"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "zh-CN",
21 "value": "https://www.iana.org/domains/idn-tables/tables/pccw_zh-cn_4.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-TW",
26 "value": "https://www.iana.org/domains/idn-tables/tables/pccw_zh-tw_4.0.txt"
1727 }
1828 ]
1929 }
00 {
11 "domain": "pe",
2 "infoURL": "http://www.nic.pe/",
2 "infoURL": "https://punto.pe/",
3 "whoisServer": "kero.yachay.pe",
4 "nameServers": [
5 "a.lactld.org",
6 "pch.rcp.pe",
7 "pe1.dnsnode.net",
8 "quipu.rcp.net.pe"
9 ],
310 "tags": [
411 "country",
512 "geo"
6 ],
7 "whoisServer": "kero.yachay.pe",
8 "nameServers": [
9 "pch.rcp.pe",
10 "pe1.dnsnode.net",
11 "quipu.rcp.net.pe"
1213 ]
1314 }
00 {
11 "domain": "perso.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "pet",
2 "infoURL": "http://nic.pet/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.pet/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/pet/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.pet",
99 "a2.nic.pet",
1010 "b0.nic.pet",
1111 "c0.nic.pet"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/pet_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/pet_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/pet_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/pet_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/pet_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/pet_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/pet_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/pet_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/pet_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/pet_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/pet_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/pet_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/pet_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/pet_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/pet_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/pet_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/pet_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/pet_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/pet_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/pet_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/pet_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/pet_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/pet_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/pet_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/pet_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/pet_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "pf",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.registry.pf",
73 "nameServers": [
84 "ns1.mana.pf",
95 "ns2.mana.pf"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "pfizer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.pfizer",
4 "rdapURLs": [
5 "https://rdap.nic.pfizer/"
66 ],
7 "whoisServer": "whois.nic.pfizer",
87 "nameServers": [
98 "ns1.dns.nic.pfizer",
109 "ns2.dns.nic.pfizer",
1312 "ns5.dns.nic.pfizer",
1413 "ns6.dns.nic.pfizer"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/pfizer_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "pg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "munnari.oz.au",
84 "ns.uu.net",
106 "ns1.unitech.ac.pg",
117 "ns2.tiare.net.pg"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "ph",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.dot.ph/whois",
73 "nameServers": [
84 "1.ns.ph",
139 "wildcards": [
1410 "45.79.222.138"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
44 "ns2.openprovider.be",
55 "ns3.openprovider.eu"
66 ],
7 "wildcards": [
8 "196.196.233.154"
9 ],
107 "policies": [
118 {
129 "type": "idn-disallowed"
44 "ns2.sedoparking.com"
55 ],
66 "wildcards": [
7 "91.195.241.136"
7 "64.190.62.111"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "pharmacy",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.pharmacy",
4 "rdapURLs": [
5 "https://rdap.nic.pharmacy/"
6 ],
7 "nameServers": [
8 "dns1.nic.pharmacy",
9 "dns2.nic.pharmacy",
10 "dns3.nic.pharmacy",
11 "dns4.nic.pharmacy",
12 "dnsa.nic.pharmacy",
13 "dnsb.nic.pharmacy",
14 "dnsc.nic.pharmacy",
15 "dnsd.nic.pharmacy"
16 ],
317 "tags": [
418 "generic"
519 ],
6 "whoisServer": "whois.nic.pharmacy",
7 "nameServers": [
8 "ns1.dns.nic.pharmacy",
9 "ns2.dns.nic.pharmacy",
10 "ns3.dns.nic.pharmacy",
11 "ns4.dns.nic.pharmacy",
12 "ns5.dns.nic.pharmacy",
13 "ns6.dns.nic.pharmacy"
14 ],
1520 "policies": [
1621 {
17 "type": "idn-disallowed"
22 "type": "idn-table",
23 "key": "es",
24 "value": "https://www.iana.org/domains/idn-tables/tables/pharmacy_es_3.0.xml"
1825 }
1926 ]
2027 }
00 {
11 "domain": "phd",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "philips",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.philips",
4 "rdapURLs": [
5 "https://rdap.nic.philips/"
66 ],
7 "whoisServer": "whois.nic.philips",
87 "nameServers": [
98 "a.nic.philips",
109 "b.nic.philips",
1110 "c.nic.philips",
1211 "d.nic.philips"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "phone",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.phone",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/phone/"
56 ],
6 "whoisServer": "whois.nic.phone",
77 "nameServers": [
88 "a0.nic.phone",
99 "a2.nic.phone",
1010 "b0.nic.phone",
1111 "c0.nic.phone"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "photo",
2 "infoURL": "http://nic.photo/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.photo/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/photo_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "photo.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "np.cctld.authdns.ripe.net",
00 {
11 "domain": "photography",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.photography",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.photography",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "photos",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.photos",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.photos",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "photos.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "physio",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.physio",
4 "rdapURLs": [
5 "https://rdap.nic.physio/"
56 ],
6 "whoisServer": "whois.nic.physio",
77 "nameServers": [
88 "a.nic.physio",
99 "b.nic.physio",
1010 "c.nic.physio",
1111 "d.nic.physio"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "piaget",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.piaget",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.piaget",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "pics",
2 "infoURL": "http://nic.pics/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.pics/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/pics_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "pics.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "pictet",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/pictet/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "pictures",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.pictures",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.pictures",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "pid",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.pid",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/pid/"
56 ],
6 "whoisServer": "whois.nic.pid",
77 "nameServers": [
88 "a.nic.pid",
99 "b.nic.pid",
1010 "c.nic.pid",
1111 "d.nic.pid"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "pin",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.pin",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/pin/"
66 ],
7 "whoisServer": "whois.nic.pin",
87 "nameServers": [
98 "dns1.nic.pin",
109 "dns2.nic.pin",
1413 "dnsb.nic.pin",
1514 "dnsc.nic.pin",
1615 "dnsd.nic.pin"
16 ],
17 "tags": [
18 "closed",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "ping",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ping",
4 "rdapURLs": [
5 "https://rdap.nic.ping/"
66 ],
7 "whoisServer": "whois.nic.ping",
87 "nameServers": [
98 "ns1.dns.nic.ping",
109 "ns2.dns.nic.ping",
1312 "ns5.dns.nic.ping",
1413 "ns6.dns.nic.ping"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "pink",
2 "infoURL": "http://nic.pink/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.pink/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/pink/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.pink",
99 "a2.nic.pink",
1111 "b2.nic.pink",
1212 "c0.nic.pink"
1313 ],
14 "tags": [
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/pink_ar_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "be",
26 "value": "https://www.iana.org/domains/idn-tables/tables/pink_be_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bg",
31 "value": "https://www.iana.org/domains/idn-tables/tables/pink_bg_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "bs",
36 "value": "https://www.iana.org/domains/idn-tables/tables/pink_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "da",
41 "value": "https://www.iana.org/domains/idn-tables/tables/pink_da_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "de",
46 "value": "https://www.iana.org/domains/idn-tables/tables/pink_de_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "es",
51 "value": "https://www.iana.org/domains/idn-tables/tables/pink_es_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "fi",
56 "value": "https://www.iana.org/domains/idn-tables/tables/pink_fi_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "fr",
61 "value": "https://www.iana.org/domains/idn-tables/tables/pink_fr_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "hi",
66 "value": "https://www.iana.org/domains/idn-tables/tables/pink_hi_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "hu",
71 "value": "https://www.iana.org/domains/idn-tables/tables/pink_hu_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "is",
76 "value": "https://www.iana.org/domains/idn-tables/tables/pink_is_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "it",
81 "value": "https://www.iana.org/domains/idn-tables/tables/pink_it_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ko",
86 "value": "https://www.iana.org/domains/idn-tables/tables/pink_ko_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "lt",
91 "value": "https://www.iana.org/domains/idn-tables/tables/pink_lt_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "lv",
96 "value": "https://www.iana.org/domains/idn-tables/tables/pink_lv_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "mk",
101 "value": "https://www.iana.org/domains/idn-tables/tables/pink_mk_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pl",
106 "value": "https://www.iana.org/domains/idn-tables/tables/pink_pl_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "pt",
111 "value": "https://www.iana.org/domains/idn-tables/tables/pink_pt_1.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "ru",
116 "value": "https://www.iana.org/domains/idn-tables/tables/pink_ru_1.txt"
117 },
118 {
119 "type": "idn-table",
120 "key": "sr",
121 "value": "https://www.iana.org/domains/idn-tables/tables/pink_sr_1.txt"
122 },
123 {
124 "type": "idn-table",
125 "key": "sr-ME",
126 "value": "https://www.iana.org/domains/idn-tables/tables/pink_sr-me_1.txt"
127 },
128 {
129 "type": "idn-table",
130 "key": "sv",
131 "value": "https://www.iana.org/domains/idn-tables/tables/pink_sv_1.txt"
132 },
133 {
134 "type": "idn-table",
135 "key": "uk",
136 "value": "https://www.iana.org/domains/idn-tables/tables/pink_uk_1.txt"
137 },
138 {
139 "type": "idn-table",
140 "key": "zh-CN",
141 "value": "https://www.iana.org/domains/idn-tables/tables/pink_zh-cn_4.0.txt"
142 },
143 {
144 "type": "idn-table",
145 "key": "zh-TW",
146 "value": "https://www.iana.org/domains/idn-tables/tables/pink_zh-tw_4.0.txt"
17147 }
18148 ]
19149 }
00 {
11 "domain": "pink.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "pioneer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/pioneer_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "pizza",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.pizza",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.pizza",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "pk",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.pknic.net.pk/",
73 "nameServers": [
84 "root-c1.pknic.pk",
106 "root-e.pknic.pk",
117 "root-s.pknic.pk"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "pl",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dns.pl",
73 "nameServers": [
84 "a-dns.pl",
1511 "h-dns.pl",
1612 "i-dns.pl"
1713 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-table",
00 {
11 "domain": "place",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.place",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.place",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "play",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "playstation",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.playstation",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.playstation",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/playstation_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "plumbing",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.plumbing",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.plumbing",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "plus",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.plus",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.plus",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "pm",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.pm",
73 "nameServers": [
84 "d.nic.fr",
95 "e.ext.nic.fr",
106 "f.ext.nic.fr",
117 "g.ext.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "pn",
2 "infoURL": "http://www.nic.pn/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.nic.pn/",
73 "whoisURL": "http://www.pitcairn.pn/PnRegistry/",
84 "nameServers": [
95 "dns1.nominetdns.uk",
128 "ns0.pitcairn.net.pn",
139 "ns1.pitcairn.net.pn"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "pnc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.pnc",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/pnc/"
66 ],
7 "whoisServer": "whois.nic.pnc",
87 "nameServers": [
98 "a0.nic.pnc",
109 "a2.nic.pnc",
1110 "b0.nic.pnc",
1211 "c0.nic.pnc"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "pohl",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.pohl",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/pohl/"
66 ],
7 "whoisServer": "whois.nic.pohl",
87 "nameServers": [
98 "a.nic.pohl",
109 "b.nic.pohl",
1110 "c.nic.pohl",
1211 "d.nic.pohl"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "poker",
2 "infoURL": "http://nic.poker/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.poker/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/poker/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.poker",
99 "a2.nic.poker",
1010 "b0.nic.poker",
1111 "c0.nic.poker"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/poker_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/poker_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/poker_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/poker_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/poker_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/poker_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/poker_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/poker_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/poker_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/poker_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/poker_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/poker_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/poker_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/poker_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/poker_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/poker_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/poker_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/poker_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/poker_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/poker_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/poker_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/poker_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/poker_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/poker_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/poker_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/poker_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "pol.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "pol.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
00 {
11 "domain": "politie",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.politie",
4 "rdapURLs": [
5 "https://rdap.nic.politie/"
66 ],
7 "whoisServer": "whois.nic.politie",
87 "nameServers": [
98 "ns1.nic.politie",
109 "ns2.nic.politie",
1110 "ns3.nic.politie"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "porn",
2 "infoURL": "http://nic.porn/",
3 "tags": [
4 "adult",
5 "generic"
2 "infoURL": "https://nic.porn/",
3 "whoisServer": "whois.registrar.adult",
4 "rdapURLs": [
5 "https://whois.registrar.adult/rdap/"
66 ],
7 "whoisServer": "whois.registrar.adult",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns5.uniregistry.net",
1211 "ns6.uniregistry.info"
1312 ],
13 "tags": [
14 "adult",
15 "generic"
16 ],
1417 "policies": [
18 {
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/porn_ar_2.txt"
22 },
1523 {
1624 "type": "idn-table",
1725 "key": "be",
2634 "type": "idn-table",
2735 "key": "bs",
2836 "value": "https://www.iana.org/domains/idn-tables/tables/porn_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "cnr",
41 "value": "https://www.iana.org/domains/idn-tables/tables/porn_cnr_1.0.txt"
2942 },
3043 {
3144 "type": "idn-table",
4457 },
4558 {
4659 "type": "idn-table",
60 "key": "fr",
61 "value": "https://www.iana.org/domains/idn-tables/tables/porn_fr_1.0.txt"
62 },
63 {
64 "type": "idn-table",
4765 "key": "hu",
4866 "value": "https://www.iana.org/domains/idn-tables/tables/porn_hu_1.txt"
4967 },
5169 "type": "idn-table",
5270 "key": "is",
5371 "value": "https://www.iana.org/domains/idn-tables/tables/porn_is_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "it",
76 "value": "https://www.iana.org/domains/idn-tables/tables/porn_it_1.0.txt"
5477 },
5578 {
5679 "type": "idn-table",
7699 "type": "idn-table",
77100 "key": "pl",
78101 "value": "https://www.iana.org/domains/idn-tables/tables/porn_pl_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pt",
106 "value": "https://www.iana.org/domains/idn-tables/tables/porn_pt_1.0.txt"
79107 },
80108 {
81109 "type": "idn-table",
00 {
11 "domain": "post",
2 "infoURL": "http://en.wikipedia.org/wiki/.post",
3 "tags": [
4 "generic",
5 "sponsored"
2 "infoURL": "https://en.wikipedia.org/wiki/.post",
3 "whoisServer": "whois.dotpostregistry.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/post/"
66 ],
7 "whoisServer": "whois.dotpostregistry.net",
87 "nameServers": [
98 "a0.post.afilias-nst.info",
109 "a2.post.afilias-nst.info",
1312 "c0.post.afilias-nst.info",
1413 "d0.post.afilias-nst.org"
1514 ],
15 "tags": [
16 "generic",
17 "sponsored"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "pr",
2 "infoURL": "http://www.nic.pr/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://domains.pr/",
73 "whoisServer": "whois.afilias-srs.net",
84 "nameServers": [
95 "a.lactld.org",
1410 "c0.pr.afilias-nst.info",
1511 "d0.pr.afilias-nst.org",
1612 "pr-dns.denic.de"
13 ],
14 "tags": [
15 "country",
16 "geo"
1717 ]
1818 }
00 {
11 "domain": "pramerica",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.pramerica",
4 "rdapURLs": [
5 "https://rdap.nic.pramerica/"
66 ],
7 "whoisServer": "whois.nic.pramerica",
87 "nameServers": [
98 "ns1.dns.nic.pramerica",
109 "ns2.dns.nic.pramerica",
1312 "ns5.dns.nic.pramerica",
1413 "ns6.dns.nic.pramerica"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "praxi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.praxi",
4 "rdapURLs": [
5 "https://rdap.nic.praxi/"
66 ],
7 "whoisServer": "whois.nic.praxi",
87 "nameServers": [
98 "ns1.dns.nic.praxi",
109 "ns2.dns.nic.praxi",
1312 "ns5.dns.nic.praxi",
1413 "ns6.dns.nic.praxi"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "press",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.press",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/press/"
45 ],
5 "whoisServer": "whois.nic.press",
66 "nameServers": [
77 "a.nic.press",
88 "b.nic.press",
99 "e.nic.press",
1010 "f.nic.press"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
3336 {
3437 "type": "idn-table",
3538 "key": "lo",
36 "value": "https://www.iana.org/domains/idn-tables/tables/press_lo_1.1.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/press_lo_2.0.txt"
3740 },
3841 {
3942 "type": "idn-table",
5861 {
5962 "type": "idn-table",
6063 "key": "zh",
61 "value": "https://www.iana.org/domains/idn-tables/tables/press_zh_1.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/press_zh_1.0.txt"
6265 }
6366 ]
6467 }
00 {
11 "domain": "presse.ci",
22 "nameServers": [
3 "ns1.dns.com",
4 "ns2.dns.com"
3 "a.dnspod.com",
4 "b.dnspod.com",
5 "c.dnspod.com"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "presse.ml",
22 "nameServers": [
3 "ns1.nicdumali.presse.ml",
4 "ns2.nicdumali.presse.ml",
5 "ns3.nicdumali.presse.ml"
3 "ns01.freenom.com",
4 "ns02.freenom.com",
5 "ns03.freenom.com",
6 "ns04.freenom.com"
67 ],
78 "policies": [
89 {
00 {
11 "domain": "prime",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.prime",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/prime/"
66 ],
7 "whoisServer": "whois.nic.prime",
87 "nameServers": [
98 "dns1.nic.prime",
109 "dns2.nic.prime",
1413 "dnsb.nic.prime",
1514 "dnsc.nic.prime",
1615 "dnsd.nic.prime"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "pro.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "pro",
22 "infoURL": "https://registry.pro/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/pro/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.pro.afilias-nst.info",
99 "a2.pro.afilias-nst.info",
1212 "c0.pro.afilias-nst.info",
1313 "d0.pro.afilias-nst.org"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "ar",
22 "value": "https://www.iana.org/domains/idn-tables/tables/pro_ar_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "be",
27 "value": "https://www.iana.org/domains/idn-tables/tables/pro_be_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bg",
32 "value": "https://www.iana.org/domains/idn-tables/tables/pro_bg_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "bs",
37 "value": "https://www.iana.org/domains/idn-tables/tables/pro_bs_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "da",
42 "value": "https://www.iana.org/domains/idn-tables/tables/pro_da_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "de",
47 "value": "https://www.iana.org/domains/idn-tables/tables/pro_de_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "es",
52 "value": "https://www.iana.org/domains/idn-tables/tables/pro_es_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fi",
57 "value": "https://www.iana.org/domains/idn-tables/tables/pro_fi_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "fr",
62 "value": "https://www.iana.org/domains/idn-tables/tables/pro_fr_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hi",
67 "value": "https://www.iana.org/domains/idn-tables/tables/pro_hi_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "hu",
72 "value": "https://www.iana.org/domains/idn-tables/tables/pro_hu_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "is",
77 "value": "https://www.iana.org/domains/idn-tables/tables/pro_is_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "it",
82 "value": "https://www.iana.org/domains/idn-tables/tables/pro_it_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "ko",
87 "value": "https://www.iana.org/domains/idn-tables/tables/pro_ko_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lt",
92 "value": "https://www.iana.org/domains/idn-tables/tables/pro_lt_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "lv",
97 "value": "https://www.iana.org/domains/idn-tables/tables/pro_lv_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "mk",
102 "value": "https://www.iana.org/domains/idn-tables/tables/pro_mk_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pl",
107 "value": "https://www.iana.org/domains/idn-tables/tables/pro_pl_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "pt",
112 "value": "https://www.iana.org/domains/idn-tables/tables/pro_pt_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "ru",
117 "value": "https://www.iana.org/domains/idn-tables/tables/pro_ru_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr",
122 "value": "https://www.iana.org/domains/idn-tables/tables/pro_sr_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sr-ME",
127 "value": "https://www.iana.org/domains/idn-tables/tables/pro_sr-me_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "sv",
132 "value": "https://www.iana.org/domains/idn-tables/tables/pro_sv_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "uk",
137 "value": "https://www.iana.org/domains/idn-tables/tables/pro_uk_1.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-CN",
142 "value": "https://www.iana.org/domains/idn-tables/tables/pro_zh-cn_4.0.txt"
143 },
144 {
145 "type": "idn-table",
146 "key": "zh-TW",
147 "value": "https://www.iana.org/domains/idn-tables/tables/pro_zh-tw_4.0.txt"
18148 }
19149 ]
20150 }
00 {
11 "domain": "pro.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "pro.uz",
2 "tags": [
3 "closed"
4 ],
52 "nameServers": [
63 "ns3.uzinfocom.uz",
74 "rdns3.uzinfocom.uz"
5 ],
6 "tags": [
7 "closed"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "pro.vg",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "pro.vg"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "prod",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "productions",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.productions",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.productions",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "productions.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "products.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "prof",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "progressive",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/progressive/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.progressive",
109 "a2.nic.progressive",
1110 "b0.nic.progressive",
1211 "c0.nic.progressive"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "promo",
2 "infoURL": "http://nic.promo/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.promo/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/promo/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.promo",
99 "a2.nic.promo",
1010 "b0.nic.promo",
1111 "c0.nic.promo"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/promo_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/promo_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/promo_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/promo_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/promo_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/promo_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/promo_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/promo_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/promo_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/promo_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/promo_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/promo_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/promo_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/promo_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/promo_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/promo_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/promo_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/promo_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/promo_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/promo_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/promo_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/promo_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/promo_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/promo_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/promo_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/promo_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "properties",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.properties",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.properties",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "properties.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "property",
2 "infoURL": "http://nic.property/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.property/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/property_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "protection",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.protection",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/protection/"
56 ],
6 "whoisServer": "whois.nic.protection",
77 "nameServers": [
88 "a.nic.protection",
99 "b.nic.protection",
1010 "e.nic.protection",
1111 "f.nic.protection"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "pru",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.pru",
4 "rdapURLs": [
5 "https://rdap.nic.pru/"
66 ],
7 "whoisServer": "whois.nic.pru",
87 "nameServers": [
98 "ns1.dns.nic.pru",
109 "ns2.dns.nic.pru",
1312 "ns5.dns.nic.pru",
1413 "ns6.dns.nic.pru"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/pru_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/pru_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/pru_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/pru_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/pru_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/pru_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/pru_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/pru_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/pru_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/pru_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/pru_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/pru_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/pru_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/pru_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/pru_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/pru_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "prudential",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.prudential",
4 "rdapURLs": [
5 "https://rdap.nic.prudential/"
66 ],
7 "whoisServer": "whois.nic.prudential",
87 "nameServers": [
98 "ns1.dns.nic.prudential",
109 "ns2.dns.nic.prudential",
1312 "ns5.dns.nic.prudential",
1413 "ns6.dns.nic.prudential"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "ps",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.pnina.ps",
73 "nameServers": [
84 "dns1.gov.ps",
128 "ps.cctld.authdns.ripe.net",
139 "rip.psg.com"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "pt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dns.pt",
73 "nameServers": [
84 "a.dns.pt",
106 "c.dns.pt",
117 "d.dns.pt",
128 "e.dns.pt",
13 "f.dns.pt",
149 "g.dns.pt",
1510 "h.dns.pt",
1611 "ns.dns.br",
1712 "ns2.nic.fr"
13 ],
14 "tags": [
15 "country",
16 "geo"
1817 ]
1918 }
00 {
11 "domain": "pty-ltd.com",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.instradns.com",
74 "ns2.instradns.com",
85 "ns3.instradns.com"
6 ],
7 "tags": [
8 "private"
99 ],
1010 "policies": [
1111 {
00 {
11 "domain": "pub",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.pub",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.pub",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "pub.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "punt.nl",
2 "infoURL": "http://punt.nl",
3 "tags": [
4 "private"
5 ],
2 "infoURL": "http://www.punt.nl/",
63 "nameServers": [
7 "ns1.metaregistrar.nl",
8 "ns2.metaregistrar.nl"
4 "nsn1.mijndomein.nl",
5 "nsn2.mijndomein.nl",
6 "nsn3.mijndomein.nl"
97 ],
108 "wildcards": [
119 "2a05:d018:964:c0a:a58f:6b32:e401:3d8a",
1210 "34.240.216.169",
1311 "hosting-1a.mijndomein-ws.nl"
12 ],
13 "tags": [
14 "private"
1415 ],
1516 "policies": [
1617 {
00 {
11 "domain": "pw",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.nic.pw",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/pw/"
55 ],
6 "whoisServer": "whois.nic.pw",
76 "nameServers": [
87 "ns1.nic.pw",
98 "ns2.nic.pw",
109 "ns5.nic.pw",
1110 "ns6.nic.pw"
11 ],
12 "tags": [
13 "country",
14 "geo"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "pwc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/pwc/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.pwc",
109 "a2.nic.pwc",
1110 "b0.nic.pwc",
1211 "c0.nic.pwc"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "py",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisURL": "http://www.nic.py/consulta-datos.php",
83 "nameServers": [
94 "b.dns.py",
138 "p.dns.py",
149 "u.dns.py"
1510 ],
11 "tags": [
12 "closed",
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "qa",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.registry.qa",
73 "nameServers": [
84 "a.registry.qa",
1511 "h.registry.qa",
1612 "i.registry.qa"
1713 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-disallowed"
00 {
11 "domain": "qb.com",
2 "nameServers": [
3 "betty.ns.cloudflare.com",
4 "scott.ns.cloudflare.com"
5 ],
26 "tags": [
37 "private"
4 ],
5 "nameServers": [
6 "f1g1ns1.dnspod.net",
7 "f1g1ns2.dnspod.net"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "qc.com",
2 "whoisServer": "whois.centralnic.com",
3 "nameServers": [
4 "pdns07.domaincontrol.com",
5 "pdns08.domaincontrol.com"
6 ],
27 "tags": [
38 "private"
4 ],
5 "whoisServer": "whois.centralnic.com",
6 "nameServers": [
7 "ns71.domaincontrol.com",
8 "ns72.domaincontrol.com"
99 ]
1010 }
00 {
11 "domain": "qpon",
2 "whoisServer": "whois.nic.qpon",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/qpon/"
5 ],
6 "nameServers": [
7 "a.nic.qpon",
8 "b.nic.qpon",
9 "c.nic.qpon",
10 "d.nic.qpon"
11 ],
212 "tags": [
313 "generic"
4 ],
5 "whoisServer": "whois.nic.qpon",
6 "nameServers": [
7 "ns1.dns.nic.qpon",
8 "ns2.dns.nic.qpon",
9 "ns3.dns.nic.qpon",
10 "ns4.dns.nic.qpon",
11 "ns5.dns.nic.qpon",
12 "ns6.dns.nic.qpon"
1314 ]
1415 }
00 {
11 "domain": "quebec",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.quebec",
3 "rdapURLs": [
4 "https://rdap.nic.quebec/"
5 ],
6 "nameServers": [
7 "anycast10.irondns.net",
8 "anycast23.irondns.net",
9 "anycast24.irondns.net",
10 "anycast9.irondns.net"
611 ],
712 "locations": [
813 "Quebec",
914 "CA-QC"
1015 ],
11 "whoisServer": "whois.nic.quebec",
12 "nameServers": [
13 "anycast10.irondns.net",
14 "anycast23.irondns.net",
15 "anycast24.irondns.net",
16 "anycast9.irondns.net"
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ]
1821 }
00 {
11 "domain": "quest",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.quest",
4 "rdapURLs": [
5 "https://rdap.nic.quest/"
66 ],
7 "whoisServer": "whois.nic.quest",
87 "nameServers": [
98 "a-cnic.nic.quest",
109 "b-cnic.nic.quest",
1110 "c-cnic.nic.quest",
1211 "d-cnic.nic.quest"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "qvc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.qvc",
4 "rdapURLs": [
5 "https://rdap.nic.qvc/"
66 ],
7 "whoisServer": "whois.nic.qvc",
87 "nameServers": [
98 "ns1.dns.nic.qvc",
109 "ns2.dns.nic.qvc",
1312 "ns5.dns.nic.qvc",
1413 "ns6.dns.nic.qvc"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "racing",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.racing",
4 "rdapURLs": [
5 "https://rdap.nic.racing/"
56 ],
6 "whoisServer": "whois.nic.racing",
77 "nameServers": [
88 "ns1.dns.nic.racing",
99 "ns2.dns.nic.racing",
1212 "ns5.dns.nic.racing",
1313 "ns6.dns.nic.racing"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/racing_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/racing_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/racing_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/racing_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/racing_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/racing_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/racing_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/racing_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/racing_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/racing_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/racing_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/racing_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/racing_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/racing_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/racing_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/racing_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "radio.am",
2 "rdapURLs": [
3 "https://rdap.centralnic.com/radio.am/"
4 ],
25 "nameServers": [
36 "a.nic.fm",
4 "b.nic.fm"
7 "b.nic.fm",
8 "c.nic.fm",
9 "d.nic.fm"
510 ],
611 "policies": [
712 {
00 {
11 "domain": "radio.fm",
2 "rdapURLs": [
3 "https://rdap.centralnic.com/radio.fm/"
4 ],
25 "nameServers": [
36 "a.nic.fm",
47 "b.nic.fm",
00 {
11 "domain": "radio",
2 "infoURL": "http://nic.radio/",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.nic.radio/",
3 "whoisServer": "whois.nic.radio",
4 "rdapURLs": [
5 "https://rdap.nic.radio/"
56 ],
6 "whoisServer": "whois.nic.radio",
77 "nameServers": [
88 "anycast10.irondns.net",
99 "anycast23.irondns.net",
1010 "anycast24.irondns.net",
1111 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "raid",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.raid",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/raid/v1/"
66 ],
7 "whoisServer": "whois.nic.raid",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "re",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.re",
73 "nameServers": [
84 "d.nic.fr",
95 "e.ext.nic.fr",
106 "f.ext.nic.fr",
117 "g.ext.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "read",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.read",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/read/"
66 ],
7 "whoisServer": "whois.nic.read",
87 "nameServers": [
98 "dns1.nic.read",
109 "dns2.nic.read",
1413 "dnsb.nic.read",
1514 "dnsc.nic.read",
1615 "dnsd.nic.read"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "realestate",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.realestate",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/realestate/v1/"
56 ],
6 "whoisServer": "whois.nic.realestate",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "realtor",
22 "infoURL": "https://www.claim.realtor/",
3 "tags": [
4 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/realtor/v1/"
55 ],
66 "nameServers": [
77 "ac1.nstld.com",
99 "ac3.nstld.com",
1010 "ac4.nstld.com"
1111 ],
12 "tags": [
13 "generic"
14 ],
1215 "policies": [
1316 {
1417 "type": "idn-disallowed"
00 {
11 "domain": "realty",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.realty",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.realty",
7 "nameServers": [
8 "a.nic.realty",
9 "b.nic.realty",
10 "c.nic.realty",
11 "d.nic.realty"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "recipes",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.recipes",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.recipes",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "red",
2 "infoURL": "http://nic.red/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.red/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/red/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.red",
99 "a2.nic.red",
1010 "b0.nic.red",
1111 "c0.nic.red"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/red_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/red_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/red_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/red_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/red_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/red_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/red_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/red_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/red_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/red_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/red_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/red_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/red_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/red_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/red_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/red_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/red_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/red_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/red_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/red_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/red_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/red_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/red_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/red_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/red_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/red_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "red.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "redstone",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.redstone",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/redstone/"
66 ],
7 "whoisServer": "whois.nic.redstone",
87 "nameServers": [
98 "a0.nic.redstone",
109 "a2.nic.redstone",
1110 "b0.nic.redstone",
1211 "c0.nic.redstone"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "redumbrella",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/redumbrella/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.redumbrella",
109 "a2.nic.redumbrella",
1110 "b0.nic.redumbrella",
1211 "c0.nic.redumbrella"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "rehab",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.rehab",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.rehab",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "reise",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.reise",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.reise",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
6467 {
6568 "type": "idn-table",
6669 "key": "mul-Latn",
67 "value": "https://www.iana.org/domains/idn-tables/tables/reise_latn_1.txt"
70 "value": "https://www.iana.org/domains/idn-tables/tables/academy_latn_1.0.txt"
6871 },
6972 {
7073 "type": "idn-table",
00 {
11 "domain": "reisen",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.reisen",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.reisen",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "reit",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "community",
5 "generic"
3 "whoisServer": "whois.nic.reit",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/reit/"
66 ],
7 "whoisServer": "whois.nic.reit",
87 "nameServers": [
98 "a.nic.reit",
109 "b.nic.reit",
1110 "c.nic.reit",
1211 "d.nic.reit"
12 ],
13 "tags": [
14 "community",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "rel.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "reliance",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.reliance",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/reliance/"
66 ],
7 "whoisServer": "whois.nic.reliance",
87 "nameServers": [
98 "a0.nic.reliance",
109 "a2.nic.reliance",
1110 "b0.nic.reliance",
1211 "c0.nic.reliance"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ren",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ren",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/ren/"
66 ],
7 "whoisServer": "whois.nic.ren",
87 "nameServers": [
98 "a.zdnscloud.com",
109 "b.zdnscloud.com",
1514 "i.zdnscloud.com",
1615 "j.zdnscloud.com"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "rent",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.rent",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/rent/"
56 ],
6 "whoisServer": "whois.nic.rent",
77 "nameServers": [
88 "a.nic.rent",
99 "b.nic.rent",
1010 "c.nic.rent",
1111 "d.nic.rent"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "rentals",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.rentals",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.rentals",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "rentals.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "repair",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.repair",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.repair",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "repair.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "report",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.report",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.report",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "republican",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.republican",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.republican",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "rest",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.rest",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/rest/"
45 ],
5 "whoisServer": "whois.nic.rest",
66 "nameServers": [
77 "a.nic.rest",
88 "b.nic.rest",
99 "c.nic.rest",
1010 "d.nic.rest"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "rest.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "restaurant",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.restaurant",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.restaurant",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "review",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.review",
4 "rdapURLs": [
5 "https://rdap.nic.review/"
56 ],
6 "whoisServer": "whois.nic.review",
77 "nameServers": [
88 "ns1.dns.nic.review",
99 "ns2.dns.nic.review",
1212 "ns5.dns.nic.review",
1313 "ns6.dns.nic.review"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/review_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/review_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/review_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/review_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/review_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/review_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/review_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/review_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/review_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/review_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/review_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/review_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/review_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/review_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/review_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/review_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/review_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/review_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/review_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/review_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/review_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/review_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/review_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/review_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/review_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/review_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/review_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/review_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/review_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/review_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/review_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/review_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/review_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/review_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "reviews",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.reviews",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.reviews",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "rexroth",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.rexroth",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/rexroth/v1/"
66 ],
7 "whoisServer": "whois.nic.rexroth",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "rich",
2 "infoURL": "http://nic.rich/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.rich/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/rich/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.rich",
99 "a2.nic.rich",
1010 "b0.nic.rich",
1111 "c0.nic.rich"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "be",
20 "value": "https://www.iana.org/domains/idn-tables/tables/rich_be_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "bg",
25 "value": "https://www.iana.org/domains/idn-tables/tables/rich_bg_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bs",
30 "value": "https://www.iana.org/domains/idn-tables/tables/rich_bs_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "da",
35 "value": "https://www.iana.org/domains/idn-tables/tables/rich_da_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "de",
40 "value": "https://www.iana.org/domains/idn-tables/tables/rich_de_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "es",
45 "value": "https://www.iana.org/domains/idn-tables/tables/rich_es_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "hu",
50 "value": "https://www.iana.org/domains/idn-tables/tables/rich_hu_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "is",
55 "value": "https://www.iana.org/domains/idn-tables/tables/rich_is_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/rich_ko_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/rich_lt_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/rich_lv_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "mk",
75 "value": "https://www.iana.org/domains/idn-tables/tables/rich_mk_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/rich_pl_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/rich_ru_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "sr",
90 "value": "https://www.iana.org/domains/idn-tables/tables/rich_sr_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "sr-ME",
95 "value": "https://www.iana.org/domains/idn-tables/tables/rich_sr-me_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "sv",
100 "value": "https://www.iana.org/domains/idn-tables/tables/rich_sv_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "uk",
105 "value": "https://www.iana.org/domains/idn-tables/tables/rich_uk_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "zh-CN",
110 "value": "https://www.iana.org/domains/idn-tables/tables/rich_zh-cn_4.0.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "zh-TW",
115 "value": "https://www.iana.org/domains/idn-tables/tables/rich_zh-tw_4.0.txt"
16116 }
17117 ]
18118 }
00 {
11 "domain": "richardli",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.richardli",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/richardli/"
66 ],
7 "whoisServer": "whois.nic.richardli",
87 "nameServers": [
98 "a0.nic.richardli",
109 "a2.nic.richardli",
1110 "b0.nic.richardli",
1211 "c0.nic.richardli"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "zh-CN",
21 "value": "https://www.iana.org/domains/idn-tables/tables/richardli_zh-cn_4.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-TW",
26 "value": "https://www.iana.org/domains/idn-tables/tables/richardli_zh-tw_4.0.txt"
1727 }
1828 ]
1929 }
00 {
11 "domain": "ricoh",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ricoh",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.ricoh",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/ricoh_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "rightathome",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.rightathome",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.rightathome",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "ril",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ril",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ril/"
66 ],
7 "whoisServer": "whois.nic.ril",
87 "nameServers": [
98 "a0.nic.ril",
109 "a2.nic.ril",
1110 "b0.nic.ril",
1211 "c0.nic.ril"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "rio",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.gtlds.nic.br",
4 "rdapURLs": [
5 "https://rdap.gtlds.nic.br/"
76 ],
8 "locations": [
9 "Rio de Janeiro",
10 "BR-RJ"
11 ],
12 "whoisServer": "whois.gtlds.nic.br",
137 "nameServers": [
148 "a.dns.br",
159 "b.dns.br",
1711 "d.dns.br",
1812 "e.dns.br",
1913 "f.dns.br"
14 ],
15 "locations": [
16 "Rio de Janeiro",
17 "BR-RJ"
18 ],
19 "tags": [
20 "city",
21 "generic",
22 "geo"
2023 ],
2124 "policies": [
2225 {
00 {
11 "domain": "rip",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.rip",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.rip",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "rmit",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.rmit",
4 "rdapURLs": [
5 "https://rdap.nic.rmit/"
66 ],
7 "whoisServer": "whois.nic.rmit",
87 "nameServers": [
98 "a.nic.rmit",
109 "b.nic.rmit",
1110 "c.nic.rmit",
1211 "d.nic.rmit"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "rnrt.tn",
22 "nameServers": [
3 "ns1.ati.tn",
4 "ns2.ati.tn"
3 "ns1.cck.rnu.tn",
4 "ns2.cck.rnu.tn",
5 "ns3.cck.rnu.tn"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "rnu.tn",
22 "nameServers": [
3 "ns1.ati.tn",
4 "ns2.ati.tn"
3 "ns1.cck.rnu.tn",
4 "ns2.cck.rnu.tn",
5 "ns3.cck.rnu.tn"
56 ],
67 "policies": [
78 {
00 {
11 "domain": "ro",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.rotld.ro",
73 "nameServers": [
84 "dns-at.rotld.ro",
128 "sec-dns-a.rotld.ro",
139 "sec-dns-b.rotld.ro"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "rocher",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.rocher",
4 "rdapURLs": [
5 "https://rdap.nic.rocher/"
66 ],
7 "whoisServer": "whois.nic.rocher",
87 "nameServers": [
98 "ns1.dns.nic.rocher",
109 "ns2.dns.nic.rocher",
1312 "ns5.dns.nic.rocher",
1413 "ns6.dns.nic.rocher"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_da_1.0.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_da_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_de_1.0.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_de_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_es_1.0.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_es_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_fi_1.0.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_fi_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
3942 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_hu_1.0.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_hu_3.0.xml"
4144 },
4245 {
4346 "type": "idn-table",
4447 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_is_1.0.txt"
48 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_is_3.0.xml"
4649 },
4750 {
4851 "type": "idn-table",
4952 "key": "it",
50 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_it_1.0.txt"
53 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_it_3.0.xml"
5154 },
5255 {
5356 "type": "idn-table",
5457 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ja_1.0.txt"
58 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ja_3.0.xml"
5659 },
5760 {
5861 "type": "idn-table",
5962 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ko_1.0.txt"
63 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ko_3.0.xml"
6164 },
6265 {
6366 "type": "idn-table",
6467 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lt_1.0.txt"
68 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lt_3.0.xml"
6669 },
6770 {
6871 "type": "idn-table",
6972 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lv_1.0.txt"
73 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lv_3.0.xml"
7174 },
7275 {
7376 "type": "idn-table",
7477 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_no_1.0.txt"
78 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_no_3.0.xml"
7679 },
7780 {
7881 "type": "idn-table",
7982 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pl_1.0.txt"
83 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pl_3.0.xml"
8184 },
8285 {
8386 "type": "idn-table",
8487 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pt_1.0.txt"
88 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pt_3.0.xml"
8689 },
8790 {
8891 "type": "idn-table",
8992 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ru_1.0.txt"
93 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ru_3.0.xml"
9194 },
9295 {
9396 "type": "idn-table",
9497 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_sv_1.0.txt"
98 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_sv_3.0.xml"
9699 },
97100 {
98101 "type": "idn-table",
99102 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_zh_1.0.txt"
103 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_zh_3.0.xml"
101104 }
102105 ]
103106 }
00 {
11 "domain": "rocks",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.rocks",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.rocks",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "rocks.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "rodeo",
22 "infoURL": "http://nic.rodeo/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.rodeo",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/rodeo/"
56 ],
6 "whoisServer": "whois.nic.rodeo",
77 "nameServers": [
88 "dns1.nic.rodeo",
99 "dns2.nic.rodeo",
1313 "dnsb.nic.rodeo",
1414 "dnsc.nic.rodeo",
1515 "dnsd.nic.rodeo"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "rogers",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/rogers/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.rogers",
109 "a2.nic.rogers",
1110 "b0.nic.rogers",
1211 "c0.nic.rogers"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "room",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.room",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/room/"
56 ],
6 "whoisServer": "whois.nic.room",
77 "nameServers": [
88 "dns1.nic.room",
99 "dns2.nic.room",
1313 "dnsb.nic.room",
1414 "dnsc.nic.room",
1515 "dnsd.nic.room"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "rs",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.rnids.rs",
73 "nameServers": [
84 "a.nic.rs",
128 "h.nic.rs",
139 "l.nic.rs"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-table",
00 {
11 "domain": "rsvp",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ru.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/ru.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1111 ],
1212 "wildcards": [
1313 "141.8.226.34"
14 ],
15 "tags": [
16 "private"
1417 ]
1518 }
00 {
11 "domain": "ru",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.tcinet.ru",
73 "nameServers": [
84 "a.dns.ripn.net",
106 "d.dns.ripn.net",
117 "e.dns.ripn.net",
128 "f.dns.ripn.net"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ],
1414 "policies": [
1515 {
00 {
11 "domain": "ru.tc",
22 "nameServers": [
3 "ns17.above.com",
4 "ns18.above.com"
3 "ns1.bodis.com",
4 "ns2.bodis.com"
55 ],
66 "wildcards": [
7 "103.224.182.250"
7 "199.59.242.153"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "rugby",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.rugby",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/rugby/"
56 ],
6 "whoisServer": "whois.nic.rugby",
77 "nameServers": [
88 "a.nic.rugby",
99 "b.nic.rugby",
1010 "c.nic.rugby",
1111 "d.nic.rugby"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ruhr",
2 "tags": [
3 "generic",
4 "region"
2 "whoisServer": "whois.nic.ruhr",
3 "rdapURLs": [
4 "https://rdap.nic.ruhr/"
55 ],
6 "locations": [
7 "DE-NW"
8 ],
9 "whoisServer": "whois.nic.ruhr",
106 "nameServers": [
117 "anycast10.irondns.net",
128 "anycast23.irondns.net",
139 "anycast24.irondns.net",
1410 "anycast9.irondns.net"
11 ],
12 "locations": [
13 "DE-NW"
14 ],
15 "tags": [
16 "generic",
17 "region"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "run",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.run",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.run",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "rw",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "https://ricta.org.rw/",
63 "whoisServer": "whois.ricta.org.rw",
7 "whoisURL": "http://whois.ricta.org.rw",
84 "nameServers": [
95 "fork.sth.dnsnode.net",
106 "ns-rw.afrinic.net",
128 "ns3.ricta.org.rw",
139 "pch.ricta.org.rw"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "rwe",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.rwe",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/rwe/v1/"
66 ],
7 "whoisServer": "whois.nic.rwe",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "ryukyu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.ryukyu",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
6 ],
7 "nameServers": [
8 "a.gmoregistry.net",
9 "b.gmoregistry.net",
10 "k.gmoregistry.net",
11 "l.gmoregistry.net"
612 ],
713 "locations": [
814 "JP-46",
915 "JP-47"
1016 ],
11 "whoisServer": "whois.nic.ryukyu",
12 "nameServers": [
13 "a.gmoregistry.net",
14 "b.gmoregistry.net",
15 "k.gmoregistry.net",
16 "l.gmoregistry.net"
17 "tags": [
18 "generic",
19 "region"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "sa.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/sa.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1111 ],
1212 "wildcards": [
1313 "141.8.226.34"
14 ],
15 "tags": [
16 "private"
1417 ]
1518 }
00 {
11 "domain": "sa",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.net.sa",
73 "nameServers": [
84 "c1.dns.sa",
139 "s1.dns.sa",
1410 "s2.dns.sa"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "saarland",
2 "tags": [
3 "generic",
4 "geo",
5 "region"
2 "whoisServer": "whois.nic.saarland",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/saarland/"
65 ],
7 "locations": [
8 "DE-SL"
9 ],
10 "whoisServer": "whois.nic.saarland",
116 "nameServers": [
127 "a.nic.saarland",
138 "b.nic.saarland",
149 "c.nic.saarland",
1510 "d.nic.saarland"
11 ],
12 "locations": [
13 "DE-SL"
14 ],
15 "tags": [
16 "generic",
17 "geo",
18 "region"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "safe",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.safe",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/safe/"
66 ],
7 "whoisServer": "whois.nic.safe",
87 "nameServers": [
98 "dns1.nic.safe",
109 "dns2.nic.safe",
1413 "dnsb.nic.safe",
1514 "dnsc.nic.safe",
1615 "dnsd.nic.safe"
16 ],
17 "tags": [
18 "closed",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "safety",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.safety",
4 "rdapURLs": [
5 "https://rdap.nic.safety/"
56 ],
6 "whoisServer": "whois.nic.safety",
77 "nameServers": [
88 "ns1.dns.nic.safety",
99 "ns2.dns.nic.safety",
1212 "ns5.dns.nic.safety",
1313 "ns6.dns.nic.safety"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/safety_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "sakura",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://rdap.nic.sakura/rdap/"
65 ],
76 "nameServers": [
87 "tld1.nic.sakura",
98 "tld2.nic.sakura",
109 "tld3.nic.sakura",
1110 "tld5.nic.sakura"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "sale",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.sale",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.sale",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "salon",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.salon",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.salon",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "samsclub",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.samsclub",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/samsclub/v1/"
66 ],
7 "whoisServer": "whois.nic.samsclub",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "samsung",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.samsung",
4 "rdapURLs": [
5 "https://nic.samsung:8443/rdap/"
66 ],
7 "whoisServer": "whois.nic.samsung",
87 "nameServers": [
98 "ns1.samsung.centralnic-dns.com",
109 "ns2.samsung.centralnic-dns.com",
1110 "ns3.samsung.centralnic-dns.com",
1211 "ns4.samsung.centralnic-dns.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ko",
21 "value": "https://www.iana.org/domains/idn-tables/tables/samsung_ko_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "sandvik",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sandvik",
4 "rdapURLs": [
5 "https://rdap.nic.sandvik/"
66 ],
7 "whoisServer": "whois.nic.sandvik",
87 "nameServers": [
98 "a.nic.sandvik",
109 "b.nic.sandvik",
1110 "c.nic.sandvik",
1211 "d.nic.sandvik"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "da",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_da_3.0.xml"
22 },
23 {
24 "type": "idn-table",
25 "key": "fr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_fr_3.0.xml"
27 },
28 {
29 "type": "idn-table",
30 "key": "pl",
31 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_pl_3.0.xml"
32 },
33 {
34 "type": "idn-table",
35 "key": "ru",
36 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_ru_3.0.xml"
37 },
38 {
39 "type": "idn-table",
40 "key": "sv",
41 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_sv_3.0.xml"
42 },
43 {
44 "type": "idn-table",
45 "key": "zh",
46 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_zh_3.0.xml"
1747 }
1848 ]
1949 }
00 {
11 "domain": "sandvikcoromant",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sandvikcoromant",
4 "rdapURLs": [
5 "https://rdap.nic.sandvikcoromant/"
66 ],
7 "whoisServer": "whois.nic.sandvikcoromant",
87 "nameServers": [
98 "a.nic.sandvikcoromant",
109 "b.nic.sandvikcoromant",
1110 "c.nic.sandvikcoromant",
1211 "d.nic.sandvikcoromant"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "da",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_da_3.0.xml"
22 },
23 {
24 "type": "idn-table",
25 "key": "fr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_fr_3.0.xml"
27 },
28 {
29 "type": "idn-table",
30 "key": "pl",
31 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_pl_3.0.xml"
32 },
33 {
34 "type": "idn-table",
35 "key": "ru",
36 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_ru_3.0.xml"
37 },
38 {
39 "type": "idn-table",
40 "key": "sv",
41 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_sv_3.0.xml"
42 },
43 {
44 "type": "idn-table",
45 "key": "zh",
46 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_zh_3.0.xml"
1747 }
1848 ]
1949 }
00 {
11 "domain": "sanofi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sanofi",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/sanofi/v1/"
66 ],
7 "whoisServer": "whois.nic.sanofi",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sap",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sap",
4 "rdapURLs": [
5 "https://rdap.nic.sap/"
66 ],
7 "whoisServer": "whois.nic.sap",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sarl",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.sarl",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.sarl",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "sas",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sas",
4 "rdapURLs": [
5 "https://rdap.nic.sas/"
66 ],
7 "whoisServer": "whois.nic.sas",
87 "nameServers": [
98 "ns1.dns.nic.sas",
109 "ns2.dns.nic.sas",
1312 "ns5.dns.nic.sas",
1413 "ns6.dns.nic.sas"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/sas_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "save",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.save",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/save/"
56 ],
6 "whoisServer": "whois.nic.save",
77 "nameServers": [
88 "dns1.nic.save",
99 "dns2.nic.save",
1313 "dnsb.nic.save",
1414 "dnsc.nic.save",
1515 "dnsd.nic.save"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "saxo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.saxo",
4 "rdapURLs": [
5 "https://rdap.nic.saxo/"
66 ],
7 "whoisServer": "whois.nic.saxo",
87 "nameServers": [
98 "a.nic.saxo",
109 "b.nic.saxo",
1110 "c.nic.saxo",
1211 "d.nic.saxo"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sb",
2 "whoisServer": "whois.nic.net.sb",
3 "nameServers": [
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz",
6 "pch.nic.sb"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.nic.net.sb",
7 "nameServers": [
8 "ns.cocca.fr",
9 "pch.nic.sb"
1011 ],
1112 "policies": [
1213 {
00 {
11 "domain": "sbi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sbi",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/sbi/"
66 ],
7 "whoisServer": "whois.nic.sbi",
87 "nameServers": [
98 "a0.nic.sbi",
109 "a2.nic.sbi",
1110 "b0.nic.sbi",
1211 "c0.nic.sbi"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sbs",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.sbs",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/sbs/"
6 ],
7 "nameServers": [
8 "a.nic.sbs",
9 "b.nic.sbs",
10 "c.nic.sbs",
11 "d.nic.sbs"
12 ],
313 "tags": [
414 "brand",
515 "generic"
6 ],
7 "whoisServer": "whois.nic.sbs",
8 "nameServers": [
9 "ac1.nstld.com",
10 "ac2.nstld.com",
11 "ac3.nstld.com",
12 "ac4.nstld.com"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sc",
2 "tags": [
3 "country",
4 "generic",
5 "geo"
6 ],
72 "whoisServer": "whois2.afilias-grs.net",
83 "nameServers": [
94 "a0.cctld.afilias-nst.info",
149 "d0.cctld.afilias-nst.org",
1510 "ns1.nic.sc"
1611 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-table",
0 {
1 "domain": "sc.ls",
2 "nameServers": [
3 "ns1.nic.ls",
4 "ns1.telewebls.com",
5 "ns2.nic.ls"
6 ],
7 "policies": [
8 {
9 "type": "idn-disallowed"
10 }
11 ]
12 }
00 {
11 "domain": "sca",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sca",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/sca/v1/"
66 ],
7 "whoisServer": "whois.nic.sca",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
18 {
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sca_ar_2.5.txt"
22 },
1523 {
1624 "type": "idn-table",
1725 "key": "mul-Arab",
00 {
11 "domain": "scb",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.scb",
4 "rdapURLs": [
5 "https://rdap.nic.scb/"
66 ],
7 "whoisServer": "whois.nic.scb",
87 "nameServers": [
98 "a.nic.scb",
109 "b.nic.scb",
1110 "c.nic.scb",
1211 "d.nic.scb"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
+0
-8
metadata/sch.ss.json less more
0 {
1 "domain": "sch.ss",
2 "nameServers": [
3 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "ssnic.anycastdns.cz"
6 ]
7 }
00 {
11 "domain": "schaeffler",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.nic.schaeffler/"
6 ],
7 "nameServers": [
8 "a.dns.nic.schaeffler",
9 "m.dns.nic.schaeffler",
10 "n.dns.nic.schaeffler"
11 ],
312 "tags": [
413 "brand",
514 "generic"
6 ],
7 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.schaeffler",
10 "a2.nic.schaeffler",
11 "b0.nic.schaeffler",
12 "c0.nic.schaeffler"
1315 ],
1416 "policies": [
1517 {
00 {
11 "domain": "schmidt",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.schmidt",
4 "rdapURLs": [
5 "https://rdap.nic.schmidt/"
66 ],
7 "whoisServer": "whois.nic.schmidt",
87 "nameServers": [
98 "a.nic.schmidt",
109 "b.nic.schmidt",
1110 "c.nic.schmidt",
1211 "d.nic.schmidt"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "scholarships",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.scholarships",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/scholarships/"
56 ],
6 "whoisServer": "whois.nic.scholarships",
77 "nameServers": [
88 "a0.nic.scholarships",
99 "a2.nic.scholarships",
1010 "b0.nic.scholarships",
1111 "c0.nic.scholarships"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "school",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.school",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.school",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "schule",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.schule",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.schule",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "schwarz",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.schwarz",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/schwarz/"
66 ],
7 "whoisServer": "whois.nic.schwarz",
87 "nameServers": [
98 "a.nic.schwarz",
109 "b.nic.schwarz",
1110 "c.nic.schwarz",
1211 "d.nic.schwarz"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "science",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.science",
4 "rdapURLs": [
5 "https://rdap.nic.science/"
56 ],
6 "whoisServer": "whois.nic.science",
77 "nameServers": [
88 "ns1.dns.nic.science",
99 "ns2.dns.nic.science",
1212 "ns5.dns.nic.science",
1313 "ns6.dns.nic.science"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/science_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/science_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/science_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/science_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/science_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/science_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/science_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/science_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/science_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/science_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/science_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/science_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/science_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/science_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/science_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/science_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/science_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/science_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/science_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/science_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/science_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/science_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/science_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/science_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/science_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/science_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/science_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/science_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/science_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/science_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/science_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/science_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/science_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/science_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "scjohnson",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.scjohnson",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/scjohnson/v1/"
66 ],
7 "whoisServer": "whois.nic.scjohnson",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "scor",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.scor",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.scor",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "scot",
2 "tags": [
3 "generic",
4 "region"
2 "whoisServer": "whois.nic.scot",
3 "rdapURLs": [
4 "https://rdap.nic.scot/"
55 ],
6 "locations": [
7 "GB-SCT"
8 ],
9 "whoisServer": "whois.nic.scot",
106 "nameServers": [
117 "anycast10.irondns.net",
128 "anycast23.irondns.net",
139 "anycast24.irondns.net",
1410 "anycast9.irondns.net"
11 ],
12 "locations": [
13 "GB-SCT"
14 ],
15 "tags": [
16 "generic",
17 "region"
1518 ]
1619 }
00 {
11 "domain": "sd",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "ans1.canar.sd",
84 "ans1.sis.sd",
117 "pch.sis.sd",
128 "sd.cctld.authdns.ripe.net"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "se.com",
2 "tags": [
3 "private"
4 ],
52 "whoisServer": "whois.centralnic.com",
63 "nameServers": [
74 "ns1.perf1.com",
96 "ns3.perf1.eu",
107 "ns4.perf1.de",
118 "ns5.perf1.asia"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "se",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.iis.se",
73 "nameServers": [
84 "a.ns.se",
1612 "y.ns.se",
1713 "z.ns.se"
1814 ],
15 "tags": [
16 "country",
17 "geo"
18 ],
1919 "policies": [
2020 {
2121 "type": "idn-table",
2222 "key": "mul-Latn",
23 "value": "https://www.iana.org/domains/idn-tables/tables/se_latn_1.0.html",
23 "value": "https://www.iana.org/domains/idn-tables/tables/se_latn_3.xml",
2424 "comment": "https://www.iis.se/english/domains/se/idn/"
2525 },
2626 {
3131 {
3232 "type": "idn-table",
3333 "key": "yi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/se_yi_1.0.html"
34 "value": "https://www.iana.org/domains/idn-tables/tables/se_yi_3.xml"
3535 }
3636 ]
3737 }
00 {
11 "domain": "se.net",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/se.net/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "se.tc",
2 "nameServers": [
3 "gabriel.ns.cloudflare.com",
4 "jamie.ns.cloudflare.com"
5 ],
26 "policies": [
37 {
48 "type": "idn-disallowed"
00 {
11 "domain": "search",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "seat",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.seat",
4 "rdapURLs": [
5 "https://rdap.nic.seat/"
66 ],
7 "whoisServer": "whois.nic.seat",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1110 "anycast24.irondns.net",
1211 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "secure",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.secure",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/secure/"
56 ],
6 "whoisServer": "whois.nic.secure",
77 "nameServers": [
88 "dns1.nic.secure",
99 "dns2.nic.secure",
1313 "dnsb.nic.secure",
1414 "dnsc.nic.secure",
1515 "dnsd.nic.secure"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "security",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.security",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/security/"
56 ],
6 "whoisServer": "whois.nic.security",
77 "nameServers": [
88 "a.nic.security",
99 "b.nic.security",
1010 "e.nic.security",
1111 "f.nic.security"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "seek",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.seek",
4 "rdapURLs": [
5 "https://rdap.nic.seek/"
66 ],
7 "whoisServer": "whois.nic.seek",
87 "nameServers": [
98 "a.nic.seek",
109 "b.nic.seek",
1110 "c.nic.seek",
1211 "d.nic.seek"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
0 {
1 "domain": "seg.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "select",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.select",
4 "rdapURLs": [
5 "https://rdap.nic.select/"
66 ],
7 "whoisServer": "whois.nic.select",
87 "nameServers": [
98 "a.nic.select",
109 "b.nic.select",
1110 "c.nic.select",
1211 "d.nic.select"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sener",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/sener/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "services",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.services",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.services",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "services.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "ses",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ses",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/ses/v1/"
66 ],
7 "whoisServer": "whois.nic.ses",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "seven",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.seven",
4 "rdapURLs": [
5 "https://rdap.nic.seven/"
66 ],
7 "whoisServer": "whois.nic.seven",
87 "nameServers": [
98 "a.nic.seven",
109 "b.nic.seven",
1110 "c.nic.seven",
1211 "d.nic.seven"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sew",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/sew/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.sew",
109 "a2.nic.sew",
1110 "b0.nic.sew",
1211 "c0.nic.sew"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sex.hu",
2 "tags": [
3 "adult"
4 ],
52 "nameServers": [
63 "a.hu",
74 "b.hu",
96 "d.hu",
107 "ns-s.nic.hu"
118 ],
9 "tags": [
10 "adult"
11 ],
1212 "policies": [
1313 {
1414 "type": "idn-disallowed"
00 {
11 "domain": "sex",
2 "infoURL": "http://nic.sex/",
3 "tags": [
4 "adult",
5 "generic"
2 "infoURL": "https://nic.sex/",
3 "whoisServer": "whois.registrar.adult",
4 "rdapURLs": [
5 "https://whois.registrar.adult/rdap/"
66 ],
7 "whoisServer": "whois.registrar.adult",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns5.uniregistry.net",
1211 "ns6.uniregistry.info"
1312 ],
13 "tags": [
14 "adult",
15 "generic"
16 ],
1417 "policies": [
18 {
19 "type": "idn-table",
20 "key": "ar",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sex_ar_2.txt"
22 },
1523 {
1624 "type": "idn-table",
1725 "key": "be",
2634 "type": "idn-table",
2735 "key": "bs",
2836 "value": "https://www.iana.org/domains/idn-tables/tables/sex_bs_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "cnr",
41 "value": "https://www.iana.org/domains/idn-tables/tables/sex_cnr_1.0.txt"
2942 },
3043 {
3144 "type": "idn-table",
4457 },
4558 {
4659 "type": "idn-table",
60 "key": "fr",
61 "value": "https://www.iana.org/domains/idn-tables/tables/sex_fr_1.0.txt"
62 },
63 {
64 "type": "idn-table",
4765 "key": "hu",
4866 "value": "https://www.iana.org/domains/idn-tables/tables/sex_hu_1.txt"
4967 },
5169 "type": "idn-table",
5270 "key": "is",
5371 "value": "https://www.iana.org/domains/idn-tables/tables/sex_is_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "it",
76 "value": "https://www.iana.org/domains/idn-tables/tables/sex_it_1.0.txt"
5477 },
5578 {
5679 "type": "idn-table",
7699 "type": "idn-table",
77100 "key": "pl",
78101 "value": "https://www.iana.org/domains/idn-tables/tables/sex_pl_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pt",
106 "value": "https://www.iana.org/domains/idn-tables/tables/sex_pt_1.0.txt"
79107 },
80108 {
81109 "type": "idn-table",
00 {
11 "domain": "sex.pl",
2 "tags": [
3 "adult"
4 ],
52 "nameServers": [
63 "a-dns.pl",
74 "b-dns.pl",
1310 "h-dns.pl",
1411 "i-dns.pl"
1512 ],
13 "tags": [
14 "adult"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "sexy",
2 "infoURL": "http://nic.sexy/",
3 "tags": [
4 "adult",
5 "generic"
2 "infoURL": "https://nic.sexy/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.uniregistry.net",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns3.uniregistry.net",
1211 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "adult",
15 "generic"
1316 ],
1417 "policies": [
1518 {
3437 },
3538 {
3639 "type": "idn-table",
40 "key": "ja",
41 "value": "https://www.iana.org/domains/idn-tables/tables/sexy_ja_1.1.txt"
42 },
43 {
44 "type": "idn-table",
3745 "key": "mul-Cyrl",
3846 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3947 },
00 {
11 "domain": "sfr",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sfr",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/sfr/"
66 ],
7 "whoisServer": "whois.nic.sfr",
87 "nameServers": [
98 "a.nic.sfr",
109 "b.nic.sfr",
1110 "c.nic.sfr",
1211 "d.nic.sfr"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sg",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.sgnic.sg",
73 "nameServers": [
84 "dsany.sgnic.sg",
106 "dsany3.sgnic.sg",
117 "ns4.apnic.net",
128 "pch.sgzones.sg"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ]
1414 }
00 {
11 "domain": "sh",
22 "infoURL": "https://www.nic.sh/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.nic.sh",
84 "nameServers": [
95 "a0.nic.sh",
106 "a2.nic.sh",
117 "b0.nic.sh",
128 "c0.nic.sh"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ],
1414 "policies": [
1515 {
00 {
11 "domain": "shangrila",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.shangrila",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/shangrila/v1/"
66 ],
7 "whoisServer": "whois.nic.shangrila",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sharp",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "es",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sharp_es_1.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "fr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/sharp_fr_1.0.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "ja",
31 "value": "https://www.iana.org/domains/idn-tables/tables/sharp_ja_1.0.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "ko",
36 "value": "https://www.iana.org/domains/idn-tables/tables/sharp_ko_1.0.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "pl",
41 "value": "https://www.iana.org/domains/idn-tables/tables/sharp_pl_1.0.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "pt",
46 "value": "https://www.iana.org/domains/idn-tables/tables/sharp_pt_1.0.txt"
1747 }
1848 ]
1949 }
00 {
11 "domain": "shaw",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/shaw/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.shaw",
109 "a2.nic.shaw",
1110 "b0.nic.shaw",
1211 "c0.nic.shaw"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "shell",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.shell",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/shell/v1/"
66 ],
7 "whoisServer": "whois.nic.shell",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "shia",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.shia",
4 "rdapURLs": [
5 "https://api.rdap.agitsys.net/"
6 ],
7 "nameServers": [
8 "a.ns.nic.shia",
9 "b.ns.nic.shia",
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
512 ],
613 "locations": [
714 "Iran"
815 ],
9 "whoisServer": "whois.nic.shia",
10 "nameServers": [
11 "a.ns.nic.shia",
12 "b.ns.nic.shia",
13 "ns.cocca.fr"
16 "tags": [
17 "generic"
1418 ],
1519 "policies": [
1620 {
00 {
11 "domain": "shiksha",
2 "infoURL": "http://nic.shiksha/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.shiksha/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/shiksha/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.shiksha",
99 "a2.nic.shiksha",
1010 "b0.nic.shiksha",
1111 "c0.nic.shiksha"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "shiksha.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "shoes",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.shoes",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.shoes",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "shoes.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "shop.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
00 {
11 "domain": "shop",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.shop",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.nic.shop",
77 "nameServers": [
88 "a.gmoregistry.net",
99 "b.gmoregistry.net",
1010 "k.gmoregistry.net",
1111 "l.gmoregistry.net"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/shop_ar_1.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/shop_de_1.0.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/shop_es_1.0.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "fr",
35 "value": "https://www.iana.org/domains/idn-tables/tables/shop_fr_1.0.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/shop_ja_1.0.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "ko",
45 "value": "https://www.iana.org/domains/idn-tables/tables/shop_ko_1.0.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "nl",
50 "value": "https://www.iana.org/domains/idn-tables/tables/shop_nl_1.0.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "pl",
55 "value": "https://www.iana.org/domains/idn-tables/tables/shop_pl_1.0.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "pt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/shop_pt_1.0.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "ru",
65 "value": "https://www.iana.org/domains/idn-tables/tables/shop_ru_1.0.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "tr",
70 "value": "https://www.iana.org/domains/idn-tables/tables/shop_tr_1.0.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "zh",
75 "value": "https://www.iana.org/domains/idn-tables/tables/shop_zh_1.1.txt"
1676 }
1777 ]
1878 }
00 {
11 "domain": "shopping",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.shopping",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.shopping",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "shouji",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.teleinfo.cn",
4 "rdapURLs": [
5 "https://rdap.teleinfo.cn/"
66 ],
7 "whoisServer": "whois.teleinfo.cn",
87 "nameServers": [
98 "ns1.teleinfo.cn",
109 "ns2.teleinfoo.com",
1110 "ns3.teleinfo.cn",
1211 "ns4.teleinfoo.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "show",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.show",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.show",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "showtime",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/showtime/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.showtime",
109 "a2.nic.showtime",
1110 "b0.nic.showtime",
1211 "c0.nic.showtime"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "shriram",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
6 ],
7 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.shriram",
10 "a2.nic.shriram",
11 "b0.nic.shriram",
12 "c0.nic.shriram"
137 ],
148 "policies": [
159 {
00 {
11 "domain": "si",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.register.si",
73 "nameServers": [
84 "b.dns.si",
139 "k.dns.si",
1410 "l.dns.si"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-table",
00 {
11 "domain": "silk",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.silk",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/silk/"
66 ],
7 "whoisServer": "whois.nic.silk",
87 "nameServers": [
98 "dns1.nic.silk",
109 "dns2.nic.silk",
1413 "dnsb.nic.silk",
1514 "dnsc.nic.silk",
1615 "dnsd.nic.silk"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "sina",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sina",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/sina/"
66 ],
7 "whoisServer": "whois.nic.sina",
87 "nameServers": [
98 "a0.nic.sina",
109 "a2.nic.sina",
1110 "b0.nic.sina",
1211 "c0.nic.sina"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "zh-CN",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sina_zh-cn_4.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-TW",
26 "value": "https://www.iana.org/domains/idn-tables/tables/sina_zh-tw_4.0.txt"
1727 }
1828 ]
1929 }
00 {
11 "domain": "singles",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.singles",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.singles",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "site",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.site",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/site/"
56 ],
6 "whoisServer": "whois.nic.site",
77 "nameServers": [
88 "a.nic.site",
99 "b.nic.site",
1010 "e.nic.site",
1111 "f.nic.site"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
5962 {
6063 "type": "idn-table",
6164 "key": "zh",
62 "value": "https://www.iana.org/domains/idn-tables/tables/site_zh_1.2.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/site_zh_1.0.txt"
6366 }
6467 ]
6568 }
00 {
11 "domain": "sj",
2 "nameServers": [
3 "nac.no",
4 "nn.uninett.no",
5 "server.nordu.net"
6 ],
27 "tags": [
38 "closed",
49 "country",
510 "geo"
6 ],
7 "nameServers": [
8 "nac.no",
9 "nn.uninett.no",
10 "server.nordu.net"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "sk",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.sk-nic.sk",
73 "nameServers": [
84 "a.tld.sk",
139 "g.tld.sk",
1410 "h.tld.sk"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "ski",
2 "infoURL": "http://nic.ski/",
3 "tags": [
4 "generic"
2 "infoURL": "https://domains.ski/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/ski/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.ski",
99 "a2.nic.ski",
1010 "b0.nic.ski",
1111 "c0.nic.ski"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "skin",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.skin",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/skin/"
56 ],
6 "whoisServer": "whois.nic.skin",
77 "nameServers": [
88 "a.nic.skin",
99 "b.nic.skin",
1010 "c.nic.skin",
1111 "d.nic.skin"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "sky",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sky",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/sky/v1/"
66 ],
7 "whoisServer": "whois.nic.sky",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "skype",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.skype",
4 "rdapURLs": [
5 "https://rdap.nic.skype/"
66 ],
7 "whoisServer": "whois.nic.skype",
87 "nameServers": [
98 "ns1.dns.nic.skype",
109 "ns2.dns.nic.skype",
1312 "ns5.dns.nic.skype",
1413 "ns6.dns.nic.skype"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/skype_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/skype_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/skype_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/skype_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/skype_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/skype_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/skype_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/skype_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/skype_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/skype_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/skype_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/skype_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/skype_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/skype_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/skype_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/skype_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "sl",
2 "infoURL": "https://www.nic.sl/",
3 "whoisServer": "whois.nic.sl",
4 "nameServers": [
5 "ns1.neoip.com",
6 "ns2.neoip.com"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.nic.sl",
7 "whoisURL": "http://www.nic.sl",
8 "nameServers": [
9 "ns1.neoip.com",
10 "ns2.neoip.com"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "sling",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sling",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/sling/"
66 ],
7 "whoisServer": "whois.nic.sling",
87 "nameServers": [
98 "a0.nic.sling",
109 "a2.nic.sling",
1110 "b0.nic.sling",
1211 "c0.nic.sling"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sm",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.sm",
73 "nameServers": [
84 "dns.intelcom.sm",
106 "ns3.telecomitalia.sm",
117 "sm.cctld.authdns.ripe.net"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "smart",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.smart",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/smart/"
66 ],
7 "whoisServer": "whois.nic.smart",
87 "nameServers": [
98 "a.nic.smart",
109 "b.nic.smart",
1110 "c.nic.smart",
1211 "d.nic.smart"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "smile",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.smile",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/smile/"
56 ],
6 "whoisServer": "whois.nic.smile",
77 "nameServers": [
88 "dns1.nic.smile",
99 "dns2.nic.smile",
1313 "dnsb.nic.smile",
1414 "dnsc.nic.smile",
1515 "dnsd.nic.smile"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "sn",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisServer": "whois.nic.sn",
83 "nameServers": [
94 "censvrns0001.ird.fr",
127 "ns1.sonatel.sn",
138 "sn.cctld.authdns.ripe.net"
149 ],
10 "tags": [
11 "closed",
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "sncf",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sncf",
4 "rdapURLs": [
5 "https://rdap.nic.sncf/"
66 ],
7 "whoisServer": "whois.nic.sncf",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
11 ],
12 "tags": [
13 "brand",
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "so",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.so",
73 "nameServers": [
84 "d.nic.so",
95 "e.nic.so"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "soccer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.soccer",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.soccer",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "social",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.social",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.social",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "social.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "softbank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.softbank",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.softbank",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/softbank_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "software",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.software",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.software",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "sohu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sohu",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/sohu/"
66 ],
7 "whoisServer": "whois.nic.sohu",
87 "nameServers": [
98 "a.zdnscloud.com",
109 "b.zdnscloud.com",
1413 "g.zdnscloud.com",
1514 "i.zdnscloud.com",
1615 "j.zdnscloud.com"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "solar",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.solar",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.solar",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "solar.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "solutions",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.solutions",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.solutions",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "solutions.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "song",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.song",
4 "rdapURLs": [
5 "https://rdap.nic.song/"
66 ],
7 "whoisServer": "whois.nic.song",
87 "nameServers": [
98 "ns1.dns.nic.song",
109 "ns2.dns.nic.song",
1312 "ns5.dns.nic.song",
1413 "ns6.dns.nic.song"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-table",
1922 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/song_ar_2.1.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/song_ar_3.0.xml"
2124 },
2225 {
2326 "type": "idn-table",
2427 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/song_da_2.1.txt"
28 "value": "https://www.iana.org/domains/idn-tables/tables/song_da_3.0.xml"
2629 },
2730 {
2831 "type": "idn-table",
2932 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/song_de_2.1.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/song_de_3.0.xml"
3134 },
3235 {
3336 "type": "idn-table",
3437 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/song_es_2.1.txt"
38 "value": "https://www.iana.org/domains/idn-tables/tables/song_es_3.0.xml"
3639 },
3740 {
3841 "type": "idn-table",
3942 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/song_fi_2.1.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/song_fi_3.0.xml"
4144 },
4245 {
4346 "type": "idn-table",
4447 "key": "fr",
45 "value": "https://www.iana.org/domains/idn-tables/tables/song_fr_2.1.txt"
48 "value": "https://www.iana.org/domains/idn-tables/tables/song_fr_3.0.xml"
4649 },
4750 {
4851 "type": "idn-table",
4952 "key": "hu",
50 "value": "https://www.iana.org/domains/idn-tables/tables/song_hu_2.1.txt"
53 "value": "https://www.iana.org/domains/idn-tables/tables/song_hu_3.0.xml"
5154 },
5255 {
5356 "type": "idn-table",
5457 "key": "is",
55 "value": "https://www.iana.org/domains/idn-tables/tables/song_is_2.1.txt"
58 "value": "https://www.iana.org/domains/idn-tables/tables/song_is_3.0.xml"
5659 },
5760 {
5861 "type": "idn-table",
5962 "key": "ja",
60 "value": "https://www.iana.org/domains/idn-tables/tables/song_ja_2.1.txt"
63 "value": "https://www.iana.org/domains/idn-tables/tables/song_ja_3.0.xml"
6164 },
6265 {
6366 "type": "idn-table",
6467 "key": "ko",
65 "value": "https://www.iana.org/domains/idn-tables/tables/song_ko_2.1.txt"
68 "value": "https://www.iana.org/domains/idn-tables/tables/song_ko_3.0.xml"
6669 },
6770 {
6871 "type": "idn-table",
6972 "key": "lt",
70 "value": "https://www.iana.org/domains/idn-tables/tables/song_lt_2.1.txt"
73 "value": "https://www.iana.org/domains/idn-tables/tables/song_lt_3.0.xml"
7174 },
7275 {
7376 "type": "idn-table",
7477 "key": "lv",
75 "value": "https://www.iana.org/domains/idn-tables/tables/song_lv_2.1.txt"
78 "value": "https://www.iana.org/domains/idn-tables/tables/song_lv_3.0.xml"
7679 },
7780 {
7881 "type": "idn-table",
7982 "key": "no",
80 "value": "https://www.iana.org/domains/idn-tables/tables/song_no_2.1.txt"
83 "value": "https://www.iana.org/domains/idn-tables/tables/song_no_3.0.xml"
8184 },
8285 {
8386 "type": "idn-table",
8487 "key": "pl",
85 "value": "https://www.iana.org/domains/idn-tables/tables/song_pl_2.1.txt"
88 "value": "https://www.iana.org/domains/idn-tables/tables/song_pl_3.0.xml"
8689 },
8790 {
8891 "type": "idn-table",
8992 "key": "pt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/song_pt_2.1.txt"
93 "value": "https://www.iana.org/domains/idn-tables/tables/song_pt_3.0.xml"
9194 },
9295 {
9396 "type": "idn-table",
9497 "key": "ru",
95 "value": "https://www.iana.org/domains/idn-tables/tables/song_ru_2.1.txt"
98 "value": "https://www.iana.org/domains/idn-tables/tables/song_ru_3.0.xml"
9699 },
97100 {
98101 "type": "idn-table",
99102 "key": "sv",
100 "value": "https://www.iana.org/domains/idn-tables/tables/song_sv_2.1.txt"
103 "value": "https://www.iana.org/domains/idn-tables/tables/song_sv_3.0.xml"
101104 },
102105 {
103106 "type": "idn-table",
104107 "key": "zh",
105 "value": "https://www.iana.org/domains/idn-tables/tables/song_zh_2.1.txt"
108 "value": "https://www.iana.org/domains/idn-tables/tables/song_zh_3.0.xml"
106109 }
107110 ]
108111 }
00 {
11 "domain": "sony",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.sony",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.sony",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/sony_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "soy",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "spa",
2 "infoURL": "https://newgtlds.icann.org/",
2 "infoURL": "http://www.nic.spa/",
3 "whoisServer": "whois.afilias-srs.net",
4 "nameServers": [
5 "a0.nic.spa",
6 "a2.nic.spa",
7 "b0.nic.spa",
8 "c0.nic.spa"
9 ],
310 "tags": [
11 "community",
412 "generic"
513 ],
614 "policies": [
715 {
8 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "zh-CN",
18 "value": "https://www.iana.org/domains/idn-tables/tables/spa_zh-cn_4.0.txt"
19 },
20 {
21 "type": "idn-table",
22 "key": "zh-TW",
23 "value": "https://www.iana.org/domains/idn-tables/tables/spa_zh-tw_4.0.txt"
924 }
1025 ]
1126 }
00 {
11 "domain": "space",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.space",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/space/"
56 ],
6 "whoisServer": "whois.nic.space",
77 "nameServers": [
88 "a.nic.space",
99 "b.nic.space",
1010 "e.nic.space",
1111 "f.nic.space"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3437 {
3538 "type": "idn-table",
3639 "key": "lo",
37 "value": "https://www.iana.org/domains/idn-tables/tables/space_lo_1.1.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/space_lo_2.0.txt"
3841 },
3942 {
4043 "type": "idn-table",
4144 "key": "mul-Cyrl",
42 "value": "https://www.iana.org/domains/idn-tables/tables/space_cyrl_1.0.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/space_cyrl_1.1.txt"
4346 },
4447 {
4548 "type": "idn-table",
5962 {
6063 "type": "idn-table",
6164 "key": "zh",
62 "value": "https://www.iana.org/domains/idn-tables/tables/space_zh_1.2.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/space_zh_1.0.txt"
6366 }
6467 ]
6568 }
00 {
11 "domain": "space.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "spiegel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.ksregistry.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.ksregistry.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "sport",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.sport",
4 "rdapURLs": [
5 "https://rdap.nic.sport/"
56 ],
6 "whoisServer": "whois.nic.sport",
77 "nameServers": [
88 "anycast10.irondns.net",
99 "anycast23.irondns.net",
1010 "anycast24.irondns.net",
1111 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "spot",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.spot",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/spot/"
56 ],
6 "whoisServer": "whois.nic.spot",
77 "nameServers": [
88 "dns1.nic.spot",
99 "dns2.nic.spot",
1313 "dnsb.nic.spot",
1414 "dnsc.nic.spot",
1515 "dnsd.nic.spot"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "spreadbetting",
22 "infoURL": "https://bostonivy.co/",
3 "whoisServer": "whois.nic.spreadbetting",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/spreadbetting/"
6 ],
7 "nameServers": [
8 "a.nic.spreadbetting",
9 "b.nic.spreadbetting",
10 "c.nic.spreadbetting",
11 "d.nic.spreadbetting"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.spreadbetting",
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "sr",
2 "whoisURL": "http://www.register.sr/",
3 "nameServers": [
4 "ns1.sr.net",
5 "ns2.sr.net"
6 ],
27 "tags": [
38 "country",
49 "generic",
510 "geo"
6 ],
7 "whoisURL": "http://www.register.sr",
8 "nameServers": [
9 "ns1.sr.net",
10 "ns2.sr.net"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "srl",
2 "infoURL": "http://nic.srl/",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.internetx.info/en/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/srl/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.srl",
99 "a2.nic.srl",
1010 "b0.nic.srl",
1111 "c0.nic.srl"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "srt",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "st",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.st",
73 "nameServers": [
84 "dns-au.st",
106 "dns-us.st",
117 "ns1.bahnhof.net"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "stada",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/stada/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.stada",
109 "a2.nic.stada",
1110 "b0.nic.stada",
1211 "c0.nic.stada"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "staples",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.staples",
4 "rdapURLs": [
5 "https://rdap.nic.staples/"
66 ],
7 "whoisServer": "whois.nic.staples",
87 "nameServers": [
98 "ns1.dns.nic.staples",
109 "ns2.dns.nic.staples",
1312 "ns5.dns.nic.staples",
1413 "ns6.dns.nic.staples"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/staples_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "star",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.star",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/star/"
66 ],
7 "whoisServer": "whois.nic.star",
87 "nameServers": [
98 "a0.nic.star",
109 "a2.nic.star",
1110 "b0.nic.star",
1211 "c0.nic.star"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "be",
21 "value": "https://www.iana.org/domains/idn-tables/tables/star_be_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "bg",
26 "value": "https://www.iana.org/domains/idn-tables/tables/star_bg_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bs",
31 "value": "https://www.iana.org/domains/idn-tables/tables/star_bs_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "da",
36 "value": "https://www.iana.org/domains/idn-tables/tables/star_da_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "de",
41 "value": "https://www.iana.org/domains/idn-tables/tables/star_de_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "es",
46 "value": "https://www.iana.org/domains/idn-tables/tables/star_es_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "hu",
51 "value": "https://www.iana.org/domains/idn-tables/tables/star_hu_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "is",
56 "value": "https://www.iana.org/domains/idn-tables/tables/star_is_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "ko",
61 "value": "https://www.iana.org/domains/idn-tables/tables/star_ko_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "lt",
66 "value": "https://www.iana.org/domains/idn-tables/tables/star_lt_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "lv",
71 "value": "https://www.iana.org/domains/idn-tables/tables/star_lv_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "mk",
76 "value": "https://www.iana.org/domains/idn-tables/tables/star_mk_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "pl",
81 "value": "https://www.iana.org/domains/idn-tables/tables/star_pl_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ru",
86 "value": "https://www.iana.org/domains/idn-tables/tables/star_ru_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "sr",
91 "value": "https://www.iana.org/domains/idn-tables/tables/star_sr_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "sr-ME",
96 "value": "https://www.iana.org/domains/idn-tables/tables/star_sr-me_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "sv",
101 "value": "https://www.iana.org/domains/idn-tables/tables/star_sv_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "uk",
106 "value": "https://www.iana.org/domains/idn-tables/tables/star_uk_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "zh-CN",
111 "value": "https://www.iana.org/domains/idn-tables/tables/star_zh-cn_4.0.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "zh-TW",
116 "value": "https://www.iana.org/domains/idn-tables/tables/star_zh-tw_4.0.txt"
17117 }
18118 ]
19119 }
00 {
11 "domain": "starhub",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.starhub",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.starhub",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "statebank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.statebank",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/statebank/"
66 ],
7 "whoisServer": "whois.nic.statebank",
87 "nameServers": [
98 "a0.nic.statebank",
109 "a2.nic.statebank",
1110 "b0.nic.statebank",
1211 "c0.nic.statebank"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "statefarm",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.statefarm",
4 "rdapURLs": [
5 "https://rdap.nic.statefarm/"
66 ],
7 "whoisServer": "whois.nic.statefarm",
87 "nameServers": [
98 "ns1.dns.nic.statefarm",
109 "ns2.dns.nic.statefarm",
1312 "ns5.dns.nic.statefarm",
1413 "ns6.dns.nic.statefarm"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "statoil",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.statoil",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.statoil",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "stc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.stc",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/stc/"
66 ],
7 "whoisServer": "whois.nic.stc",
87 "nameServers": [
98 "a.nic.stc",
109 "b.nic.stc",
1110 "c.nic.stc",
1211 "d.nic.stc"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "stcgroup",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.stcgroup",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/stcgroup/"
66 ],
7 "whoisServer": "whois.nic.stcgroup",
87 "nameServers": [
98 "a.nic.stcgroup",
109 "b.nic.stcgroup",
1110 "c.nic.stcgroup",
1211 "d.nic.stcgroup"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "stockholm",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/stockholm/"
6 ],
7 "nameServers": [
8 "a0.nic.stockholm",
9 "a2.nic.stockholm",
10 "b0.nic.stockholm",
11 "c0.nic.stockholm"
712 ],
813 "locations": [
914 "Stockholm",
1015 "SE-AB"
1116 ],
12 "whoisServer": "whois.afilias-srs.net",
13 "nameServers": [
14 "a0.nic.stockholm",
15 "a2.nic.stockholm",
16 "b0.nic.stockholm",
17 "c0.nic.stockholm"
17 "tags": [
18 "city",
19 "generic",
20 "geo"
1821 ],
1922 "policies": [
2023 {
00 {
11 "domain": "storage",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.storage",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/storage/"
56 ],
6 "whoisServer": "whois.nic.storage",
77 "nameServers": [
88 "a.nic.storage",
99 "b.nic.storage",
1010 "c.nic.storage",
1111 "d.nic.storage"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "store",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.store",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/store/"
56 ],
6 "whoisServer": "whois.nic.store",
77 "nameServers": [
88 "a.nic.store",
99 "b.nic.store",
1010 "e.nic.store",
1111 "f.nic.store"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "stream",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.stream",
4 "rdapURLs": [
5 "https://rdap.nic.stream/"
56 ],
6 "whoisServer": "whois.nic.stream",
77 "nameServers": [
88 "ns1.dns.nic.stream",
99 "ns2.dns.nic.stream",
1212 "ns5.dns.nic.stream",
1313 "ns6.dns.nic.stream"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/stream_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/stream_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/stream_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/stream_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "no",
29 "value": "https://www.iana.org/domains/idn-tables/tables/stream_no_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/stream_no_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "sv",
34 "value": "https://www.iana.org/domains/idn-tables/tables/stream_sv_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/stream_sv_3.0.xml"
3538 }
3639 ]
3740 }
00 {
11 "domain": "studio",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.studio",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.studio",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "study",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.study",
4 "rdapURLs": [
5 "https://rdap.nic.study/"
56 ],
6 "whoisServer": "whois.nic.study",
77 "nameServers": [
88 "a.nic.study",
99 "b.nic.study",
1010 "c.nic.study",
1111 "d.nic.study"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "style",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.style",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.style",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "su",
2 "tags": [
3 "country",
4 "generic",
5 "geo"
6 ],
72 "whoisServer": "whois.tcinet.ru",
83 "nameServers": [
94 "a.dns.ripn.net",
116 "d.dns.ripn.net",
127 "e.dns.ripn.net",
138 "f.dns.ripn.net"
9 ],
10 "tags": [
11 "country",
12 "generic",
13 "geo"
1414 ]
1515 }
00 {
11 "domain": "sucks",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.sucks",
4 "rdapURLs": [
5 "https://rdap.nic.sucks/"
56 ],
6 "whoisServer": "whois.nic.sucks",
77 "nameServers": [
88 "a.nic.sucks",
99 "b.nic.sucks",
1010 "c.nic.sucks",
1111 "d.nic.sucks"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "supplies",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.supplies",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.supplies",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "supplies.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "supply",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.supply",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.supply",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "supply.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "support",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.support",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.support",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "support.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "surf",
22 "infoURL": "http://nic.surf/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.surf",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/surf/"
56 ],
6 "whoisServer": "whois.nic.surf",
77 "nameServers": [
88 "dns1.nic.surf",
99 "dns2.nic.surf",
1313 "dnsb.nic.surf",
1414 "dnsc.nic.surf",
1515 "dnsd.nic.surf"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "surf.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "surgery",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.surgery",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.surgery",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "surgery.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "suzuki",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.suzuki",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.suzuki",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "sv",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.svnet.org.sv/",
73 "nameServers": [
84 "a.lactld.org",
1410 "sir.red.sv",
1511 "sv.cctld.authdns.ripe.net"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "swatch",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.swatch",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/swatch/v1/"
66 ],
7 "whoisServer": "whois.nic.swatch",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "swiftcover",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.swiftcover",
4 "rdapURLs": [
5 "https://rdap.nic.swiftcover/"
66 ],
7 "whoisServer": "whois.nic.swiftcover",
87 "nameServers": [
98 "ns1.dns.nic.swiftcover",
109 "ns2.dns.nic.swiftcover",
1312 "ns5.dns.nic.swiftcover",
1413 "ns6.dns.nic.swiftcover"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "swiss",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "community",
5 "generic"
3 "whoisServer": "whois.nic.swiss",
4 "rdapURLs": [
5 "https://rdap.nic.swiss/"
66 ],
7 "whoisServer": "whois.nic.swiss",
87 "nameServers": [
98 "anycast10.irondns.net",
109 "anycast23.irondns.net",
1413 "ns15.rcode0.net",
1514 "u.nic.swiss"
1615 ],
16 "tags": [
17 "community",
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-table",
00 {
11 "domain": "sx",
2 "infoURL": "http://en.wikipedia.org/wiki/.sx",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://en.wikipedia.org/wiki/.sx",
73 "whoisServer": "whois.sx",
84 "nameServers": [
95 "ns1.ns.sx",
106 "ns2.ns.sx"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "sy",
22 "infoURL": "http://www.ste.gov.sy/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.tld.sy",
84 "nameServers": [
95 "ns1.tld.sy",
106 "pch.anycast.tld.sy",
117 "sy.cctld.authdns.ripe.net"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "sydney",
2 "infoURL": "http://nic.sydney/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
2 "infoURL": "https://www.iconic.sydney/",
3 "whoisServer": "whois.nic.sydney",
4 "rdapURLs": [
5 "https://rdap.nic.sydney/"
76 ],
8 "locations": [
9 "Sydney"
10 ],
11 "whoisServer": "whois.nic.sydney",
127 "nameServers": [
138 "a.nic.sydney",
149 "b.nic.sydney",
1510 "c.nic.sydney",
1611 "d.nic.sydney"
12 ],
13 "locations": [
14 "Sydney"
15 ],
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "symantec",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.symantec",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.symantec",
88 "policies": [
99 {
1010 "type": "idn-table",
00 {
11 "domain": "systems",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.systems",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.systems",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "systems.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "sz",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "nameServers": [
73 "ns1.sispa.org.sz",
84 "rip.psg.com",
95 "sz.cctld.authdns.ripe.net"
6 ],
7 "tags": [
8 "country",
9 "geo"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "tab",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tab",
4 "rdapURLs": [
5 "https://rdap.nic.tab/"
66 ],
7 "whoisServer": "whois.nic.tab",
87 "nameServers": [
98 "a.nic.tab",
109 "b.nic.tab",
1110 "c.nic.tab",
1211 "d.nic.tab"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "taipei",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
3 "whoisServer": "whois.nic.taipei",
4 "rdapURLs": [
5 "https://rdap.nic.taipei/"
76 ],
8 "locations": [
9 "Taipei",
10 "TW-TPQ"
11 ],
12 "whoisServer": "whois.nic.taipei",
137 "nameServers": [
148 "ns1.dns.nic.taipei",
159 "ns2.dns.nic.taipei",
1812 "ns5.dns.nic.taipei",
1913 "ns6.dns.nic.taipei"
2014 ],
15 "locations": [
16 "Taipei",
17 "TW-TPQ"
18 ],
19 "tags": [
20 "city",
21 "generic",
22 "geo"
23 ],
2124 "policies": [
2225 {
23 "type": "idn-disallowed"
26 "type": "idn-table",
27 "key": "da",
28 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_da_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "de",
33 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_de_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "es",
38 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_es_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "fi",
43 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_fi_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "hu",
48 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_hu_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "is",
53 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_is_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ja",
58 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_ja_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "ko",
63 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_ko_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lt",
68 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_lt_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "lv",
73 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_lv_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "no",
78 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_no_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pl",
83 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_pl_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "pt",
88 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_pt_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "ru",
93 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_ru_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "sv",
98 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_sv_3.0.xml"
99 },
100 {
101 "type": "idn-table",
102 "key": "zh",
103 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_zh_3.0.xml"
24104 }
25105 ]
26106 }
00 {
11 "domain": "talk",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.talk",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/talk/"
56 ],
6 "whoisServer": "whois.nic.talk",
77 "nameServers": [
88 "dns1.nic.talk",
99 "dns2.nic.talk",
1313 "dnsb.nic.talk",
1414 "dnsc.nic.talk",
1515 "dnsd.nic.talk"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "taobao",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.taobao",
4 "rdapURLs": [
5 "https://rdap.nic.taobao/"
66 ],
7 "whoisServer": "whois.nic.taobao",
87 "nameServers": [
98 "ns1.dns.nic.taobao",
109 "ns2.dns.nic.taobao",
1312 "ns5.dns.nic.taobao",
1413 "ns6.dns.nic.taobao"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "target",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.target",
4 "rdapURLs": [
5 "https://rdap.nic.target/"
66 ],
7 "whoisServer": "whois.nic.target",
87 "nameServers": [
98 "ns1.dns.nic.target",
109 "ns2.dns.nic.target",
1312 "ns5.dns.nic.target",
1413 "ns6.dns.nic.target"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/target_es_3.0.xml"
1924 }
2025 ]
2126 }
00 {
11 "domain": "tatamotors",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tatamotors",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/tatamotors/v1/"
66 ],
7 "whoisServer": "whois.nic.tatamotors",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "tatar",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.tatar",
4 "rdapURLs": [
5 "https://whois.nic.tatar/rdap/"
66 ],
7 "locations": [
8 "RU-TA"
9 ],
10 "whoisServer": "whois.nic.tatar",
117 "nameServers": [
128 "a.dns.ripn.net",
139 "b.dns.ripn.net",
1511 "e.dns.ripn.net",
1612 "f.dns.ripn.net"
1713 ],
14 "locations": [
15 "RU-TA"
16 ],
17 "tags": [
18 "generic",
19 "region"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "tattoo",
2 "infoURL": "http://nic.tattoo/",
3 "tags": [
4 "generic"
2 "infoURL": "https://nic.tattoo/",
3 "whoisServer": "whois.uniregistry.net",
4 "rdapURLs": [
5 "https://whois.uniregistry.net/rdap/"
56 ],
6 "whoisServer": "whois.uniregistry.net",
77 "nameServers": [
88 "ns1.uniregistry.net",
99 "ns2.uniregistry.info",
1010 "ns3.uniregistry.net",
1111 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3336 },
3437 {
3538 "type": "idn-table",
39 "key": "ja",
40 "value": "https://www.iana.org/domains/idn-tables/tables/tattoo_ja_1.1.txt"
41 },
42 {
43 "type": "idn-table",
3644 "key": "mul-Cyrl",
3745 "value": "https://www.iana.org/domains/idn-tables/tables/audio_cyrl_1.0.txt"
3846 },
00 {
11 "domain": "tattoo.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "tax",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.tax",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.tax",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "tax.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "taxi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.taxi",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.taxi",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "tc",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.tc",
73 "nameServers": [
84 "root1.zone.tc",
1410 "root7.zone.tc",
1511 "root8.zone.tc"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "tci",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.tci",
4 "rdapURLs": [
5 "https://api.rdap.agitsys.net/"
6 ],
7 "nameServers": [
8 "a.ns.nic.tci",
9 "b.ns.nic.tci",
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
12 ],
313 "tags": [
414 "brand",
515 "generic"
6 ],
7 "whoisServer": "whois.nic.tci",
8 "nameServers": [
9 "a.ns.nic.tci",
10 "b.ns.nic.tci",
11 "ns.cocca.fr"
1216 ],
1317 "policies": [
1418 {
00 {
11 "domain": "td",
2 "infoURL": "http://nic.td/",
3 "whoisServer": "whois.nic.td",
4 "nameServers": [
5 "anycastdns1.nic.td",
6 "anycastdns2.nic.td",
7 "ns-td.afrinic.net",
8 "pch.nic.td"
9 ],
210 "tags": [
311 "country",
412 "geo"
5 ],
6 "whoisServer": "whois.nic.td",
7 "whoisURL": "http://www.nic.td/",
8 "nameServers": [
9 "ns-td.afrinic.net",
10 "ns.cocca.fr",
11 "nsa.nic.td",
12 "pch.nic.td"
1313 ],
1414 "policies": [
1515 {
00 {
11 "domain": "tdk",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tdk",
4 "rdapURLs": [
5 "https://rdap.nic.tdk/"
66 ],
7 "whoisServer": "whois.nic.tdk",
87 "nameServers": [
98 "ns1.dns.nic.tdk",
109 "ns2.dns.nic.tdk",
1312 "ns5.dns.nic.tdk",
1413 "ns6.dns.nic.tdk"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "ja",
23 "value": "https://www.iana.org/domains/idn-tables/tables/tdk_ja_3.0.xml"
1924 }
2025 ]
2126 }
66 "salvador.porkbun.com"
77 ],
88 "wildcards": [
9 "44.227.76.166",
10 "pixie.porkbun.com"
9 "44.230.85.241",
10 "uixie.porkbun.com"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "team",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.team",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.team",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
0 {
1 "domain": "tec.br",
2 "nameServers": [
3 "a.dns.br",
4 "b.dns.br",
5 "c.dns.br",
6 "d.dns.br",
7 "e.dns.br",
8 "f.dns.br"
9 ]
10 }
00 {
11 "domain": "tech",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.tech",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/tech/"
56 ],
6 "whoisServer": "whois.nic.tech",
77 "nameServers": [
88 "a.nic.tech",
99 "b.nic.tech",
1010 "e.nic.tech",
1111 "f.nic.tech"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
3437 {
3538 "type": "idn-table",
3639 "key": "lo",
37 "value": "https://www.iana.org/domains/idn-tables/tables/tech_lo_1.1.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/tech_lo_2.0.txt"
3841 },
3942 {
4043 "type": "idn-table",
00 {
11 "domain": "technology",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.technology",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.technology",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "technology.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "tel",
2 "tags": [
3 "generic",
4 "sponsored"
2 "whoisServer": "whois.nic.tel",
3 "rdapURLs": [
4 "https://rdap.nic.tel/"
55 ],
6 "whoisServer": "whois.nic.tel",
76 "nameServers": [
87 "ns1.dns.nic.tel",
98 "ns2.dns.nic.tel",
1413 "ns7.dns.nic.tel",
1514 "ns8.dns.nic.tel"
1615 ],
16 "tags": [
17 "generic",
18 "sponsored"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-table",
2023 "key": "da",
21 "value": "https://www.iana.org/domains/idn-tables/tables/tel_da_1.0.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/tel_da_3.0.xml"
2225 },
2326 {
2427 "type": "idn-table",
2528 "key": "de",
26 "value": "https://www.iana.org/domains/idn-tables/tables/tel_de_1.0.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/tel_de_3.0.xml"
2730 },
2831 {
2932 "type": "idn-table",
3033 "key": "es",
31 "value": "https://www.iana.org/domains/idn-tables/tables/tel_es_1.0.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/tel_es_3.0.xml"
3235 },
3336 {
3437 "type": "idn-table",
3538 "key": "fi",
36 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fi_1.0.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fi_3.0.xml"
3740 },
3841 {
3942 "type": "idn-table",
4043 "key": "fr",
41 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fr_1.0.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fr_3.0.xml"
4245 },
4346 {
4447 "type": "idn-table",
4548 "key": "hu",
46 "value": "https://www.iana.org/domains/idn-tables/tables/tel_hu_1.0.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/tel_hu_3.0.xml"
50 },
51 {
52 "type": "idn-table",
53 "key": "is",
54 "value": "https://www.iana.org/domains/idn-tables/tables/tel_is_3.0.xml"
4755 },
4856 {
4957 "type": "idn-table",
5058 "key": "ja",
51 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ja_1.0.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ja_3.0.xml"
5260 },
5361 {
5462 "type": "idn-table",
5563 "key": "ko",
56 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ko_1.0.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ko_3.0.xml"
5765 },
5866 {
5967 "type": "idn-table",
6068 "key": "lt",
61 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lt_1.0.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lt_3.0.xml"
6270 },
6371 {
6472 "type": "idn-table",
6573 "key": "lv",
66 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lv_1.0.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lv_3.0.xml"
6775 },
6876 {
6977 "type": "idn-table",
7078 "key": "no",
71 "value": "https://www.iana.org/domains/idn-tables/tables/tel_no_1.0.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/tel_no_3.0.xml"
7280 },
7381 {
7482 "type": "idn-table",
7583 "key": "pl",
76 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pl_1.0.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pl_3.0.xml"
7785 },
7886 {
7987 "type": "idn-table",
8088 "key": "pt",
81 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pt_1.0.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pt_3.0.xml"
8290 },
8391 {
8492 "type": "idn-table",
8593 "key": "ru",
86 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ru_1.0.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ru_3.0.xml"
8795 },
8896 {
8997 "type": "idn-table",
9098 "key": "sv",
91 "value": "https://www.iana.org/domains/idn-tables/tables/tel_sv_1.0.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/tel_sv_3.0.xml"
92100 },
93101 {
94102 "type": "idn-table",
95103 "key": "zh",
96 "value": "https://www.iana.org/domains/idn-tables/tables/tel_zh_1.0.txt"
104 "value": "https://www.iana.org/domains/idn-tables/tables/tel_zh_3.0.xml"
97105 }
98106 ]
99107 }
00 {
11 "domain": "tel.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "tel.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
00 {
11 "domain": "telecity",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.telecity",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.telecity",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "telefonica",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois-fe.telefonica.tango.knipp.de",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois-fe.telefonica.tango.knipp.de",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "temasek",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/temasek/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.temasek",
109 "a2.nic.temasek",
1110 "b0.nic.temasek",
1211 "c0.nic.temasek"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "tennis",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.tennis",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.tennis",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "teva",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.teva",
4 "rdapURLs": [
5 "https://rdap.nic.teva/"
66 ],
7 "whoisServer": "whois.nic.teva",
87 "nameServers": [
98 "ns1.dns.nic.teva",
109 "ns2.dns.nic.teva",
1312 "ns5.dns.nic.teva",
1413 "ns6.dns.nic.teva"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/teva_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/teva_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/teva_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/teva_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/teva_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/teva_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/teva_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/teva_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/teva_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/teva_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/teva_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/teva_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/teva_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/teva_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/teva_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/teva_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "tf",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.tf",
73 "nameServers": [
84 "d.nic.fr",
95 "e.ext.nic.fr",
106 "f.ext.nic.fr",
117 "g.ext.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "tg",
2 "tags": [
3 "country",
4 "geo"
5 ],
2 "infoURL": "http://www.nic.tg/",
63 "whoisServer": "whois.nic.tg",
7 "whoisURL": "http://www.nic.tg/",
84 "nameServers": [
95 "ns1.admin.net",
106 "ns1.nic.tg",
1511 "ns5.admin.net",
1612 "tld.cafe.tg"
1713 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-disallowed"
00 {
11 "domain": "th",
2 "infoURL": "http://www.thnic.co.th/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "https://www.thnic.co.th/",
83 "whoisServer": "whois.thnic.co.th",
94 "nameServers": [
105 "a.thains.co.th",
127 "c.thains.co.th",
138 "ns.thnic.net",
149 "p.thains.co.th"
10 ],
11 "tags": [
12 "closed",
13 "country",
14 "geo"
1515 ],
1616 "policies": [
1717 {
00 {
11 "domain": "thd",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.thd",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/thd/"
66 ],
7 "whoisServer": "whois.nic.thd",
87 "nameServers": [
98 "a0.nic.thd",
109 "a2.nic.thd",
1110 "b0.nic.thd",
1211 "c0.nic.thd"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "theater",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.theater",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.theater",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "theatre",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.theatre",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/theatre/"
56 ],
6 "whoisServer": "whois.nic.theatre",
77 "nameServers": [
88 "a.nic.theatre",
99 "b.nic.theatre",
1010 "c.nic.theatre",
1111 "d.nic.theatre"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "tiaa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tiaa",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/tiaa/v1/"
66 ],
7 "whoisServer": "whois.nic.tiaa",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "tickets",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.tickets",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/tickets/"
56 ],
6 "whoisServer": "whois.nic.tickets",
77 "nameServers": [
88 "a.nic.tickets",
99 "b.nic.tickets",
1010 "c.nic.tickets",
1111 "d.nic.tickets"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "tienda",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.tienda",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.tienda",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "tiffany",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tiffany",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/tiffany/v1/"
66 ],
7 "whoisServer": "whois.nic.tiffany",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "tips",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.tips",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.tips",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "tips.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "tires",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.tires",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.tires",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "tirol",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.tirol",
4 "rdapURLs": [
5 "https://rdap.ryce-rsp.com/rdap/"
6 ],
7 "nameServers": [
8 "dns.ryce-rsp.com",
9 "ns1.dns.business",
10 "ns1.ryce-rsp.com"
611 ],
712 "locations": [
813 "AT-7"
914 ],
10 "whoisServer": "whois.nic.tirol",
11 "nameServers": [
12 "dns.ryce-rsp.com",
13 "ns1.dns.business",
14 "ns1.ryce-rsp.com"
15 "tags": [
16 "generic",
17 "region"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "tj",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.tj/whois.html",
73 "nameServers": [
84 "ns1.nic.tj",
106 "phloem.uoregon.edu",
117 "tj.cctld.authdns.ripe.net"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "tjmaxx",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tjmaxx",
4 "rdapURLs": [
5 "https://rdap.nic.tjmaxx/"
66 ],
7 "whoisServer": "whois.nic.tjmaxx",
87 "nameServers": [
98 "ns1.dns.nic.tjmaxx",
109 "ns2.dns.nic.tjmaxx",
1312 "ns5.dns.nic.tjmaxx",
1413 "ns6.dns.nic.tjmaxx"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "tjx",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tjx",
4 "rdapURLs": [
5 "https://rdap.nic.tjx/"
66 ],
7 "whoisServer": "whois.nic.tjx",
87 "nameServers": [
98 "ns1.dns.nic.tjx",
109 "ns2.dns.nic.tjx",
1312 "ns5.dns.nic.tjx",
1413 "ns6.dns.nic.tjx"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "tk",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dot.tk",
73 "nameServers": [
84 "a.ns.tk",
95 "b.ns.tk",
106 "c.ns.tk",
117 "d.ns.tk"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "tkmaxx",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tkmaxx",
4 "rdapURLs": [
5 "https://rdap.nic.tkmaxx/"
66 ],
7 "whoisServer": "whois.nic.tkmaxx",
87 "nameServers": [
98 "ns1.dns.nic.tkmaxx",
109 "ns2.dns.nic.tkmaxx",
1312 "ns5.dns.nic.tkmaxx",
1413 "ns6.dns.nic.tkmaxx"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "tl",
2 "whoisServer": "whois.nic.tl",
3 "nameServers": [
4 "ns.anycast.nic.tl",
5 "ns1.anycastdns.cz",
6 "ns2.anycastdns.cz"
7 ],
28 "tags": [
39 "country",
410 "geo"
5 ],
6 "whoisServer": "whois.nic.tl",
7 "nameServers": [
8 "ns.anycast.nic.tl",
9 "ns.cocca.fr"
1011 ],
1112 "policies": [
1213 {
00 {
11 "domain": "tm",
22 "infoURL": "http://nic.tm/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.nic.tm",
84 "nameServers": [
95 "ns-a1.tm",
139 "ns-d1.tm",
1410 "ns-l1.tm",
1511 "ns-y1.tm"
12 ],
13 "tags": [
14 "country",
15 "geo"
1616 ]
1717 }
00 {
11 "domain": "tmall",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tmall",
4 "rdapURLs": [
5 "https://rdap.nic.tmall/"
66 ],
7 "whoisServer": "whois.nic.tmall",
87 "nameServers": [
98 "ns1.dns.nic.tmall",
109 "ns2.dns.nic.tmall",
1312 "ns5.dns.nic.tmall",
1413 "ns6.dns.nic.tmall"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "tn",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.ati.tn",
73 "nameServers": [
84 "ns-tn.afrinic.net",
128 "pch.ati.tn",
139 "rip.psg.com"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "to",
2 "infoURL": "http://www.tonic.to/",
3 "tags": [
4 "country",
5 "geo"
6 ],
2 "infoURL": "https://www.tonic.to/",
73 "whoisServer": "whois.tonic.to",
84 "nameServers": [
95 "colo.tonic.to",
139 "singapore.tonic.to",
1410 "sydney.tonic.to",
1511 "tonic.to"
12 ],
13 "tags": [
14 "country",
15 "geo"
1616 ]
1717 }
00 {
11 "domain": "today",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.today",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.today",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "today.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "tokyo.jp",
2 "locations": [
3 "Tokyo"
4 ],
25 "tags": [
36 "city",
47 "geo"
5 ],
6 "locations": [
7 "Tokyo"
88 ],
99 "policies": [
1010 {
00 {
11 "domain": "tokyo",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.tokyo",
3 "rdapURLs": [
4 "https://rdap.gmoregistry.net/rdap/"
5 ],
6 "nameServers": [
7 "a.gmoregistry.net",
8 "b.gmoregistry.net",
9 "k.gmoregistry.net",
10 "l.gmoregistry.net"
611 ],
712 "locations": [
813 "Tokyo",
914 "JP-13"
1015 ],
11 "whoisServer": "whois.nic.tokyo",
12 "nameServers": [
13 "a.gmoregistry.net",
14 "b.gmoregistry.net",
15 "k.gmoregistry.net",
16 "l.gmoregistry.net"
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "tools",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.tools",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.tools",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "tools.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "top",
22 "infoURL": "http://www.nic.top/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.top",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/top/"
56 ],
6 "whoisServer": "whois.nic.top",
77 "nameServers": [
88 "a.zdnscloud.com",
99 "b.zdnscloud.com",
1313 "g.zdnscloud.com",
1414 "i.zdnscloud.com",
1515 "j.zdnscloud.com"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "toray",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.toray",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.toray",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/toray_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "toshiba",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.toshiba",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.toshiba",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "total",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.total",
4 "rdapURLs": [
5 "https://rdap.nic.total/"
66 ],
7 "whoisServer": "whois.nic.total",
87 "nameServers": [
98 "d.nic.fr",
109 "f.ext.nic.fr",
1110 "g.ext.nic.fr"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "mul-Latn",
20 "value": "https://www.iana.org/domains/idn-tables/tables/total_latn_1.txt"
1621 }
1722 ]
1823 }
00 {
11 "domain": "tourism.td",
2 "nameServers": [
3 "ns.cocca.fr",
4 "nsa.nic.td"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
00 {
11 "domain": "tours",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.tours",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.tours",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "town",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.town",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.town",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "town.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "toyota",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.toyota",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.toyota",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "ja",
21 "value": "https://www.iana.org/domains/idn-tables/tables/toyota_ja_1.0.txt"
1722 }
1823 ]
1924 }
00 {
11 "domain": "toys",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.toys",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.toys",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "tr",
22 "infoURL": "https://www.nic.tr/",
3 "whoisServer": "whois.nic.tr",
4 "nameServers": [
5 "ns31.nic.tr",
6 "ns34.nic.tr",
7 "ns35.nic.tr",
8 "ns41.nic.tr",
9 "ns42.nic.tr",
10 "ns61.nic.tr",
11 "ns71.nic.tr"
12 ],
313 "tags": [
414 "closed",
515 "country",
616 "geo"
7 ],
8 "whoisServer": "whois.nic.tr",
9 "nameServers": [
10 "ns21.nic.tr",
11 "ns22.nic.tr",
12 "ns31.nic.tr",
13 "ns41.nic.tr",
14 "ns42.nic.tr",
15 "ns61.nic.tr"
1617 ]
1718 }
00 {
11 "domain": "trade",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.trade",
4 "rdapURLs": [
5 "https://rdap.nic.trade/"
56 ],
6 "whoisServer": "whois.nic.trade",
77 "nameServers": [
88 "ns1.dns.nic.trade",
99 "ns2.dns.nic.trade",
1212 "ns5.dns.nic.trade",
1313 "ns6.dns.nic.trade"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/trade_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/trade_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/trade_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/trade_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/trade_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/trade_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/trade_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/trade_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/trade_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/trade_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/trade_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/trade_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/trade_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/trade_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/trade_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/trade_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "trade.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "trading",
22 "infoURL": "https://bostonivy.co/",
3 "whoisServer": "whois.nic.trading",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.trading",
7 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "training",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.training",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.training",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "training.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "travel",
2 "infoURL": "http://www.travel.travel/",
2 "infoURL": "https://www.travel.domains/",
3 "whoisServer": "whois.nic.travel",
4 "rdapURLs": [
5 "https://rdap.nic.travel/"
6 ],
7 "nameServers": [
8 "demand.alpha.aridns.net.au",
9 "demand.beta.aridns.net.au",
10 "demand.delta.aridns.net.au",
11 "demand.gamma.aridns.net.au"
12 ],
313 "tags": [
414 "generic",
515 "sponsored"
6 ],
7 "whoisServer": "whois.nic.travel",
8 "nameServers": [
9 "a.gtld.travel",
10 "b.gtld.travel",
11 "c.gtld.travel",
12 "d.gtld.travel",
13 "e.gtld.travel",
14 "f.gtld.travel"
1516 ],
1617 "policies": [
1718 {
00 {
11 "domain": "travel.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "travelchannel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.travelchannel",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/travelchannel/v1/"
66 ],
7 "whoisServer": "whois.nic.travelchannel",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "travelers",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/travelers/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.travelers",
109 "a2.nic.travelers",
1110 "b0.nic.travelers",
1211 "c0.nic.travelers"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "travelersinsurance",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/travelersinsurance/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.travelersinsurance",
109 "a2.nic.travelersinsurance",
1110 "b0.nic.travelersinsurance",
1211 "c0.nic.travelersinsurance"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "trust",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.trust",
4 "rdapURLs": [
5 "https://rdap.nic.trust/"
6 ],
7 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.trust",
7 "nameServers": [
8 "a.nic.trust",
9 "b.nic.trust",
10 "c.nic.trust",
11 "d.nic.trust"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "trv",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/trv/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.trv",
109 "a2.nic.trv",
1110 "b0.nic.trv",
1211 "c0.nic.trv"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "tsk.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
00 {
11 "domain": "tt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.nic.tt/cgi-bin/search.pl",
73 "nameServers": [
84 "a.lactld.org",
106 "pch.nic.tt",
117 "ripe.nic.tt"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "tube",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.tube",
4 "rdapURLs": [
5 "https://rdap.nic.tube/"
56 ],
6 "whoisServer": "whois.nic.tube",
77 "nameServers": [
88 "ns1.dns.nic.tube",
99 "ns2.dns.nic.tube",
1212 "ns5.dns.nic.tube",
1313 "ns6.dns.nic.tube"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
00 {
11 "domain": "tui",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tui",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/tui/"
66 ],
7 "whoisServer": "whois.nic.tui",
87 "nameServers": [
98 "a.nic.tui",
109 "b.nic.tui",
1110 "c.nic.tui",
1211 "d.nic.tui"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "tunes",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.tunes",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/tunes/"
66 ],
7 "whoisServer": "whois.nic.tunes",
87 "nameServers": [
98 "dns1.nic.tunes",
109 "dns2.nic.tunes",
1413 "dnsb.nic.tunes",
1514 "dnsc.nic.tunes",
1615 "dnsd.nic.tunes"
16 ],
17 "tags": [
18 "closed",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "tushu",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tushu",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/tushu/"
66 ],
7 "whoisServer": "whois.nic.tushu",
87 "nameServers": [
98 "dns1.nic.tushu",
109 "dns2.nic.tushu",
1413 "dnsb.nic.tushu",
1514 "dnsc.nic.tushu",
1615 "dnsd.nic.tushu"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "tv.af",
22 "nameServers": [
3 "ns.cocca.fr",
4 "ns.coccaregistry.org"
3 "ns.anycast.nic.af",
4 "ns1.anycastdns.cz",
5 "ns2.anycastdns.cz"
56 ],
67 "policies": [
78 {
22 "nameServers": [
33 "ns.cocca.fr",
44 "ns1.cmc.iq",
5 "nsp-anycast.cmc.iq",
6 "sns-pb.isc.org"
5 "nsp-anycast.cmc.iq"
76 ]
87 }
00 {
11 "domain": "tv",
2 "tags": [
3 "country",
4 "generic",
5 "geo"
2 "whoisServer": "tvwhois.verisign-grs.com",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/tv/v1/"
65 ],
7 "whoisServer": "tvwhois.verisign-grs.com",
86 "nameServers": [
97 "ac1.nstld.com",
108 "ac2.nstld.com",
119 "ac3.nstld.com",
1210 "ac4.nstld.com"
11 ],
12 "tags": [
13 "country",
14 "generic",
15 "geo"
1316 ]
1417 }
00 {
11 "domain": "tv.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
3 "lns34.nic.tr",
4 "lns35.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
00 {
11 "domain": "tvs",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.tvs",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/tvs/"
66 ],
7 "whoisServer": "whois.nic.tvs",
87 "nameServers": [
98 "a0.nic.tvs",
109 "a2.nic.tvs",
1110 "b0.nic.tvs",
1211 "c0.nic.tvs"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "tw",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.twnic.net.tw",
73 "nameServers": [
84 "a.dns.tw",
1511 "g.dns.tw",
1612 "h.dns.tw",
1713 "ns.twnic.net"
14 ],
15 "tags": [
16 "country",
17 "geo"
1818 ],
1919 "policies": [
2020 {
00 {
11 "domain": "tz",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
2 "whoisServer": "whois.tznic.or.tz",
3 "rdapURLs": [
4 "https://whois.tznic.or.tz/rdap/"
65 ],
7 "whoisServer": "whois.tznic.or.tz",
86 "nameServers": [
97 "d.ext.nic.cz",
108 "fork.sth.dnsnode.net",
1311 "ns2.tznic.or.tz",
1412 "rip.psg.com"
1513 ],
14 "tags": [
15 "closed",
16 "country",
17 "geo"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "ua",
22 "infoURL": "http://www.nic.net.ua/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.ua",
84 "nameServers": [
95 "cd1.ns.ua",
106 "ho1.ns.ua",
117 "in1.ns.ua",
128 "pch.ns.ua"
9 ],
10 "tags": [
11 "country",
12 "geo"
1313 ],
1414 "policies": [
1515 {
00 {
11 "domain": "ubank",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ubank",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/ubank/v1/"
66 ],
7 "whoisServer": "whois.nic.ubank",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ubs",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ubs",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/ubs/v1/"
66 ],
7 "whoisServer": "whois.nic.ubs",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "uconnect",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.afilias-srs.net",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.afilias-srs.net",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "ug",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.co.ug",
73 "nameServers": [
84 "anycast.eahd.or.ug",
117 "root.eahd.or.ug",
128 "ug.cctld.authdns.ripe.net"
139 ],
10 "tags": [
11 "country",
12 "geo"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-disallowed"
00 {
11 "domain": "uk.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/uk.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "54.153.56.183",
1414 "uk.com"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
00 {
11 "domain": "uk",
22 "infoURL": "https://www.nominet.uk/",
3 "tags": [
4 "country",
5 "geo"
6 ],
73 "whoisServer": "whois.nic.uk",
84 "nameServers": [
95 "dns1.nic.uk",
1511 "nsc.nic.uk",
1612 "nsd.nic.uk"
1713 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1818 "policies": [
1919 {
2020 "type": "idn-disallowed",
00 {
11 "domain": "uk.net",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/uk.net/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
0 {
1 "domain": "ukots.com",
2 "nameServers": [
3 "ns43.domaincontrol.com",
4 "ns44.domaincontrol.com"
5 ]
6 }
22 "nameServers": [
33 "b.dns.py",
44 "c.dns.py",
5 "m.dns.py",
65 "p.dns.py",
76 "u.dns.py"
87 ],
00 {
11 "domain": "unbi.ba",
22 "nameServers": [
3 "linhost01.utic.net.ba"
3 "linhost01.utic.net.ba",
4 "sava.utic.net.ba"
45 ],
56 "policies": [
67 {
00 {
11 "domain": "unicom",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.unicom",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/unicom/"
66 ],
7 "whoisServer": "whois.nic.unicom",
87 "nameServers": [
98 "a.zdnscloud.com",
109 "b.zdnscloud.com",
1514 "i.zdnscloud.com",
1615 "j.zdnscloud.com"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "university",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.university",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.university",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "university.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "uno",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.uno",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/uno/"
45 ],
5 "whoisServer": "whois.nic.uno",
66 "nameServers": [
77 "a.nic.uno",
88 "b.nic.uno",
99 "c.nic.uno",
1010 "d.nic.uno"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "uol",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.gtlds.nic.br",
4 "rdapURLs": [
5 "https://rdap.gtlds.nic.br/"
66 ],
7 "whoisServer": "whois.gtlds.nic.br",
87 "nameServers": [
98 "a.dns.br",
109 "b.dns.br",
1211 "d.dns.br",
1312 "e.dns.br",
1413 "f.dns.br"
14 ],
15 "tags": [
16 "brand",
17 "generic"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "ups",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.ups",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/ups/"
66 ],
7 "whoisServer": "whois.nic.ups",
87 "nameServers": [
98 "a0.nic.ups",
109 "a2.nic.ups",
1110 "b0.nic.ups",
1211 "c0.nic.ups"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "uri.arpa",
2 "tags": [
3 "closed"
4 ],
52 "nameServers": [
63 "a.iana-servers.net",
74 "b.iana-servers.net",
96 "ns3.lacnic.net",
107 "ns4.apnic.net"
118 ],
9 "tags": [
10 "closed"
11 ],
1212 "policies": [
1313 {
1414 "type": "idn-disallowed"
00 {
11 "domain": "urn.arpa",
2 "tags": [
3 "closed"
4 ],
52 "nameServers": [
63 "a.iana-servers.net",
74 "b.iana-servers.net",
96 "ns3.lacnic.net",
107 "ns4.apnic.net"
118 ],
9 "tags": [
10 "closed"
11 ],
1212 "policies": [
1313 {
1414 "type": "idn-disallowed"
00 {
11 "domain": "us.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/us.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1212 "wildcards": [
1313 "54.153.56.183",
1414 "us.com"
15 ],
16 "tags": [
17 "private"
1518 ]
1619 }
00 {
11 "domain": "us",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.us",
73 "nameServers": [
84 "a.cctld.us",
128 "f.cctld.us",
139 "k.cctld.us"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "us.nf",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "us.nf"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "us.org",
22 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/us.org/"
5 ],
36 "nameServers": [
47 "ns1.centralnic.net",
58 "ns2.centralnic.net",
00 {
11 "domain": "uy.com",
2 "tags": [
3 "private"
4 ],
52 "whoisServer": "whois.centralnic.com",
63 "nameServers": [
74 "ns49.domaincontrol.com",
85 "ns50.domaincontrol.com"
6 ],
7 "tags": [
8 "private"
99 ]
1010 }
00 {
11 "domain": "uy",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.org.uy",
73 "nameServers": [
84 "a.lactld.org",
1410 "ns2.anteldata.com.uy",
1511 "ns3.nic.mx"
1612 ],
13 "tags": [
14 "country",
15 "geo"
16 ],
1717 "policies": [
1818 {
1919 "type": "idn-disallowed"
00 {
11 "domain": "uz",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.cctld.uz",
73 "nameServers": [
8 "ns.uz",
4 "ns1.uz",
95 "ns2.uz",
106 "ns3.uz",
117 "ns4.uz",
139 "ns6.uz",
1410 "ns7.uz"
1511 ],
12 "tags": [
13 "country",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "va",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.iana.org",
73 "nameServers": [
84 "dns.nic.it",
128 "seth.namex.it",
139 "va.cctld.authdns.ripe.net"
1410 ],
11 "tags": [
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "vacations",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.vacations",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.vacations",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "vacations.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "vana",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.vana",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/vana/v1/"
66 ],
7 "whoisServer": "whois.nic.vana",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "vanguard",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.vanguard",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/vanguard/v1/"
66 ],
7 "whoisServer": "whois.nic.vanguard",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "vc",
2 "tags": [
3 "country",
4 "generic",
5 "geo"
6 ],
72 "whoisServer": "whois2.afilias-grs.net",
83 "nameServers": [
94 "a0.cctld.afilias-nst.info",
138 "c0.cctld.afilias-nst.info",
149 "d0.cctld.afilias-nst.org"
1510 ],
11 "tags": [
12 "country",
13 "generic",
14 "geo"
15 ],
1616 "policies": [
1717 {
1818 "type": "idn-disallowed"
00 {
11 "domain": "ve",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisServer": "whois.nic.ve",
83 "nameServers": [
94 "ns3.nic.ve",
116 "ns5.nic.ve",
127 "ns6.nic.ve",
138 "ssdns-tld.nic.cl"
9 ],
10 "tags": [
11 "closed",
12 "country",
13 "geo"
1414 ],
1515 "policies": [
1616 {
00 {
11 "domain": "vegas",
2 "infoURL": "http://www.nic.vegas/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
2 "infoURL": "http://nic.vegas/",
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/vegas/"
76 ],
8 "locations": [
9 "Las Vegas"
10 ],
11 "whoisServer": "whois.afilias-srs.net",
127 "nameServers": [
138 "a0.nic.vegas",
149 "a2.nic.vegas",
1510 "b0.nic.vegas",
1611 "c0.nic.vegas"
12 ],
13 "locations": [
14 "Las Vegas"
15 ],
16 "tags": [
17 "city",
18 "generic",
19 "geo"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "ventures",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.ventures",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.ventures",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "ventures.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "verisign",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.verisign",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/verisign/v1/"
66 ],
7 "whoisServer": "whois.nic.verisign",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "versicherung",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.versicherung",
3 "rdapURLs": [
4 "https://rdap.nic.versicherung/v1/"
45 ],
5 "whoisServer": "whois.nic.versicherung",
66 "nameServers": [
77 "a.dns.nic.versicherung",
88 "m.dns.nic.versicherung",
99 "n.dns.nic.versicherung"
10 ],
11 "tags": [
12 "generic"
1013 ],
1114 "policies": [
1215 {
00 {
11 "domain": "vet",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.vet",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.vet",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "vg",
2 "tags": [
3 "country",
4 "geo"
2 "whoisServer": "whois.nic.vg",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/vg/"
55 ],
6 "whoisServer": "whois.nic.vg",
76 "nameServers": [
87 "a.nic.vg",
98 "b.nic.vg",
1312 "wildcards": [
1413 "88.198.29.97"
1514 ],
15 "tags": [
16 "country",
17 "geo"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "vi",
2 "infoURL": "http://www.nic.vi/",
3 "tags": [
4 "closed",
5 "country",
6 "geo"
7 ],
2 "infoURL": "https://secure.nic.vi/",
83 "whoisURL": "https://secure.nic.vi/whois-lookup/",
94 "nameServers": [
105 "auth100.ns.uu.net",
127 "ns3.nic.vi",
138 "pch.nic.vi"
149 ],
10 "tags": [
11 "closed",
12 "country",
13 "geo"
14 ],
1515 "policies": [
1616 {
1717 "type": "idn-disallowed"
00 {
11 "domain": "viajes",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.viajes",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.viajes",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "video",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.video",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.video",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "vig",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/vig/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.vig",
109 "a2.nic.vig",
1110 "b0.nic.vig",
1211 "c0.nic.vig"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "viking",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/viking/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.viking",
109 "a2.nic.viking",
1110 "b0.nic.viking",
1211 "c0.nic.viking"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "villas",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.villas",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.villas",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "villas.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "vin",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.vin",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.vin",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "vip",
22 "infoURL": "http://nic.vip/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.vip",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/vip/"
56 ],
6 "whoisServer": "whois.nic.vip",
77 "nameServers": [
88 "dns1.nic.vip",
99 "dns2.nic.vip",
1313 "dnsb.nic.vip",
1414 "dnsc.nic.vip",
1515 "dnsd.nic.vip"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "virgin",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.virgin",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/virgin/"
66 ],
7 "whoisServer": "whois.nic.virgin",
87 "nameServers": [
98 "dns1.nic.virgin",
109 "dns2.nic.virgin",
1514 "dnsc.nic.virgin",
1615 "dnsd.nic.virgin"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "visa",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.visa",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/visa/v1/"
66 ],
7 "whoisServer": "whois.nic.visa",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
00 {
11 "domain": "vision",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.vision",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.vision",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "vision.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "vista",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.vista",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.vista",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "vistaprint",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.vistaprint",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.vistaprint",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "viva",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.viva",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/viva/"
66 ],
7 "whoisServer": "whois.nic.viva",
87 "nameServers": [
98 "a.nic.viva",
109 "b.nic.viva",
1110 "c.nic.viva",
1211 "d.nic.viva"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "vivo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.vivo",
4 "rdapURLs": [
5 "https://rdap.nic.vivo/"
66 ],
7 "whoisServer": "whois.nic.vivo",
87 "nameServers": [
98 "ns1.dns.nic.vivo",
109 "ns2.dns.nic.vivo",
1312 "ns5.dns.nic.vivo",
1413 "ns6.dns.nic.vivo"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
18 "type": "idn-disallowed"
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "es",
33 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "hu",
43 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_hu_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "is",
48 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_is_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "ja",
53 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_ja_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "ko",
58 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_ko_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "lt",
63 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_lt_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "lv",
68 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_lv_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "no",
73 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_no_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "pl",
78 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_pl_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "pt",
83 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_pt_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "ru",
88 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_ru_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "sv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_sv_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "zh",
98 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_zh_3.0.xml"
1999 }
20100 ]
21101 }
00 {
11 "domain": "vlaanderen",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "region"
3 "whoisServer": "whois.nic.vlaanderen",
4 "rdapURLs": [
5 "https://rdap.nic.vlaanderen/"
6 ],
7 "nameServers": [
8 "a.nsset.vlaanderen",
9 "b.nsset.vlaanderen",
10 "c.nsset.vlaanderen",
11 "d.nsset.vlaanderen",
12 "y.nsset.vlaanderen",
13 "z.nsset.vlaanderen"
614 ],
715 "locations": [
816 "BE-VLG"
917 ],
10 "whoisServer": "whois.nic.vlaanderen",
11 "nameServers": [
12 "a.nic.vlaanderen",
13 "b.nic.vlaanderen",
14 "c.ns.dns.be",
15 "d.ns.dns.be",
16 "y.ns.dns.be",
17 "z.nsset.vlaanderen"
18 "tags": [
19 "generic",
20 "region"
1821 ],
1922 "policies": [
2023 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "vn",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisURL": "http://www.vnnic.vn/en/domain",
73 "nameServers": [
84 "a.dns-servers.vn",
128 "e.dns-servers.vn",
139 "f.dns-servers.vn",
1410 "g.dns-servers.vn"
11 ],
12 "tags": [
13 "country",
14 "geo"
1515 ]
1616 }
00 {
11 "domain": "vodka",
22 "infoURL": "http://nic.vodka/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.vodka",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/vodka/"
56 ],
6 "whoisServer": "whois.nic.vodka",
77 "nameServers": [
88 "dns1.nic.vodka",
99 "dns2.nic.vodka",
1313 "dnsb.nic.vodka",
1414 "dnsc.nic.vodka",
1515 "dnsd.nic.vodka"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "vodka.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "volkswagen",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/volkswagen/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.volkswagen",
109 "a2.nic.volkswagen",
1110 "b0.nic.volkswagen",
1211 "c0.nic.volkswagen"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
33 "ns3-geo.nic.ru",
44 "ns4-geo.nic.ru",
55 "ns8-geo.nic.ru"
6 ],
7 "wildcards": [
8 "178.210.89.119"
96 ]
107 }
00 {
11 "domain": "volvo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.volvo",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/volvo/v1/"
66 ],
7 "whoisServer": "whois.nic.volvo",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "vote",
2 "infoURL": "http://nic.vote/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.vote/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/vote/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.vote",
99 "a2.nic.vote",
1010 "b0.nic.vote",
1111 "c0.nic.vote"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/vote_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/vote_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/vote_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/vote_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/vote_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/vote_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/vote_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/vote_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/vote_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/vote_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/vote_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/vote_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/vote_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/vote_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/vote_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/vote_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/vote_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/vote_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/vote_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/vote_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/vote_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/vote_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/vote_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/vote_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/vote_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/vote_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "voting",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.voting",
3 "rdapURLs": [
4 "https://rdap.nic.voting/v1/"
45 ],
5 "whoisServer": "whois.nic.voting",
66 "nameServers": [
77 "a.nic.voting",
88 "b.nic.voting",
99 "c.nic.voting",
1010 "d.nic.voting"
1111 ],
12 "tags": [
13 "generic"
14 ],
1215 "policies": [
1316 {
1417 "type": "idn-table",
1518 "key": "mul-Cyrl",
16 "value": "https://www.iana.org/domains/idn-tables/tables/voting_cyrl_1.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/voting_cyrl_3.0.xml"
1720 },
1821 {
1922 "type": "idn-table",
2023 "key": "mul-Latn",
21 "value": "https://www.iana.org/domains/idn-tables/tables/voting_latn_1.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/voting_latn_3.0.xml"
2225 }
2326 ]
2427 }
00 {
11 "domain": "voting.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "voto",
2 "infoURL": "http://nic.voto/",
3 "tags": [
4 "generic"
2 "infoURL": "https://get.voto/",
3 "whoisServer": "whois.afilias.net",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/voto/"
56 ],
6 "whoisServer": "whois.afilias.net",
77 "nameServers": [
88 "a0.nic.voto",
99 "a2.nic.voto",
1010 "b0.nic.voto",
1111 "c0.nic.voto"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/voto_ar_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "be",
25 "value": "https://www.iana.org/domains/idn-tables/tables/voto_be_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "bg",
30 "value": "https://www.iana.org/domains/idn-tables/tables/voto_bg_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "bs",
35 "value": "https://www.iana.org/domains/idn-tables/tables/voto_bs_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "da",
40 "value": "https://www.iana.org/domains/idn-tables/tables/voto_da_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "de",
45 "value": "https://www.iana.org/domains/idn-tables/tables/voto_de_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "es",
50 "value": "https://www.iana.org/domains/idn-tables/tables/voto_es_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "fi",
55 "value": "https://www.iana.org/domains/idn-tables/tables/voto_fi_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "fr",
60 "value": "https://www.iana.org/domains/idn-tables/tables/voto_fr_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "hi",
65 "value": "https://www.iana.org/domains/idn-tables/tables/voto_hi_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "hu",
70 "value": "https://www.iana.org/domains/idn-tables/tables/voto_hu_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "is",
75 "value": "https://www.iana.org/domains/idn-tables/tables/voto_is_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "it",
80 "value": "https://www.iana.org/domains/idn-tables/tables/voto_it_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "ko",
85 "value": "https://www.iana.org/domains/idn-tables/tables/voto_ko_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "lt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/voto_lt_1.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "lv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/voto_lv_1.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "mk",
100 "value": "https://www.iana.org/domains/idn-tables/tables/voto_mk_1.txt"
101 },
102 {
103 "type": "idn-table",
104 "key": "pl",
105 "value": "https://www.iana.org/domains/idn-tables/tables/voto_pl_1.txt"
106 },
107 {
108 "type": "idn-table",
109 "key": "pt",
110 "value": "https://www.iana.org/domains/idn-tables/tables/voto_pt_1.txt"
111 },
112 {
113 "type": "idn-table",
114 "key": "ru",
115 "value": "https://www.iana.org/domains/idn-tables/tables/voto_ru_1.txt"
116 },
117 {
118 "type": "idn-table",
119 "key": "sr",
120 "value": "https://www.iana.org/domains/idn-tables/tables/voto_sr_1.txt"
121 },
122 {
123 "type": "idn-table",
124 "key": "sr-ME",
125 "value": "https://www.iana.org/domains/idn-tables/tables/voto_sr-me_1.txt"
126 },
127 {
128 "type": "idn-table",
129 "key": "sv",
130 "value": "https://www.iana.org/domains/idn-tables/tables/voto_sv_1.txt"
131 },
132 {
133 "type": "idn-table",
134 "key": "uk",
135 "value": "https://www.iana.org/domains/idn-tables/tables/voto_uk_1.txt"
136 },
137 {
138 "type": "idn-table",
139 "key": "zh-CN",
140 "value": "https://www.iana.org/domains/idn-tables/tables/voto_zh-cn_4.0.txt"
141 },
142 {
143 "type": "idn-table",
144 "key": "zh-TW",
145 "value": "https://www.iana.org/domains/idn-tables/tables/voto_zh-tw_4.0.txt"
16146 }
17147 ]
18148 }
00 {
11 "domain": "voyage",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.voyage",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.voyage",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "voyage.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "vu",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.dnrs.neustar",
73 "nameServers": [
84 "ns1.neustar.vu",
106 "ns3.neustar.vu",
117 "ns4.neustar.vu"
128 ],
9 "tags": [
10 "country",
11 "geo"
12 ],
1313 "policies": [
1414 {
1515 "type": "idn-disallowed"
00 {
11 "domain": "vuelos",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.vuelos",
4 "rdapURLs": [
5 "https://rdap.nic.vuelos/"
56 ],
6 "whoisServer": "whois.nic.vuelos",
77 "nameServers": [
88 "ns1.dns.nic.vuelos",
99 "ns2.dns.nic.vuelos",
1212 "ns5.dns.nic.vuelos",
1313 "ns6.dns.nic.vuelos"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "es",
22 "value": "https://www.iana.org/domains/idn-tables/tables/vuelos_es_3.0.xml"
1823 }
1924 ]
2025 }
00 {
11 "domain": "wales",
2 "infoURL": "http://nic.wales/",
3 "tags": [
4 "generic",
5 "geo",
6 "region"
2 "infoURL": "https://ourhomeonline.wales/",
3 "whoisServer": "whois.nic.wales",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/wales/"
76 ],
8 "locations": [
9 "GB-WLS"
10 ],
11 "whoisServer": "whois.nic.wales",
127 "nameServers": [
138 "dns1.nic.wales",
149 "dns2.nic.wales",
1914 "dnsc.nic.wales",
2015 "dnsd.nic.wales"
2116 ],
17 "locations": [
18 "GB-WLS"
19 ],
20 "tags": [
21 "generic",
22 "geo",
23 "region"
24 ],
2225 "policies": [
2326 {
2427 "type": "idn-table",
00 {
11 "domain": "walmart",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.walmart",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/walmart/v1/"
66 ],
7 "whoisServer": "whois.nic.walmart",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "walter",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.walter",
4 "rdapURLs": [
5 "https://rdap.nic.walter/"
66 ],
7 "whoisServer": "whois.nic.walter",
87 "nameServers": [
98 "a.nic.walter",
109 "b.nic.walter",
1110 "c.nic.walter",
1211 "d.nic.walter"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "da",
21 "value": "https://www.iana.org/domains/idn-tables/tables/walter_da_3.0.xml"
22 },
23 {
24 "type": "idn-table",
25 "key": "fr",
26 "value": "https://www.iana.org/domains/idn-tables/tables/walter_fr_3.0.xml"
27 },
28 {
29 "type": "idn-table",
30 "key": "pl",
31 "value": "https://www.iana.org/domains/idn-tables/tables/walter_pl_3.0.xml"
32 },
33 {
34 "type": "idn-table",
35 "key": "ru",
36 "value": "https://www.iana.org/domains/idn-tables/tables/walter_ru_3.0.xml"
37 },
38 {
39 "type": "idn-table",
40 "key": "sv",
41 "value": "https://www.iana.org/domains/idn-tables/tables/walter_sv_3.0.xml"
42 },
43 {
44 "type": "idn-table",
45 "key": "zh",
46 "value": "https://www.iana.org/domains/idn-tables/tables/walter_zh_3.0.xml"
1747 }
1848 ]
1949 }
00 {
11 "domain": "wang",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.gtld.knet.cn",
3 "rdapURLs": [
4 "https://rdap.zdnsgtld.com/wang/"
45 ],
5 "whoisServer": "whois.gtld.knet.cn",
66 "nameServers": [
77 "a.zdnscloud.com",
88 "b.zdnscloud.com",
1212 "g.zdnscloud.com",
1313 "i.zdnscloud.com",
1414 "j.zdnscloud.com"
15 ],
16 "tags": [
17 "generic"
1518 ],
1619 "policies": [
1720 {
00 {
11 "domain": "wanggou",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.wanggou",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/wanggou/"
66 ],
7 "whoisServer": "whois.nic.wanggou",
87 "nameServers": [
98 "dns1.nic.wanggou",
109 "dns2.nic.wanggou",
1413 "dnsb.nic.wanggou",
1514 "dnsc.nic.wanggou",
1615 "dnsd.nic.wanggou"
16 ],
17 "tags": [
18 "closed",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "warman",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.warman",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.warman",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "watch",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.watch",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.watch",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "watch.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "watches",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.watches",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/watches/"
6 ],
7 "nameServers": [
8 "a0.nic.watches",
9 "a2.nic.watches",
10 "b0.nic.watches",
11 "c0.nic.watches"
12 ],
313 "tags": [
414 "generic"
515 ],
6 "whoisServer": "whois.nic.watches",
7 "nameServers": [
8 "ns1.dns.nic.watches",
9 "ns2.dns.nic.watches",
10 "ns3.dns.nic.watches",
11 "ns4.dns.nic.watches",
12 "ns5.dns.nic.watches",
13 "ns6.dns.nic.watches"
14 ],
1516 "policies": [
1617 {
17 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/watches_da_1.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/watches_de_1.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/watches_es_1.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/watches_fi_1.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/watches_hu_1.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/watches_is_1.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/watches_ja_1.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/watches_ko_1.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/watches_lt_1.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/watches_lv_1.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "pl",
70 "value": "https://www.iana.org/domains/idn-tables/tables/watches_pl_1.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "pt",
75 "value": "https://www.iana.org/domains/idn-tables/tables/watches_pt_1.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "ru",
80 "value": "https://www.iana.org/domains/idn-tables/tables/watches_ru_1.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "sv",
85 "value": "https://www.iana.org/domains/idn-tables/tables/watches_sv_1.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "zh-TW",
90 "value": "https://www.iana.org/domains/idn-tables/tables/watches_zh-tw_4.0.txt"
1891 }
1992 ]
2093 }
33 "ns1.wordpress.com",
44 "ns2.wordpress.com",
55 "ns3.wordpress.com"
6 ],
7 "wildcards": [
8 "192.0.78.24",
9 "192.0.78.25",
10 "water.blog"
116 ]
127 }
00 {
11 "domain": "weather",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.weather",
4 "rdapURLs": [
5 "https://rdap.nic.weather/"
56 ],
6 "whoisServer": "whois.nic.weather",
77 "nameServers": [
88 "ns1.dns.nic.weather",
99 "ns2.dns.nic.weather",
1212 "ns5.dns.nic.weather",
1313 "ns6.dns.nic.weather"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
17 "type": "idn-disallowed"
20 "type": "idn-table",
21 "key": "da",
22 "value": "https://www.iana.org/domains/idn-tables/tables/weather_da_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "de",
27 "value": "https://www.iana.org/domains/idn-tables/tables/weather_de_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "es",
32 "value": "https://www.iana.org/domains/idn-tables/tables/weather_es_3.0.xml"
33 },
34 {
35 "type": "idn-table",
36 "key": "fi",
37 "value": "https://www.iana.org/domains/idn-tables/tables/weather_fi_3.0.xml"
38 },
39 {
40 "type": "idn-table",
41 "key": "hu",
42 "value": "https://www.iana.org/domains/idn-tables/tables/weather_hu_3.0.xml"
43 },
44 {
45 "type": "idn-table",
46 "key": "is",
47 "value": "https://www.iana.org/domains/idn-tables/tables/weather_is_3.0.xml"
48 },
49 {
50 "type": "idn-table",
51 "key": "ja",
52 "value": "https://www.iana.org/domains/idn-tables/tables/weather_ja_3.0.xml"
53 },
54 {
55 "type": "idn-table",
56 "key": "ko",
57 "value": "https://www.iana.org/domains/idn-tables/tables/weather_ko_3.0.xml"
58 },
59 {
60 "type": "idn-table",
61 "key": "lt",
62 "value": "https://www.iana.org/domains/idn-tables/tables/weather_lt_3.0.xml"
63 },
64 {
65 "type": "idn-table",
66 "key": "lv",
67 "value": "https://www.iana.org/domains/idn-tables/tables/weather_lv_3.0.xml"
68 },
69 {
70 "type": "idn-table",
71 "key": "no",
72 "value": "https://www.iana.org/domains/idn-tables/tables/weather_no_3.0.xml"
73 },
74 {
75 "type": "idn-table",
76 "key": "pl",
77 "value": "https://www.iana.org/domains/idn-tables/tables/weather_pl_3.0.xml"
78 },
79 {
80 "type": "idn-table",
81 "key": "pt",
82 "value": "https://www.iana.org/domains/idn-tables/tables/weather_pt_3.0.xml"
83 },
84 {
85 "type": "idn-table",
86 "key": "ru",
87 "value": "https://www.iana.org/domains/idn-tables/tables/weather_ru_3.0.xml"
88 },
89 {
90 "type": "idn-table",
91 "key": "sv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/weather_sv_3.0.xml"
93 },
94 {
95 "type": "idn-table",
96 "key": "zh",
97 "value": "https://www.iana.org/domains/idn-tables/tables/weather_zh_3.0.xml"
1898 }
1999 ]
20100 }
00 {
11 "domain": "weatherchannel",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.weatherchannel",
4 "rdapURLs": [
5 "https://rdap.nic.weatherchannel/"
66 ],
7 "whoisServer": "whois.nic.weatherchannel",
87 "nameServers": [
98 "ns1.dns.nic.weatherchannel",
109 "ns2.dns.nic.weatherchannel",
1312 "ns5.dns.nic.weatherchannel",
1413 "ns6.dns.nic.weatherchannel"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "web.fo",
2 "nameServers": [
3 "ns1.økisnavn.fo",
4 "ns2.økisnavn.fo",
5 "ns3.økisnavn.fo"
6 ],
72 "policies": [
83 {
94 "type": "idn-disallowed"
00 {
11 "domain": "web.gg",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.subdomain.com",
74 "ns2.subdomain.com"
96 "wildcards": [
107 "144.76.162.245",
118 "web.gg"
9 ],
10 "tags": [
11 "private"
1212 ]
1313 }
00 {
11 "domain": "web.tr",
22 "nameServers": [
3 "lns21.nic.tr",
4 "lns22.nic.tr",
53 "lns31.nic.tr",
64 "lns34.nic.tr",
75 "lns35.nic.tr",
86 "lns41.nic.tr",
97 "lns42.nic.tr",
108 "lns5.nic.tr",
11 "lns61.nic.tr"
9 "lns61.nic.tr",
10 "lns71.nic.tr"
1211 ]
1312 }
00 {
11 "domain": "webcam",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.webcam",
4 "rdapURLs": [
5 "https://rdap.nic.webcam/"
56 ],
6 "whoisServer": "whois.nic.webcam",
77 "nameServers": [
88 "ns1.dns.nic.webcam",
99 "ns2.dns.nic.webcam",
1212 "ns5.dns.nic.webcam",
1313 "ns6.dns.nic.webcam"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "webcam.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "weber",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.weber",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/weber/v1/"
66 ],
7 "whoisServer": "whois.nic.weber",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "website",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.website",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/website/"
45 ],
5 "whoisServer": "whois.nic.website",
66 "nameServers": [
77 "a.nic.website",
88 "b.nic.website",
99 "e.nic.website",
1010 "f.nic.website"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
5861 {
5962 "type": "idn-table",
6063 "key": "zh",
61 "value": "https://www.iana.org/domains/idn-tables/tables/website_zh_1.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/website_zh_1.0.txt"
6265 }
6366 ]
6467 }
00 {
11 "domain": "wed",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.wed",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/wed/"
56 ],
6 "whoisServer": "whois.nic.wed",
77 "nameServers": [
88 "dns1.emdns.uk",
99 "dns2.emdns.uk",
1414 "dnsc.emdns.uk",
1515 "dnsd.emdns.uk"
1616 ],
17 "tags": [
18 "generic"
19 ],
1720 "policies": [
1821 {
1922 "type": "idn-disallowed"
00 {
11 "domain": "wedding",
22 "infoURL": "http://nic.wedding/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.wedding",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/wedding/"
56 ],
6 "whoisServer": "whois.nic.wedding",
77 "nameServers": [
88 "dns1.nic.wedding",
99 "dns2.nic.wedding",
1313 "dnsb.nic.wedding",
1414 "dnsc.nic.wedding",
1515 "dnsd.nic.wedding"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "weibo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.weibo",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/weibo/"
56 ],
6 "whoisServer": "whois.nic.weibo",
77 "nameServers": [
88 "a0.nic.weibo",
99 "a2.nic.weibo",
1010 "b0.nic.weibo",
1111 "c0.nic.weibo"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
15 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "zh-CN",
20 "value": "https://www.iana.org/domains/idn-tables/tables/weibo_zh-cn_4.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "zh-TW",
25 "value": "https://www.iana.org/domains/idn-tables/tables/weibo_zh-tw_4.0.txt"
1626 }
1727 ]
1828 }
00 {
11 "domain": "weir",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/weir/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-disallowed"
00 {
11 "domain": "wf",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.wf",
73 "nameServers": [
84 "d.nic.fr",
95 "e.ext.nic.fr",
106 "f.ext.nic.fr",
117 "g.ext.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "whoswho",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.whoswho",
4 "rdapURLs": [
5 "https://rdap.nic.whoswho/"
56 ],
6 "whoisServer": "whois.nic.whoswho",
77 "nameServers": [
88 "anycast10.irondns.net",
99 "anycast23.irondns.net",
1010 "anycast24.irondns.net",
1111 "anycast9.irondns.net"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "wien",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.wien",
3 "rdapURLs": [
4 "https://rdap.ryce-rsp.com/rdap/"
5 ],
6 "nameServers": [
7 "dns.ryce-rsp.com",
8 "ns1.dns.business",
9 "ns1.ryce-rsp.com"
610 ],
711 "locations": [
812 "Vienna",
913 "AT-9"
1014 ],
11 "whoisServer": "whois.nic.wien",
12 "nameServers": [
13 "dns.ryce-rsp.com",
14 "ns1.dns.business",
15 "ns1.ryce-rsp.com"
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "wiki",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.wiki",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/wiki/"
45 ],
5 "whoisServer": "whois.nic.wiki",
66 "nameServers": [
77 "a.nic.wiki",
88 "b.nic.wiki",
99 "c.nic.wiki",
1010 "d.nic.wiki"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "wiki.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "williamhill",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.williamhill",
4 "rdapURLs": [
5 "https://rdap.nic.williamhill/"
66 ],
7 "whoisServer": "whois.nic.williamhill",
87 "nameServers": [
98 "ns1.dns.nic.williamhill",
109 "ns2.dns.nic.williamhill",
1312 "ns5.dns.nic.williamhill",
1413 "ns6.dns.nic.williamhill"
1514 ],
15 "tags": [
16 "brand",
17 "generic"
18 ],
1619 "policies": [
1720 {
1821 "type": "idn-disallowed"
00 {
11 "domain": "win",
22 "infoURL": "https://www.famousfourmedia.com/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.win",
4 "rdapURLs": [
5 "https://rdap.nic.win/"
56 ],
6 "whoisServer": "whois.nic.win",
77 "nameServers": [
88 "ns1.dns.nic.win",
99 "ns2.dns.nic.win",
1212 "ns5.dns.nic.win",
1313 "ns6.dns.nic.win"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/win_da_2.2.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/win_da_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/win_de_2.2.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/win_de_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/win_es_2.2.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/win_es_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/win_fi_2.2.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/win_fi_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/win_fr_2.2.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/win_fr_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/win_hu_2.2.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/win_hu_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/win_is_2.2.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/win_is_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/win_ja_2.2.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/win_ja_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/win_ko_2.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/win_ko_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/win_lt_2.2.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/win_lt_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/win_lv_2.2.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/win_lv_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/win_no_2.2.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/win_no_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/win_pl_2.2.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/win_pl_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/win_pt_2.2.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/win_pt_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/win_ru_2.2.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/win_ru_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/win_sv_2.2.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/win_sv_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/win_zh_2.2.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/win_zh_3.0.xml"
100103 }
101104 ]
102105 }
00 {
11 "domain": "windows",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/windows/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "wine",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.wine",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.wine",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "winners",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.winners",
4 "rdapURLs": [
5 "https://rdap.nic.winners/"
56 ],
6 "whoisServer": "whois.nic.winners",
77 "nameServers": [
88 "ns1.dns.nic.winners",
99 "ns2.dns.nic.winners",
1212 "ns5.dns.nic.winners",
1313 "ns6.dns.nic.winners"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-disallowed"
00 {
11 "domain": "wme",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.wme",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/wme/"
66 ],
7 "whoisServer": "whois.nic.wme",
87 "nameServers": [
98 "a.nic.wme",
109 "b.nic.wme",
1110 "c.nic.wme",
1211 "d.nic.wme"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "wolterskluwer",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.wolterskluwer",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/wolterskluwer/"
66 ],
7 "whoisServer": "whois.nic.wolterskluwer",
87 "nameServers": [
98 "a0.nic.wolterskluwer",
109 "a2.nic.wolterskluwer",
1110 "b0.nic.wolterskluwer",
1211 "c0.nic.wolterskluwer"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "be",
21 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_be_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "bg",
26 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_bg_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bs",
31 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_bs_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "da",
36 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_da_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "de",
41 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_de_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "es",
46 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_es_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "hu",
51 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_hu_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "is",
56 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_is_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "ko",
61 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_ko_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "lt",
66 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_lt_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "lv",
71 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_lv_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "mk",
76 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_mk_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "pl",
81 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_pl_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ru",
86 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_ru_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "sr",
91 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_sr_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "sr-ME",
96 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_sr-me_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "sv",
101 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_sv_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "uk",
106 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_uk_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "zh-CN",
111 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_zh-cn_4.0.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "zh-TW",
116 "value": "https://www.iana.org/domains/idn-tables/tables/wolterskluwer_zh-tw_4.0.txt"
17117 }
18118 ]
19119 }
00 {
11 "domain": "woodside",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.woodside",
4 "rdapURLs": [
5 "https://rdap.nic.woodside/"
66 ],
7 "whoisServer": "whois.nic.woodside",
87 "nameServers": [
98 "a.nic.woodside",
109 "b.nic.woodside",
1110 "c.nic.woodside",
1211 "d.nic.woodside"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "work",
22 "infoURL": "http://nic.work/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.work",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/work/"
56 ],
6 "whoisServer": "whois.nic.work",
77 "nameServers": [
88 "dns1.nic.work",
99 "dns2.nic.work",
1313 "dnsb.nic.work",
1414 "dnsc.nic.work",
1515 "dnsd.nic.work"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "works",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.works",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.works",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "works.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "world",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.world",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
56 ],
6 "whoisServer": "whois.nic.world",
77 "nameServers": [
88 "demand.alpha.aridns.net.au",
99 "demand.beta.aridns.net.au",
1010 "demand.delta.aridns.net.au",
1111 "demand.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "wow",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.wow",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/wow/"
56 ],
6 "whoisServer": "whois.nic.wow",
77 "nameServers": [
88 "dns1.nic.wow",
99 "dns2.nic.wow",
1313 "dnsb.nic.wow",
1414 "dnsc.nic.wow",
1515 "dnsd.nic.wow"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "ws",
2 "infoURL": "http://nic.ws/",
3 "tags": [
4 "country",
5 "generic",
6 "geo"
7 ],
2 "infoURL": "https://www.worldsite.ws/",
83 "whoisServer": "whois.website.ws",
94 "nameServers": [
105 "ns2.dns.ws",
1712 "wildcards": [
1813 "64.70.19.203"
1914 ],
15 "tags": [
16 "country",
17 "generic",
18 "geo"
19 ],
2020 "policies": [
2121 {
2222 "type": "idn-table",
00 {
11 "domain": "wtc",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.wtc",
4 "rdapURLs": [
5 "https://rdap.nic.wtc/"
66 ],
7 "whoisServer": "whois.nic.wtc",
87 "nameServers": [
98 "a.nic.wtc",
109 "b.nic.wtc",
1110 "c.nic.wtc",
1211 "d.nic.wtc"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "wtf",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.wtf",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.wtf",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "wtf.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "xbox",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/xbox/v1/"
65 ],
76 "nameServers": [
87 "ac1.nstld.com",
109 "ac3.nstld.com",
1110 "ac4.nstld.com"
1211 ],
12 "tags": [
13 "brand",
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "xerox",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.xerox",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xerox/v1/"
66 ],
7 "whoisServer": "whois.nic.xerox",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "xfinity",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.xfinity",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/xfinity/"
66 ],
7 "whoisServer": "whois.nic.xfinity",
87 "nameServers": [
98 "dns1.nic.xfinity",
109 "dns2.nic.xfinity",
1514 "dnsc.nic.xfinity",
1615 "dnsd.nic.xfinity"
1716 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
1821 "policies": [
1922 {
2023 "type": "idn-disallowed"
00 {
11 "domain": "xihuan",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.teleinfo.cn",
4 "rdapURLs": [
5 "https://rdap.teleinfo.cn/"
56 ],
6 "whoisServer": "whois.teleinfo.cn",
77 "nameServers": [
88 "ns1.teleinfo.cn",
99 "ns2.teleinfoo.com",
1010 "ns3.teleinfo.cn",
1111 "ns4.teleinfoo.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "xin",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.xin",
4 "rdapURLs": [
5 "https://rdap.aceregistry.net/rdap/xin/"
56 ],
6 "whoisServer": "whois.nic.xin",
77 "nameServers": [
88 "a0.nic.xin",
99 "a2.nic.xin",
1010 "b0.nic.xin",
1111 "c0.nic.xin"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ростов-на-дону.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "нарьян-мар.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "कॉम",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.कॉम",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--11b4c3d/v1/"
56 ],
6 "whoisServer": "whois.nic.कॉम",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "セール",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.セール",
4 "rdapURLs": [
5 "https://rdap.nic.セール/"
56 ],
6 "whoisServer": "whois.nic.セール",
77 "nameServers": [
88 "ns1.dns.nic.セール",
99 "ns2.dns.nic.セール",
1111 "ns4.dns.nic.セール",
1212 "ns5.dns.nic.セール",
1313 "ns6.dns.nic.セール"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "佛山",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
7 ],
8 "locations": [
9 "Foshan"
10 ],
113 "whoisServer": "whois.ngtld.cn",
124 "nameServers": [
135 "ta.ngtld.cn",
157 "tc.ngtld.cn",
168 "td.ngtld.cn",
179 "te.ngtld.cn"
10 ],
11 "locations": [
12 "Foshan"
13 ],
14 "tags": [
15 "city",
16 "generic",
17 "geo"
18 ],
19 "policies": [
20 {
21 "type": "idn-table",
22 "key": "zh-Hans",
23 "value": "https://www.iana.org/domains/idn-tables/tables/xn--1qqw23a_zh-hans_4.1.txt"
24 }
1825 ]
1926 }
00 {
11 "domain": "ಭಾರತ",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "kn-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
11 "domain": "慈善",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.gtld.knet.cn",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--30rr7y/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
1013 "g.zdnscloud.com",
1114 "i.zdnscloud.com",
1215 "j.zdnscloud.com"
16 ],
17 "policies": [
18 {
19 "type": "idn-table",
20 "key": "zh-Hans",
21 "value": "https://www.iana.org/domains/idn-tables/tables/xn--30rr7y_zh-hans_1.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-Hant",
26 "value": "https://www.iana.org/domains/idn-tables/tables/xn--30rr7y_zh-hant_1.0.txt"
27 }
1328 ]
1429 }
11 "domain": "集团",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.gtld.knet.cn",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--3bst00m/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
1013 "g.zdnscloud.com",
1114 "i.zdnscloud.com",
1215 "j.zdnscloud.com"
16 ],
17 "policies": [
18 {
19 "type": "idn-table",
20 "key": "zh-Hans",
21 "value": "https://www.iana.org/domains/idn-tables/tables/xn--3bst00m_zh-hans_1.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-Hant",
26 "value": "https://www.iana.org/domains/idn-tables/tables/xn--3bst00m_zh-hant_1.0.txt"
27 }
1328 ]
1429 }
00 {
11 "domain": "在线",
22 "whoisServer": "whois.teleinfo.cn",
3 "rdapURLs": [
4 "https://rdap.teleinfo.cn/xn--3ds443g/"
5 ],
36 "nameServers": [
47 "ns1.teleinfo.cn",
58 "ns2.teleinfoo.com",
00 {
11 "domain": "ଭାରତ",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "or-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
00 {
11 "domain": "大众汽车",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.大众汽车",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/xn--3oq18vl8pn36a/"
56 ],
6 "whoisServer": "whois.nic.大众汽车",
77 "nameServers": [
88 "a0.nic.大众汽车",
99 "a2.nic.大众汽车",
1010 "b0.nic.大众汽车",
1111 "c0.nic.大众汽车"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
11 "domain": "点看",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.点看",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--3pxu8k/v1/"
6 ],
47 "nameServers": [
58 "ac1.nstld.com",
69 "ac2.nstld.com",
00 {
11 "domain": "я.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "คอม",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.คอม",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--42c2d9a/v1/"
56 ],
6 "whoisServer": "whois.nic.คอม",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "ভাৰত",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "as-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
00 {
11 "domain": "ভারত",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
118 "ns4.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
11 ],
12 "languages": [
13 "bn-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1418 ]
1519 }
11 "domain": "八卦",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.八卦",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/XN--45Q11C/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
0 {
1 "domain": "ישראל",
2 "whoisServer": "whois.isoc.org.il",
3 "nameServers": [
4 "ilns.ilan.net.il",
5 "lookup.iucc.ac.il",
6 "ns1.ns.il",
7 "ns4.ns.il",
8 "nsa.ns.il",
9 "nsb.ns.il",
10 "nse.ns.il"
11 ]
12 }
00 {
11 "domain": "موقع",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/xn--4gbrim/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.موقع",
99 "a2.nic.موقع",
1010 "b0.nic.موقع",
1111 "c0.nic.موقع"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
11 "domain": "公益",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.conac.cn",
4 "rdapURLs": [
5 "https://rdap.conac.cn/"
6 ],
47 "nameServers": [
58 "ns1.conac.cn",
69 "ns2.conac.cn",
66 "c.ngtld.cn",
77 "d.ngtld.cn",
88 "e.ngtld.cn"
9 ],
10 "policies": [
11 {
12 "type": "idn-table",
13 "key": "zh-Hans",
14 "value": "https://www.iana.org/domains/idn-tables/tables/xn--55qx5d_zh-hans_4.1.txt"
15 }
916 ]
1017 }
00 {
11 "domain": "香格里拉",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.香格里拉",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--5su34j936bgsg/v1/"
56 ],
6 "whoisServer": "whois.nic.香格里拉",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
11 "domain": "网站",
22 "infoURL": "https://nic.网站/",
33 "whoisServer": "whois.nic.网站",
4 "rdapURLs": [
5 "https://rdap.afilias.net/rdap/xn--5tzm5g/"
6 ],
47 "nameServers": [
58 "a0.nic.网站",
69 "a2.nic.网站",
1114 {
1215 "type": "idn-table",
1316 "key": "zh-CN",
14 "value": "https://portal.afilias.info/sites/portal.afilias.info/files/simplified-chinese-ZH-CN.txt"
17 "value": "https://www.iana.org/domains/idn-tables/tables/xn--5tzm5g_zh-cn_4.0.txt"
1518 },
1619 {
1720 "type": "idn-table",
1821 "key": "zh-TW",
19 "value": "https://portal.afilias.info/sites/portal.afilias.info/files/traditional-chinese-ZH-TW.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/xn--5tzm5g_zh-tw_4.0.txt"
2023 }
2124 ]
2225 }
00 {
11 "domain": "移动",
22 "whoisServer": "whois.afilias.net",
3 "rdapURLs": [
4 "https://rdap.afilias.net/rdap/xn--6frz82g/"
5 ],
36 "nameServers": [
47 "a0.nic.移动",
58 "a2.nic.移动",
912 "policies": [
1013 {
1114 "type": "idn-table",
15 "key": "ar",
16 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_ar_1.txt"
17 },
18 {
19 "type": "idn-table",
20 "key": "be",
21 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_be_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "bg",
26 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_bg_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bs",
31 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_bs_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "da",
36 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_da_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "de",
41 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_de_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "es",
46 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_es_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "fi",
51 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_fi_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "fr",
56 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_fr_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "hi",
61 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_hi_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "hu",
66 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_hu_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "is",
71 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_is_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "it",
76 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_it_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "ko",
81 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_ko_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "lt",
86 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_lt_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "lv",
91 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_lv_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "mk",
96 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_mk_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "pl",
101 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_pl_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "pt",
106 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_pt_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "ru",
111 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_ru_1.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "sr",
116 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_sr_1.txt"
117 },
118 {
119 "type": "idn-table",
120 "key": "sr-ME",
121 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_sr-me_1.txt"
122 },
123 {
124 "type": "idn-table",
125 "key": "sv",
126 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_sv_1.txt"
127 },
128 {
129 "type": "idn-table",
130 "key": "uk",
131 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_uk_1.txt"
132 },
133 {
134 "type": "idn-table",
12135 "key": "zh-CN",
13136 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_zh-cn_4.0.txt"
137 },
138 {
139 "type": "idn-table",
140 "key": "zh-TW",
141 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6frz82g_zh-tw_4.0.txt"
14142 }
15143 ]
16144 }
00 {
11 "domain": "我爱你",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.gtld.knet.cn",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--6qq986b3xl/"
56 ],
6 "whoisServer": "whois.gtld.knet.cn",
77 "nameServers": [
88 "a.zdnscloud.com",
99 "b.zdnscloud.com",
1313 "g.zdnscloud.com",
1414 "i.zdnscloud.com",
1515 "j.zdnscloud.com"
16 ],
17 "tags": [
18 "generic"
19 ],
20 "policies": [
21 {
22 "type": "idn-table",
23 "key": "zh-Hans",
24 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6qq986b3xl_zh-hans_1.0.txt"
25 },
26 {
27 "type": "idn-table",
28 "key": "zh-Hant",
29 "value": "https://www.iana.org/domains/idn-tables/tables/xn--6qq986b3xl_zh-hant_1.0.txt"
30 }
1631 ]
1732 }
00 {
11 "domain": "уфа.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "алтай.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "саранск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "самара.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "астана.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "астрахань.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "махачкала.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "абакан.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "владикавказ.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "магадан.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "барнаул.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "хабаровск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "саратов.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "калуга.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "магас.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "калининград.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "краснодар.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "анадырь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "салехард.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "казань.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "баку.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "биробиджан.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "благовещенск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "чебоксары.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "тамбов.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "владивосток.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "иваново.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "волга.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "волгоград.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "вологда.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "владимир.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "севастополь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ереван.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "москва",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.москва",
3 "rdapURLs": [
4 "https://flexireg.net/xn--80adxhks/rdap/"
65 ],
7 "locations": [
8 "Moscow"
9 ],
10 "whoisServer": "whois.nic.москва",
116 "nameServers": [
127 "a.dns.flexireg.ru",
138 "b.dns.flexireg.net",
149 "c.dns.flexireg.org",
1510 "d.dns.flexireg.domains"
11 ],
12 "locations": [
13 "Moscow"
14 ],
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "авто.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ставрополь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "петрозаводск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ярославль.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "югра.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "рига.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "курган.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ахг.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "пенза.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ташкент.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "рязань.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "қаз",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.nic.kz",
63 "nameServers": [
74 "ns.nic.kz",
85 "ns1.nic.kz"
6 ],
7 "tags": [
8 "generic"
99 ]
1010 }
00 {
11 "domain": "чита.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "элиста.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "марийэл.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.nameself.com",
74 "ns2.nameself.com"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "католик",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.католик",
4 "rdapURLs": [
5 "https://rdap.nic.католик/"
56 ],
6 "whoisServer": "whois.nic.католик",
77 "nameServers": [
88 "a.nic.католик",
99 "b.nic.католик",
1010 "c.nic.католик",
1111 "d.nic.католик"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
00 {
11 "domain": "нальчик.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "таллин.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "мариэл.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "майкоп.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "онлайн",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.онлайн",
3 "rdapURLs": [
4 "https://rdap.nic.онлайн/"
45 ],
5 "whoisServer": "whois.nic.онлайн",
66 "nameServers": [
77 "anycast10.irondns.net",
88 "anycast23.irondns.net",
99 "anycast24.irondns.net",
1010 "anycast9.irondns.net"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "сайт",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.сайт",
3 "rdapURLs": [
4 "https://rdap.nic.сайт/"
45 ],
5 "whoisServer": "whois.nic.сайт",
66 "nameServers": [
77 "anycast10.irondns.net",
88 "anycast23.irondns.net",
99 "anycast24.irondns.net",
1010 "anycast9.irondns.net"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "красноярск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "кострома.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "мурманск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "тула.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "алм.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
11 "domain": "联通",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.联通",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--8y0a063a/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
00 {
11 "domain": "спб.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "срб",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.rnids.rs",
63 "nameServers": [
74 "a.nic.rs",
118 "h.nic.rs",
129 "l.nic.rs"
1310 ],
11 "tags": [
12 "generic"
13 ],
1414 "policies": [
1515 {
1616 "type": "idn-table",
00 {
11 "domain": "бобруйск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "витебск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "новосибирск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "белгород.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "оренбург.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "челябинск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "брест.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "бишкек.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "бел",
2 "whoisServer": "whois.cctld.by",
3 "nameServers": [
4 "dns1.tld.hosterby.com",
5 "dns2.tld.hosterby.com",
6 "dns3.tld.hosterby.com",
7 "dns4.tld.hosterby.com",
8 "dns5.tld.hosterby.com",
9 "dns6.tld.hosterby.com"
10 ],
211 "tags": [
312 "generic"
4 ],
5 "whoisServer": "whois.cctld.by",
6 "nameServers": [
7 "dns1.tld.tutby.com",
8 "dns2.tld.tutby.com",
9 "dns3.tld.tutby.com",
10 "dns4.tld.tutby.com",
11 "dns5.tld.tutby.com"
1213 ]
1314 }
00 {
11 "domain": "бел.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.gohost.ru",
74 "ns2.gohost.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "биз.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
85 ],
96 "wildcards": [
107 "77.221.159.235"
8 ],
9 "tags": [
10 "private"
1111 ]
1212 }
00 {
11 "domain": "сибирь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "бурятия.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "брянск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "קום",
22 "whoisServer": "whois.nic.קום",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/xn--9dbq2a/v1/"
5 ],
36 "nameServers": [
47 "ac1.nstld.com",
58 "ac2.nstld.com",
11 "domain": "时尚",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.gtld.knet.cn",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--9et52u/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
1013 "g.zdnscloud.com",
1114 "i.zdnscloud.com",
1215 "j.zdnscloud.com"
16 ],
17 "policies": [
18 {
19 "type": "idn-table",
20 "key": "zh-Hans",
21 "value": "https://www.iana.org/domains/idn-tables/tables/xn--9et52u_zh-hans_1.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-Hant",
26 "value": "https://www.iana.org/domains/idn-tables/tables/xn--9et52u_zh-hant_1.0.txt"
27 }
1328 ]
1429 }
11 "domain": "微博",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.微博",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/xn--9krt00a/"
6 ],
47 "nameServers": [
58 "a0.nic.微博",
69 "a2.nic.微博",
710 "b0.nic.微博",
811 "c0.nic.微博"
12 ],
13 "policies": [
14 {
15 "type": "idn-table",
16 "key": "zh-CN",
17 "value": "https://www.iana.org/domains/idn-tables/tables/xn--9krt00a_zh-cn_4.0.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "zh-TW",
22 "value": "https://www.iana.org/domains/idn-tables/tables/xn--9krt00a_zh-tw_4.0.txt"
23 }
924 ]
1025 }
00 {
11 "domain": "рств.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "великийновгород.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "могилёв.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "кемерово.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ижевск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "кишинев.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "киев.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "тверь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "воронеж.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "киров.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "вильнюс.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "псков.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ульяновск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "нвс.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "淡马锡",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/xn--b4w605ferd/"
56 ],
6 "whoisServer": "whois.afilias-srs.net",
77 "nameServers": [
88 "a0.nic.淡马锡",
99 "a2.nic.淡马锡",
1010 "b0.nic.淡马锡",
1111 "c0.nic.淡马锡"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "ファッション",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ファッション",
4 "rdapURLs": [
5 "https://rdap.nic.ファッション/"
56 ],
6 "whoisServer": "whois.nic.ファッション",
77 "nameServers": [
88 "ns1.dns.nic.ファッション",
99 "ns2.dns.nic.ファッション",
1111 "ns4.dns.nic.ファッション",
1212 "ns5.dns.nic.ファッション",
1313 "ns6.dns.nic.ファッション"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "гродно.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "гомель.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "грозный.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "пятигорск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "орг",
22 "infoURL": "https://pir.org/products/opr-domain/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.publicinterestregistry.net",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/xn--c1avg/"
56 ],
6 "whoisServer": "whois.publicinterestregistry.net",
77 "nameServers": [
88 "a0.nic.орг",
99 "a2.nic.орг",
1010 "b0.nic.орг",
1111 "c0.nic.орг"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "орг.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "орг.рф",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.nameself.com",
74 "ns2.nameself.com"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "नेट",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.नेट",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--c2br7g/v1/"
56 ],
6 "whoisServer": "whois.nic.नेट",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "ストア",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ストア",
4 "rdapURLs": [
5 "https://rdap.nic.ストア/"
56 ],
6 "whoisServer": "whois.nic.ストア",
77 "nameServers": [
88 "ns1.dns.nic.ストア",
99 "ns2.dns.nic.ストア",
1111 "ns4.dns.nic.ストア",
1212 "ns5.dns.nic.ストア",
1313 "ns6.dns.nic.ストア"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "アマゾン",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "withdrawn"
2 "infoURL": "http://nic.アマゾン/",
3 "whoisServer": "whois.nic.アマゾン",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/xn--cckwcxetd/"
66 ],
7 "whoisServer": "whois.nic.アマゾン",
87 "nameServers": [
98 "dns1.nic.アマゾン",
109 "dns2.nic.アマゾン",
1413 "dnsb.nic.アマゾン",
1514 "dnsc.nic.アマゾン",
1615 "dnsd.nic.アマゾン"
16 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
21 "policies": [
22 {
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_da_2.2.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_de_2.2.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_es_2.2.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_fi_2.2.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "hu",
45 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_hu_2.2.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "is",
50 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_is_2.2.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_ja_2.2.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_ko_2.2.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_lt_2.2.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_lv_2.2.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_no_2.2.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_pl_2.2.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_pt_2.2.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_ru_2.2.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_sv_2.2.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cckwcxetd_zh_2.2.txt"
101 }
17102 ]
18103 }
00 {
11 "domain": "삼성",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.kr",
4 "rdapURLs": [
5 "https://nic.samsung:8443/rdap/"
66 ],
7 "whoisServer": "whois.kr",
87 "nameServers": [
98 "ns1.삼성.centralnic-dns.com",
109 "ns2.삼성.centralnic-dns.com",
1110 "ns3.삼성.centralnic-dns.com",
1211 "ns4.삼성.centralnic-dns.com"
12 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
17 "policies": [
18 {
19 "type": "idn-table",
20 "key": "ko",
21 "value": "https://www.iana.org/domains/idn-tables/tables/xn--cg4bki_ko_1.0.txt"
22 }
1323 ]
1424 }
00 {
11 "domain": "சிங்கப்பூர்",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.sgnic.sg",
63 "nameServers": [
74 "dsany.sgnic.sg",
96 "dsany3.sgnic.sg",
107 "ns4.apnic.net",
118 "pch.sgzones.sg"
9 ],
10 "tags": [
11 "generic"
1212 ]
1313 }
00 {
11 "domain": "商标",
22 "infoURL": "https://newgtlds.icann.org/",
3 "rdapURLs": [
4 "https://rdap.zdnsgtld.com/xn--czr694b/"
5 ],
36 "nameServers": [
47 "a.zdnscloud.com",
58 "b.zdnscloud.com",
912 "g.zdnscloud.com",
1013 "i.zdnscloud.com",
1114 "j.zdnscloud.com"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "zh-Hans",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--czr694b_zh-hans_1.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "zh-Hant",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--czr694b_zh-hant_1.0.txt"
26 }
1227 ]
1328 }
11 "domain": "商店",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.商店",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
47 "nameServers": [
58 "demand.alpha.aridns.net.au",
69 "demand.beta.aridns.net.au",
00 {
11 "domain": "商城",
22 "whoisServer": "whois.gtld.knet.cn",
3 "rdapURLs": [
4 "https://rdap.zdnsgtld.com/xn--czru2d/"
5 ],
36 "nameServers": [
47 "a.zdnscloud.com",
58 "b.zdnscloud.com",
00 {
11 "domain": "商業.tw",
2 "infoURL": "http://www.twnic.net.tw/"
2 "infoURL": "https://www.twnic.tw/"
33 }
00 {
11 "domain": "мед.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "дети",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.дети",
3 "rdapURLs": [
4 "https://whois.nic.дети/rdap/"
45 ],
5 "whoisServer": "whois.nic.дети",
66 "nameServers": [
77 "a.dns.ripn.net",
88 "b.dns.ripn.net",
99 "d.dns.ripn.net",
1010 "e.dns.ripn.net",
1111 "f.dns.ripn.net"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "мкд",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.marnet.mk",
74 "nameServers": [
85 "d.ext.nic.cz",
96 "dns-mk.univie.ac.at",
107 "ns2.arnes.si",
118 "tld1.marnet.mk"
9 ],
10 "tags": [
11 "generic"
1212 ]
1313 }
00 {
11 "domain": "черкесск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "липецк.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "симферополь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "смоленск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ект.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "тюмень.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "пермь.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "нет.рф",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.nameself.com",
74 "ns2.nameself.com"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ポイント",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ポイント",
4 "rdapURLs": [
5 "https://rdap.nic.ポイント/"
56 ],
6 "whoisServer": "whois.nic.ポイント",
77 "nameServers": [
88 "ns1.dns.nic.ポイント",
99 "ns2.dns.nic.ポイント",
1111 "ns4.dns.nic.ポイント",
1212 "ns5.dns.nic.ポイント",
1313 "ns6.dns.nic.ポイント"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
11 "domain": "新闻",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.新闻",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/XN--EFVY88H/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
1013 "g.zdnscloud.com",
1114 "i.zdnscloud.com",
1215 "j.zdnscloud.com"
16 ],
17 "policies": [
18 {
19 "type": "idn-table",
20 "key": "zh-Hans",
21 "value": "https://www.iana.org/domains/idn-tables/tables/xn--efvy88h_zh-hans_1.0.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "zh-Hant",
26 "value": "https://www.iana.org/domains/idn-tables/tables/xn--efvy88h_zh-hant_1.0.txt"
27 }
1328 ]
1429 }
11 "domain": "家電",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.家電",
4 "rdapURLs": [
5 "https://rdap.nic.家電/"
6 ],
47 "nameServers": [
58 "ns1.dns.nic.家電",
69 "ns2.dns.nic.家電",
00 {
11 "domain": "كوم",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.كوم",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--fhbei/v1/"
56 ],
6 "whoisServer": "whois.nic.كوم",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "中文网",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.teleinfo.cn",
3 "rdapURLs": [
4 "https://rdap.teleinfo.cn/xn--fiq228c5hs/"
45 ],
5 "whoisServer": "whois.teleinfo.cn",
66 "nameServers": [
77 "ns1.teleinfo.cn",
88 "ns2.teleinfoo.com",
99 "ns3.teleinfo.cn",
1010 "ns4.teleinfoo.com"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "中信",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.gtld.knet.cn",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--fiq64b/"
66 ],
7 "whoisServer": "whois.gtld.knet.cn",
87 "nameServers": [
98 "a.zdnscloud.com",
109 "b.zdnscloud.com",
1413 "g.zdnscloud.com",
1514 "i.zdnscloud.com",
1615 "j.zdnscloud.com"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "中国",
2 "infoURL": "http://cnnic.cn/",
23 "whoisServer": "cwhois.cnnic.cn",
34 "nameServers": [
45 "h.dns.cn",
1112 ],
1213 "wildcards": [
1314 "218.241.116.40"
15 ],
16 "languages": [
17 "zh-Hans-CN"
1418 ]
1519 }
00 {
11 "domain": "中國",
2 "tags": [
3 "geo"
4 ],
2 "infoURL": "http://cnnic.cn/",
53 "whoisServer": "cwhois.cnnic.cn",
64 "nameServers": [
75 "h.dns.cn",
1412 ],
1513 "wildcards": [
1614 "218.241.116.40"
15 ],
16 "languages": [
17 "zh-Hant-CN"
18 ],
19 "tags": [
20 "geo"
1721 ]
1822 }
11 "domain": "娱乐",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.娱乐",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
47 "nameServers": [
58 "demand.alpha.aridns.net.au",
69 "demand.beta.aridns.net.au",
00 {
11 "domain": "谷歌",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "భారత్",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
118 "ns4.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
11 ],
12 "languages": [
13 "te-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1418 ]
1519 }
00 {
11 "domain": "ලංකා",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.nic.lk",
63 "nameServers": [
74 "lk.communitydns.net",
129 "ns-t.nic.lk",
1310 "ns1.ac.lk",
1411 "ns3.ac.lk"
12 ],
13 "tags": [
14 "generic"
1515 ]
1616 }
00 {
11 "domain": "電訊盈科",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.電訊盈科",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/xn--fzys8d69uvgm/"
56 ],
6 "whoisServer": "whois.nic.電訊盈科",
77 "nameServers": [
88 "a0.nic.電訊盈科",
99 "a2.nic.電訊盈科",
1010 "b0.nic.電訊盈科",
1111 "c0.nic.電訊盈科"
12 ],
13 "tags": [
14 "generic"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "zh-CN",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--fzys8d69uvgm_zh-cn_4.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "zh-TW",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--fzys8d69uvgm_zh-tw_4.0.txt"
26 }
1227 ]
1328 }
00 {
11 "domain": "кызыл.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
11 "domain": "购物",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.购物",
4 "rdapURLs": [
5 "https://rdap.nic.购物/"
6 ],
47 "nameServers": [
58 "ns1.dns.nic.购物",
69 "ns2.dns.nic.购物",
00 {
11 "domain": "クラウド",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.クラウド",
4 "rdapURLs": [
5 "https://rdap.nic.クラウド/"
56 ],
6 "whoisServer": "whois.nic.クラウド",
77 "nameServers": [
88 "ns1.dns.nic.クラウド",
99 "ns2.dns.nic.クラウド",
1111 "ns4.dns.nic.クラウド",
1212 "ns5.dns.nic.クラウド",
1313 "ns6.dns.nic.クラウド"
14 ],
15 "tags": [
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "ભારત",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
118 "ns4.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
11 ],
12 "languages": [
13 "gu-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1418 ]
1519 }
11 "domain": "通販",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.通販",
4 "rdapURLs": [
5 "https://rdap.nic.通販/"
6 ],
47 "nameServers": [
58 "ns1.dns.nic.通販",
69 "ns2.dns.nic.通販",
00 {
11 "domain": "коми.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "иркутск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "минск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "мир.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "сочи.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "भारतम्",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "sa-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
00 {
11 "domain": "भारत",
2 "tags": [
3 "generic"
4 ],
2 "infoURL": "https://www.registry.in/",
53 "whoisServer": "whois.registry.in",
64 "nameServers": [
75 "ns1.registry.in",
108 "ns4.registry.in",
119 "ns5.registry.in",
1210 "ns6.registry.in"
11 ],
12 "languages": [
13 "hi-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1318 ]
1419 }
00 {
11 "domain": "भारोत",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "sat-Olck-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
11 "domain": "网店",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.网店",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--hxt814e/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
00 {
11 "domain": "संगठन",
22 "infoURL": "https://pir.org/products/hindi-domain/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.publicinterestregistry.net",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/xn--i1b6b1a6a2e/"
56 ],
6 "whoisServer": "whois.publicinterestregistry.net",
77 "nameServers": [
88 "a0.nic.संगठन",
99 "a2.nic.संगठन",
1010 "b0.nic.संगठन",
1111 "c0.nic.संगठन"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "餐厅",
22 "infoURL": "https://newgtlds.icann.org/",
3 "rdapURLs": [
4 "https://rdap.zdnsgtld.com/xn--imr513n/"
5 ],
36 "nameServers": [
47 "a.zdnscloud.com",
58 "b.zdnscloud.com",
912 "g.zdnscloud.com",
1013 "i.zdnscloud.com",
1114 "j.zdnscloud.com"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "zh-Hans",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--imr513n_zh-hans_1.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "zh-Hant",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--imr513n_zh-hant_1.0.txt"
26 }
1227 ]
1328 }
66 "c.ngtld.cn",
77 "d.ngtld.cn",
88 "e.ngtld.cn"
9 ],
10 "policies": [
11 {
12 "type": "idn-table",
13 "key": "zh-Hans",
14 "value": "https://www.iana.org/domains/idn-tables/tables/xn--io0a7i_zh-hans_4.1.txt"
15 }
916 ]
1017 }
00 {
11 "domain": "курск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "якутск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "омск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "томск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "мск.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ком",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ком",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--j1aef/v1/"
56 ],
6 "whoisServer": "whois.nic.ком",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
00 {
11 "domain": "ком.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "ком.рф",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.nameself.com",
74 "ns2.nameself.com"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "крым.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "укр",
2 "tags": [
3 "generic"
4 ],
2 "infoURL": "http://uanic.net/",
53 "whoisServer": "whois.dotukr.com",
64 "nameServers": [
75 "dns1.u-registry.com",
97 "dns3.dotukr.com",
108 "nsi.uanic.net",
119 "tier1.num.net.ua"
10 ],
11 "languages": [
12 "crh-UA",
13 "mul-Cyrl-UA",
14 "ru-UA",
15 "uk-UA"
16 ],
17 "tags": [
18 "country",
19 "generic",
20 "geo"
1221 ]
1322 }
99 "x.hkirc.net.hk",
1010 "y.hkirc.net.hk",
1111 "z.hkirc.net.hk"
12 ],
13 "languages": [
14 "zh-Hans-HK"
1215 ]
1316 }
00 {
11 "domain": "亚马逊",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic",
5 "withdrawn"
2 "infoURL": "http://nic.亚马逊/",
3 "whoisServer": "whois.nic.亚马逊",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/xn--jlq480n2rg/"
66 ],
7 "whoisServer": "whois.nic.亚马逊",
87 "nameServers": [
98 "dns1.nic.亚马逊",
109 "dns2.nic.亚马逊",
1413 "dnsb.nic.亚马逊",
1514 "dnsc.nic.亚马逊",
1615 "dnsd.nic.亚马逊"
16 ],
17 "tags": [
18 "brand",
19 "generic"
20 ],
21 "policies": [
22 {
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_da_2.2.txt"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_de_2.2.txt"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_es_2.2.txt"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_fi_2.2.txt"
41 },
42 {
43 "type": "idn-table",
44 "key": "hu",
45 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_hu_2.2.txt"
46 },
47 {
48 "type": "idn-table",
49 "key": "is",
50 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_is_2.2.txt"
51 },
52 {
53 "type": "idn-table",
54 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_ja_2.2.txt"
56 },
57 {
58 "type": "idn-table",
59 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_ko_2.2.txt"
61 },
62 {
63 "type": "idn-table",
64 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_lt_2.2.txt"
66 },
67 {
68 "type": "idn-table",
69 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_lv_2.2.txt"
71 },
72 {
73 "type": "idn-table",
74 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_no_2.2.txt"
76 },
77 {
78 "type": "idn-table",
79 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_pl_2.2.txt"
81 },
82 {
83 "type": "idn-table",
84 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_pt_2.2.txt"
86 },
87 {
88 "type": "idn-table",
89 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_ru_2.2.txt"
91 },
92 {
93 "type": "idn-table",
94 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_sv_2.2.txt"
96 },
97 {
98 "type": "idn-table",
99 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq480n2rg_zh_2.2.txt"
101 }
17102 ]
18103 }
00 {
11 "domain": "诺基亚",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.诺基亚",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/xn--jlq61u9w7b/"
56 ],
6 "whoisServer": "whois.nic.诺基亚",
77 "nameServers": [
88 "a0.nic.诺基亚",
99 "a2.nic.诺基亚",
1010 "b0.nic.诺基亚",
1111 "c0.nic.诺基亚"
12 ],
13 "tags": [
14 "generic"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "zh-CN",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq61u9w7b_zh-cn_4.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "zh-TW",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--jlq61u9w7b_zh-tw_4.0.txt"
26 }
1227 ]
1328 }
11 "domain": "食品",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.食品",
4 "rdapURLs": [
5 "https://rdap.nic.食品/"
6 ],
47 "nameServers": [
58 "ns1.dns.nic.食品",
69 "ns2.dns.nic.食品",
00 {
11 "domain": "орёл.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "飞利浦",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.飞利浦",
4 "rdapURLs": [
5 "https://rdap.nic.飞利浦/"
56 ],
6 "whoisServer": "whois.nic.飞利浦",
77 "nameServers": [
88 "a.nic.飞利浦",
99 "b.nic.飞利浦",
1010 "c.nic.飞利浦",
1111 "d.nic.飞利浦"
12 ],
13 "tags": [
14 "generic"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "zh",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--kcrx77d1x4a_zh_3.0.xml"
21 }
1222 ]
1323 }
77 "f.dns.tw",
88 "g.dns.tw",
99 "h.dns.tw"
10 ],
11 "languages": [
12 "zh-Hans-TW"
1013 ]
1114 }
77 "f.dns.tw",
88 "g.dns.tw",
99 "h.dns.tw"
10 ],
11 "languages": [
12 "zh-Hant-TW"
1013 ]
1114 }
11 "domain": "手机",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.手机",
4 "rdapURLs": [
5 "https://rdap.registrysystem.net/rdap/xn--kput3i/"
6 ],
47 "nameServers": [
58 "a0.nic.手机",
69 "a2.nic.手机",
710 "b0.nic.手机",
811 "c0.nic.手机"
12 ],
13 "policies": [
14 {
15 "type": "idn-table",
16 "key": "zh-CN",
17 "value": "https://www.iana.org/domains/idn-tables/tables/xn--kput3i_zh-cn_4.0.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "zh-TW",
22 "value": "https://www.iana.org/domains/idn-tables/tables/xn--kput3i_zh-tw_4.0.txt"
23 }
924 ]
1025 }
00 {
11 "domain": "мон",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "nameServers": [
74 "ns1.idn.mn",
85 "ns2.idn.mn",
96 "ns3.idn.mn"
7 ],
8 "tags": [
9 "generic"
1010 ],
1111 "policies": [
1212 {
00 {
11 "domain": "الجزائر",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.nic.dz",
74 "nameServers": [
85 "idn1.nic.dz",
96 "idn2.nic.dz"
7 ],
8 "tags": [
9 "generic"
1010 ]
1111 }
00 {
11 "domain": "нн.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
00 {
11 "domain": "عمان",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.registry.om",
74 "nameServers": [
85 "cctld.alpha.aridns.net.au",
118 "cctld.gamma.aridns.net.au",
129 "ns1.registry.om",
1310 "ns2.registry.om"
11 ],
12 "tags": [
13 "generic"
1414 ]
1515 }
00 {
11 "domain": "ارامكو",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ارامكو",
4 "rdapURLs": [
5 "https://rdap.nic.ارامكو/"
56 ],
6 "whoisServer": "whois.nic.ارامكو",
77 "nameServers": [
88 "ns1.dns.nic.ارامكو",
99 "ns2.dns.nic.ارامكو",
1111 "ns4.dns.nic.ارامكو",
1212 "ns5.dns.nic.ارامكو",
1313 "ns6.dns.nic.ارامكو"
14 ],
15 "tags": [
16 "generic"
17 ],
18 "policies": [
19 {
20 "type": "idn-table",
21 "key": "ar",
22 "value": "https://www.iana.org/domains/idn-tables/tables/xn--mgba3a3ejt_ar_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "es",
27 "value": "https://www.iana.org/domains/idn-tables/tables/xn--mgba3a3ejt_es_3.0.xml"
28 }
1429 ]
1530 }
00 {
11 "domain": "ایران",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.nic.ir",
63 "nameServers": [
74 "a.nic.ir",
85 "ns.irnic.ir"
6 ],
7 "tags": [
8 "generic"
99 ]
1010 }
00 {
11 "domain": "العليان",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.العليان",
4 "rdapURLs": [
5 "https://rdap.nic.العليان/"
56 ],
6 "whoisServer": "whois.nic.العليان",
77 "nameServers": [
88 "a.nic.العليان",
99 "b.nic.العليان",
1010 "c.nic.العليان",
1111 "d.nic.العليان"
12 ],
13 "tags": [
14 "generic"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--mgba7c0bbn0a_ar_3.0.xml"
21 }
1222 ]
1323 }
00 {
11 "domain": "اتصالات",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.centralnic.com",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/xn--mgbaakc7dvf/"
56 ],
6 "whoisServer": "whois.centralnic.com",
77 "nameServers": [
88 "a.nic.اتصالات",
99 "b.nic.اتصالات",
1010 "c.nic.اتصالات",
1111 "d.nic.اتصالات"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "امارات",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.aeda.net.ae",
63 "nameServers": [
74 "ns1.aedns.ae",
85 "ns2.aedns.ae",
96 "nsext-pch.aedns.ae"
7 ],
8 "languages": [
9 "ar-AE"
10 ],
11 "tags": [
12 "country",
13 "geo"
1014 ]
1115 }
00 {
11 "domain": "بازار",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.بازار",
3 "rdapURLs": [
4 "https://rdap.nic.بازار/"
45 ],
5 "whoisServer": "whois.nic.بازار",
66 "nameServers": [
77 "anycast10.irondns.net",
88 "anycast23.irondns.net",
99 "anycast24.irondns.net",
1010 "anycast9.irondns.net"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "الاردن",
2 "tags": [
3 "generic"
4 ],
52 "whoisURL": "http://idn.jo/whois_a.aspx",
63 "nameServers": [
74 "amra.nic.gov.jo",
96 "jordan1st.nic.gov.jo",
107 "petra.nic.gov.jo",
118 "rip.psg.com"
9 ],
10 "tags": [
11 "generic"
1212 ]
1313 }
00 {
11 "domain": "موبايلي",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.موبايلي",
34 "tags": [
45 "generic"
5 ],
6 "whoisServer": "whois.nic.موبايلي"
6 ]
77 }
00 {
11 "domain": "بارت",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "ks-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
00 {
11 "domain": "بھارت",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
118 "ns4.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
11 ],
12 "languages": [
13 "ur-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1418 ]
1519 }
00 {
11 "domain": "المغرب",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.iam.net.ma",
74 "nameServers": [
85 "a.tld.ma",
129 "e.tld.ma",
1310 "f.tld.ma",
1411 "ns-ma.nic.fr"
12 ],
13 "tags": [
14 "generic"
1515 ]
1616 }
00 {
11 "domain": "ابوظبي",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.ابوظبي",
4 "rdapURLs": [
5 "https://rdap.nic.ابوظبي/"
56 ],
6 "whoisServer": "whois.nic.ابوظبي",
77 "nameServers": [
88 "gtld.alpha.aridns.net.au",
99 "gtld.beta.aridns.net.au",
1010 "gtld.delta.aridns.net.au",
1111 "gtld.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
00 {
11 "domain": "السعودية",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.nic.net.sa",
63 "nameServers": [
74 "c1.dns.sa",
129 "s1.dns.sa",
1310 "s2.dns.sa"
1411 ],
12 "languages": [
13 "ar-SA"
14 ],
15 "tags": [
16 "country",
17 "geo"
18 ],
1519 "policies": [
1620 {
1721 "type": "idn-table",
00 {
11 "domain": "ڀارت",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "sd-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
00 {
11 "domain": "كاثوليك",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.كاثوليك",
4 "rdapURLs": [
5 "https://rdap.nic.كاثوليك/"
56 ],
6 "whoisServer": "whois.nic.كاثوليك",
77 "nameServers": [
88 "a.nic.كاثوليك",
99 "b.nic.كاثوليك",
1010 "c.nic.كاثوليك",
1111 "d.nic.كاثوليك"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
00 {
11 "domain": "سودان",
2 "tags": [
3 "generic"
4 ],
52 "nameServers": [
63 "ans1.sis.sd",
74 "pch.sis.sd"
5 ],
6 "tags": [
7 "generic"
88 ]
99 }
00 {
11 "domain": "همراه",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.همراه",
4 "rdapURLs": [
5 "https://api.rdap.agitsys.net/"
6 ],
7 "nameServers": [
8 "a.ns.nic.همراه",
9 "b.ns.nic.همراه",
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
512 ],
613 "locations": [
714 "Iran"
815 ],
9 "whoisServer": "whois.nic.همراه",
10 "nameServers": [
11 "a.ns.nic.همراه",
12 "b.ns.nic.همراه",
13 "ns.cocca.fr"
16 "tags": [
17 "generic"
1418 ]
1519 }
00 {
11 "domain": "مليسيا",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.mynic.my",
63 "nameServers": [
74 "a.mynic.centralnic-dns.com",
107 "b.mynic.centralnic-dns.com",
118 "c.mynic.centralnic-dns.com",
129 "d.mynic.centralnic-dns.com"
10 ],
11 "tags": [
12 "generic"
1313 ]
1414 }
11 "domain": "닷컴",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.닷컴",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--mk1bu44c/v1/"
6 ],
47 "nameServers": [
58 "ac1.nstld.com",
69 "ac2.nstld.com",
11 "domain": "政府",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.政府",
4 "rdapURLs": [
5 "https://rdap.twnic.tw/rdap/"
6 ],
47 "nameServers": [
58 "a.nic.政府",
69 "b.nic.政府",
00 {
11 "domain": "شبكة",
2 "infoURL": "http://www.dotshabaka.com/",
3 "tags": [
4 "generic"
2 "infoURL": "https://www.dotshabaka.com/",
3 "whoisServer": "whois.nic.شبكة",
4 "rdapURLs": [
5 "https://rdap.nic.شبكة/"
56 ],
6 "whoisServer": "whois.nic.شبكة",
77 "nameServers": [
88 "a.nic.شبكة",
99 "b.nic.شبكة",
1010 "c.nic.شبكة",
1111 "d.nic.شبكة"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "بيتك",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.بيتك",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/xn--ngbe9e0a/"
56 ],
6 "whoisServer": "whois.nic.بيتك",
77 "nameServers": [
88 "a.nic.بيتك",
99 "b.nic.بيتك",
1010 "c.nic.بيتك",
1111 "d.nic.بيتك"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "عرب",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.عرب",
4 "rdapURLs": [
5 "https://rdap.nic.عرب/"
56 ],
6 "whoisServer": "whois.nic.عرب",
77 "nameServers": [
88 "gtld.alpha.aridns.net.au",
99 "gtld.beta.aridns.net.au",
1010 "gtld.delta.aridns.net.au",
1111 "gtld.gamma.aridns.net.au"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
00 {
11 "domain": "机构",
22 "infoURL": "https://pir.org/products/chinese2char-domain/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.publicinterestregistry.net",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/xn--nqv7f/"
56 ],
6 "whoisServer": "whois.publicinterestregistry.net",
77 "nameServers": [
88 "a0.nic.机构",
99 "a2.nic.机构",
1010 "b0.nic.机构",
1111 "c0.nic.机构"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "组织机构",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.组织机构",
4 "rdapURLs": [
5 "https://rdap.publicinterestregistry.net/rdap/xn--nqv7fs00ema/"
56 ],
6 "whoisServer": "whois.nic.组织机构",
77 "nameServers": [
88 "a0.nic.组织机构",
99 "a2.nic.组织机构",
1010 "b0.nic.组织机构",
1111 "c0.nic.组织机构"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
11 "domain": "健康",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.健康",
4 "rdapURLs": [
5 "https://rdap.teleinfo.cn/xn--nyqy26a/"
6 ],
47 "nameServers": [
58 "ns1.teleinfo.cn",
69 "ns2.teleinfoo.com",
00 {
11 "domain": "ไทย",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.thnic.co.th",
63 "nameServers": [
74 "a.thains.co.th",
85 "b.thains.co.th",
96 "ns.thnic.net",
107 "p.thains.co.th"
8 ],
9 "tags": [
10 "generic"
1111 ]
1212 }
00 {
11 "domain": "سورية",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.tld.sy",
63 "nameServers": [
74 "ns1.tld.sy",
85 "pch.anycast.tld.sy",
96 "sy.cctld.authdns.ripe.net"
7 ],
8 "tags": [
9 "generic"
1010 ]
1111 }
00 {
11 "domain": "招聘",
22 "infoURL": "https://newgtlds.icann.org/",
3 "rdapURLs": [
4 "https://rdap.zdnsgtld.com/xn--otu796d/"
5 ],
36 "nameServers": [
47 "a.zdnscloud.com",
58 "b.zdnscloud.com",
912 "g.zdnscloud.com",
1013 "i.zdnscloud.com",
1114 "j.zdnscloud.com"
15 ],
16 "policies": [
17 {
18 "type": "idn-table",
19 "key": "zh-Hans",
20 "value": "https://www.iana.org/domains/idn-tables/tables/xn--otu796d_zh-hans_1.0.txt"
21 },
22 {
23 "type": "idn-table",
24 "key": "zh-Hant",
25 "value": "https://www.iana.org/domains/idn-tables/tables/xn--otu796d_zh-hant_1.0.txt"
26 }
1227 ]
1328 }
00 {
11 "domain": "рус",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.рус",
4 "rdapURLs": [
5 "https://api.rdap.nic.рус/"
6 ],
7 "nameServers": [
8 "ns1.anycastdns.cz",
9 "ns1.nic.рус",
10 "ns2.anycastdns.cz",
11 "ns2.nic.рус"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.nic.рус",
7 "nameServers": [
8 "ns.cocca.fr",
9 "ns1.nic.рус",
10 "ns2.nic.рус"
1115 ]
1216 }
00 {
11 "domain": "тур.рус",
2 "tags": [
3 "private"
4 ],
52 "nameServers": [
63 "ns1.rlnic.ru",
74 "ns2.rlnic.ru"
5 ],
6 "tags": [
7 "private"
88 ]
99 }
88 "e.dns.ripn.net",
99 "f.dns.ripn.net"
1010 ],
11 "languages": [
12 "ru-RU"
13 ],
14 "tags": [
15 "country",
16 "geo"
17 ],
1118 "policies": [
1219 {
1320 "type": "idn-table",
00 {
11 "domain": "تونس",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.ati.tn",
63 "nameServers": [
74 "ns-tn.afrinic.net",
107 "ns2.nic.fr",
118 "pch.ati.tn",
129 "rip.psg.com"
10 ],
11 "tags": [
12 "generic"
1313 ]
1414 }
11 "domain": "大拿",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.大拿",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--pssy2u/v1/"
6 ],
47 "nameServers": [
58 "ac1.nstld.com",
69 "ac2.nstld.com",
00 {
11 "domain": "みんな",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "グーグル",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "世界",
22 "whoisServer": "whois.nic.世界",
3 "rdapURLs": [
4 "https://rdap.teleinfo.cn/xn--rhqv96g/"
5 ],
36 "nameServers": [
47 "ns1.teleinfo.cn",
58 "ns2.teleinfoo.com",
11 "domain": "書籍",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.書籍",
4 "rdapURLs": [
5 "https://rdap.nic.書籍/"
6 ],
47 "nameServers": [
58 "ns1.dns.nic.書籍",
69 "ns2.dns.nic.書籍",
00 {
11 "domain": "ഭാരതം",
2 "infoURL": "https://www.registry.in/",
23 "whoisServer": "whois.registry.in",
34 "nameServers": [
45 "ns1.registry.in",
78 "ns4.registry.in",
89 "ns5.registry.in",
910 "ns6.registry.in"
11 ],
12 "languages": [
13 "ml-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1018 ]
1119 }
00 {
11 "domain": "ਭਾਰਤ",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
118 "ns4.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
11 ],
12 "languages": [
13 "pa-Guru-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1418 ]
1519 }
11 "domain": "网址",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.网址",
4 "rdapURLs": [
5 "https://rdap.zdnsgtld.com/xn--ses554g/"
6 ],
47 "nameServers": [
58 "a.zdnscloud.com",
69 "b.zdnscloud.com",
11 "domain": "닷넷",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.닷넷",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--t60b56a/v1/"
6 ],
47 "nameServers": [
58 "ac1.nstld.com",
69 "ac2.nstld.com",
00 {
11 "domain": "コム",
22 "whoisServer": "whois.nic.コム",
3 "rdapURLs": [
4 "https://tld-rdap.verisign.com/xn--tckwe/v1/"
5 ],
36 "nameServers": [
47 "ac1.nstld.com",
58 "ac2.nstld.com",
00 {
11 "domain": "天主教",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.天主教",
4 "rdapURLs": [
5 "https://rdap.nic.天主教/"
56 ],
6 "whoisServer": "whois.nic.天主教",
77 "nameServers": [
88 "a.nic.天主教",
99 "b.nic.天主教",
1010 "c.nic.天主教",
1111 "d.nic.天主教"
12 ],
13 "tags": [
14 "generic"
1215 ]
1316 }
00 {
11 "domain": "組織.tw",
2 "infoURL": "http://www.twnic.net.tw/"
2 "infoURL": "https://www.twnic.tw/"
33 }
11 "domain": "游戏",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.游戏",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
47 "nameServers": [
58 "demand.alpha.aridns.net.au",
69 "demand.beta.aridns.net.au",
00 {
11 "domain": "vermögensberater",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.vermögensberater",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/xn--vermgensberater-ctb/"
66 ],
7 "whoisServer": "whois.nic.vermögensberater",
87 "nameServers": [
98 "a.nic.vermögensberater",
109 "b.nic.vermögensberater",
1110 "c.nic.vermögensberater",
1211 "d.nic.vermögensberater"
12 ],
13 "tags": [
14 "closed",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "vermögensberatung",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "closed",
5 "generic"
3 "whoisServer": "whois.nic.vermögensberatung",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/xn--vermgensberatung-pwb/"
66 ],
7 "whoisServer": "whois.nic.vermögensberatung",
87 "nameServers": [
98 "a.nic.vermögensberatung",
109 "b.nic.vermögensberatung",
1110 "c.nic.vermögensberatung",
1211 "d.nic.vermögensberatung"
12 ],
13 "tags": [
14 "closed",
15 "generic"
1316 ],
1417 "policies": [
1518 {
11 "domain": "企业",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.企业",
4 "rdapURLs": [
5 "https://rdap.donuts.co/rdap/"
6 ],
47 "nameServers": [
58 "demand.alpha.aridns.net.au",
69 "demand.beta.aridns.net.au",
11 "domain": "信息",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.teleinfo.cn",
4 "rdapURLs": [
5 "https://rdap.teleinfo.cn/"
6 ],
47 "nameServers": [
58 "ns1.teleinfo.cn",
69 "ns2.teleinfoo.com",
00 {
11 "domain": "嘉里大酒店",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.嘉里大酒店",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--w4r85el8fhu5dnra/v1/"
56 ],
6 "whoisServer": "whois.nic.嘉里大酒店",
77 "nameServers": [
88 "ac1.nstld.com",
99 "ac2.nstld.com",
1010 "ac3.nstld.com",
1111 "ac4.nstld.com"
1212 ],
13 "tags": [
14 "generic"
15 ],
1316 "policies": [
1417 {
1518 "type": "idn-table",
11 "domain": "嘉里",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.nic.嘉里",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/xn--w4rs40l/v1/"
6 ],
47 "nameServers": [
58 "ac1.nstld.com",
69 "ac2.nstld.com",
00 {
11 "domain": "مصر",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.dotmasr.eg",
63 "nameServers": [
74 "ns1.dotmasr.eg",
85 "ns2.dotmasr.eg",
96 "ns3.dotmasr.eg"
7 ],
8 "languages": [
9 "ar-EG"
10 ],
11 "tags": [
12 "country",
13 "geo"
1014 ]
1115 }
00 {
11 "domain": "قطر",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.registry.qa",
63 "nameServers": [
74 "a.registry.qa",
1310 "g.registry.qa",
1411 "h.registry.qa",
1512 "i.registry.qa"
13 ],
14 "tags": [
15 "generic"
1616 ]
1717 }
77 "tc.ngtld.cn",
88 "td.ngtld.cn",
99 "te.ngtld.cn"
10 ],
11 "policies": [
12 {
13 "type": "idn-table",
14 "key": "zh-Hans",
15 "value": "https://www.iana.org/domains/idn-tables/tables/xn--xhq521b_zh-hans_4.1.txt"
16 }
1017 ]
1118 }
00 {
11 "domain": "இலங்கை",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
63 "whoisServer": "whois.nic.lk",
74 "nameServers": [
85 "lk.communitydns.net",
1310 "ns-t.nic.lk",
1411 "ns1.ac.lk",
1512 "ns3.ac.lk"
13 ],
14 "tags": [
15 "generic"
1616 ]
1717 }
00 {
11 "domain": "இந்தியா",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
5 ],
2 "infoURL": "https://www.registry.in/",
63 "whoisServer": "whois.registry.in",
74 "nameServers": [
85 "ns1.registry.in",
118 "ns4.registry.in",
129 "ns5.registry.in",
1310 "ns6.registry.in"
11 ],
12 "languages": [
13 "ta-IN"
14 ],
15 "tags": [
16 "country",
17 "geo"
1418 ]
1519 }
00 {
11 "domain": "հայ",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.amnic.net",
63 "nameServers": [
74 "fork.sth.dnsnode.net",
85 "ns-cdn.amnic.net",
96 "ns-pch.amnic.net",
107 "ns-pri.nic.am"
8 ],
9 "tags": [
10 "generic"
1111 ]
1212 }
00 {
11 "domain": "新加坡",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.sgnic.sg",
63 "nameServers": [
74 "dsany.sgnic.sg",
96 "dsany3.sgnic.sg",
107 "ns4.apnic.net",
118 "pch.sgzones.sg"
9 ],
10 "tags": [
11 "generic"
1212 ]
1313 }
00 {
11 "domain": "فلسطين",
2 "tags": [
3 "generic"
4 ],
52 "whoisServer": "whois.pnina.ps",
63 "nameServers": [
74 "dns1.gov.ps",
85 "dns3.gov.ps",
96 "idn.pnina.ps",
107 "ns1.pnina.ps"
8 ],
9 "tags": [
10 "generic"
1111 ]
1212 }
00 {
11 "domain": "網路.tw",
2 "infoURL": "http://www.twnic.net.tw/"
2 "infoURL": "https://www.twnic.tw/"
33 }
11 "domain": "政务",
22 "infoURL": "https://newgtlds.icann.org/",
33 "whoisServer": "whois.conac.cn",
4 "rdapURLs": [
5 "https://rdap.conac.cn/"
6 ],
47 "nameServers": [
58 "ns1.conac.cn",
69 "ns2.conac.cn",
00 {
11 "domain": "xperia",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.xperia",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.xperia",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "xxx",
2 "infoURL": "http://nic.xxx/",
3 "tags": [
4 "adult",
5 "generic"
2 "infoURL": "https://nic.xxx/",
3 "whoisServer": "whois.registrar.adult",
4 "rdapURLs": [
5 "https://whois.registrar.adult/rdap/"
66 ],
7 "whoisServer": "whois.registrar.adult",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns5.uniregistry.net",
1211 "ns6.uniregistry.info"
12 ],
13 "tags": [
14 "adult",
15 "generic"
1316 ],
1417 "policies": [
1518 {
2932 },
3033 {
3134 "type": "idn-table",
35 "key": "cnr",
36 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_cnr_1.0.txt"
37 },
38 {
39 "type": "idn-table",
3240 "key": "da",
3341 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_da_1.txt"
3442 },
4452 },
4553 {
4654 "type": "idn-table",
55 "key": "fr",
56 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_fr_1.0.txt"
57 },
58 {
59 "type": "idn-table",
4760 "key": "hu",
4861 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_hu_1.txt"
4962 },
5164 "type": "idn-table",
5265 "key": "is",
5366 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_is_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "it",
71 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_it_1.0.txt"
5472 },
5573 {
5674 "type": "idn-table",
7694 "type": "idn-table",
7795 "key": "pl",
7896 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_pl_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "pt",
101 "value": "https://www.iana.org/domains/idn-tables/tables/xxx_pt_1.0.txt"
79102 },
80103 {
81104 "type": "idn-table",
00 {
11 "domain": "xyz",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.xyz",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/xyz/"
45 ],
5 "whoisServer": "whois.nic.xyz",
66 "nameServers": [
77 "generationxyz.nic.xyz",
88 "x.nic.xyz",
99 "y.nic.xyz",
1010 "z.nic.xyz"
11 ],
12 "tags": [
13 "generic"
1114 ]
1215 }
00 {
11 "domain": "xyz.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "nameServers": [
44 "np-ns.npix.net.np",
55 "ns-ext.vix.com",
00 {
11 "domain": "yachts",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.yachts",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/yachts/"
6 ],
7 "nameServers": [
8 "a.nic.yachts",
9 "b.nic.yachts",
10 "c.nic.yachts",
11 "d.nic.yachts"
12 ],
313 "tags": [
414 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.yachts",
9 "a2.nic.yachts",
10 "b0.nic.yachts",
11 "c0.nic.yachts"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "yahoo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.yahoo",
4 "rdapURLs": [
5 "https://tld-rdap.verisign.com/yahoo/v1/"
66 ],
7 "whoisServer": "whois.nic.yahoo",
87 "nameServers": [
98 "ac1.nstld.com",
109 "ac2.nstld.com",
1110 "ac3.nstld.com",
1211 "ac4.nstld.com"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
1619 "type": "idn-table",
20 "key": "az",
21 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_az_2.5.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "be",
26 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_be_2.5.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bg",
31 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bg_2.5.txt"
32 },
33 {
34 "type": "idn-table",
1735 "key": "de",
18 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_de_1.txt"
36 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_de_2.5.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "el",
41 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_el_2.5.txt"
1942 },
2043 {
2144 "type": "idn-table",
2245 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_es_1.txt"
46 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_es_2.5.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "fr",
51 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_fr_2.5.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "hr",
56 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hr_2.5.txt"
2457 },
2558 {
2659 "type": "idn-table",
2760 "key": "ja",
28 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ja_1.0.txt"
61 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ja_2.5.txt"
2962 },
3063 {
3164 "type": "idn-table",
3265 "key": "ko",
33 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ko_1.txt"
66 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ko_2.5.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "ku",
71 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ku_2.5.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "mk",
76 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mk_2.5.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "mul-Armi",
81 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_armi_2.5.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "mul-Armn",
86 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_armn_2.5.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "mul-Avst",
91 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_avst_2.5.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "mul-Bali",
96 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bali_2.5.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "mul-Bamu",
101 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bamu_2.5.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "mul-Batk",
106 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_batk_2.5.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "mul-Beng",
111 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_beng_2.5.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "mul-Bopo",
116 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bopo_2.5.txt"
117 },
118 {
119 "type": "idn-table",
120 "key": "mul-Brah",
121 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_brah_2.5.txt"
122 },
123 {
124 "type": "idn-table",
125 "key": "mul-Bugi",
126 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bugi_2.5.txt"
127 },
128 {
129 "type": "idn-table",
130 "key": "mul-Buhd",
131 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_buhd_2.5.txt"
132 },
133 {
134 "type": "idn-table",
135 "key": "mul-Cans",
136 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cans_2.5.txt"
137 },
138 {
139 "type": "idn-table",
140 "key": "mul-Cari",
141 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cari_2.5.txt"
142 },
143 {
144 "type": "idn-table",
145 "key": "mul-Cham",
146 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cham_2.5.txt"
147 },
148 {
149 "type": "idn-table",
150 "key": "mul-Cher",
151 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cher_2.5.txt"
152 },
153 {
154 "type": "idn-table",
155 "key": "mul-Copt",
156 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_copt_2.5.txt"
157 },
158 {
159 "type": "idn-table",
160 "key": "mul-Cyrl",
161 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cyrl_2.5.txt"
162 },
163 {
164 "type": "idn-table",
165 "key": "mul-Deva",
166 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_deva_2.5.txt"
167 },
168 {
169 "type": "idn-table",
170 "key": "mul-Egyp",
171 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_egyp_2.5.txt"
172 },
173 {
174 "type": "idn-table",
175 "key": "mul-Ethi",
176 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ethi_2.5.txt"
177 },
178 {
179 "type": "idn-table",
180 "key": "mul-Geor",
181 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_geor_2.5.txt"
182 },
183 {
184 "type": "idn-table",
185 "key": "mul-Glag",
186 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_glag_2.5.txt"
187 },
188 {
189 "type": "idn-table",
190 "key": "mul-Grek",
191 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_grek_2.5.txt"
192 },
193 {
194 "type": "idn-table",
195 "key": "mul-Gujr",
196 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_gujr_2.5.txt"
197 },
198 {
199 "type": "idn-table",
200 "key": "mul-Guru",
201 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_guru_2.5.txt"
202 },
203 {
204 "type": "idn-table",
205 "key": "mul-Hang",
206 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hang_2.5.txt"
207 },
208 {
209 "type": "idn-table",
210 "key": "mul-Hani",
211 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hani_2.5.txt"
212 },
213 {
214 "type": "idn-table",
215 "key": "mul-Hano",
216 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hano_2.5.txt"
217 },
218 {
219 "type": "idn-table",
220 "key": "mul-Hebr",
221 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hebr_2.5.txt"
222 },
223 {
224 "type": "idn-table",
225 "key": "mul-Hira",
226 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hira_2.5.txt"
227 },
228 {
229 "type": "idn-table",
230 "key": "mul-Java",
231 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_java_2.5.txt"
232 },
233 {
234 "type": "idn-table",
235 "key": "mul-Kali",
236 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_kali_2.5.txt"
237 },
238 {
239 "type": "idn-table",
240 "key": "mul-Kana",
241 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_kana_2.5.txt"
242 },
243 {
244 "type": "idn-table",
245 "key": "mul-Khar",
246 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_khar_2.5.txt"
247 },
248 {
249 "type": "idn-table",
250 "key": "mul-Khmr",
251 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_khmr_2.5.txt"
252 },
253 {
254 "type": "idn-table",
255 "key": "mul-Knda",
256 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_knda_2.5.txt"
257 },
258 {
259 "type": "idn-table",
260 "key": "mul-Kthi",
261 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_kthi_2.5.txt"
262 },
263 {
264 "type": "idn-table",
265 "key": "mul-Lana",
266 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lana_2.5.txt"
267 },
268 {
269 "type": "idn-table",
270 "key": "mul-Laoo",
271 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_laoo_2.5.txt"
272 },
273 {
274 "type": "idn-table",
275 "key": "mul-Latn",
276 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_latn_2.5.txt"
277 },
278 {
279 "type": "idn-table",
280 "key": "mul-Lepc",
281 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lepc_2.5.txt"
282 },
283 {
284 "type": "idn-table",
285 "key": "mul-Limb",
286 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_limb_2.5.txt"
287 },
288 {
289 "type": "idn-table",
290 "key": "mul-Lisu",
291 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lisu_2.5.txt"
292 },
293 {
294 "type": "idn-table",
295 "key": "mul-Lyci",
296 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lyci_2.5.txt"
297 },
298 {
299 "type": "idn-table",
300 "key": "mul-Lydi",
301 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lydi_2.5.txt"
302 },
303 {
304 "type": "idn-table",
305 "key": "mul-Mand",
306 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mand_2.5.txt"
307 },
308 {
309 "type": "idn-table",
310 "key": "mul-Mlym",
311 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mlym_2.5.txt"
312 },
313 {
314 "type": "idn-table",
315 "key": "mul-Mong",
316 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mong_2.5.txt"
317 },
318 {
319 "type": "idn-table",
320 "key": "mul-Mtei",
321 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mtei_2.5.txt"
322 },
323 {
324 "type": "idn-table",
325 "key": "mul-Mymr",
326 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mymr_2.5.txt"
327 },
328 {
329 "type": "idn-table",
330 "key": "mul-Nkoo",
331 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_nkoo_2.5.txt"
332 },
333 {
334 "type": "idn-table",
335 "key": "mul-Ogam",
336 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ogam_2.5.txt"
337 },
338 {
339 "type": "idn-table",
340 "key": "mul-Olck",
341 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_olck_2.5.txt"
342 },
343 {
344 "type": "idn-table",
345 "key": "mul-Orkh",
346 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_orkh_2.5.txt"
347 },
348 {
349 "type": "idn-table",
350 "key": "mul-Orya",
351 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_orya_2.5.txt"
352 },
353 {
354 "type": "idn-table",
355 "key": "mul-Phag",
356 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_phag_2.5.txt"
357 },
358 {
359 "type": "idn-table",
360 "key": "mul-Phli",
361 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_phli_2.5.txt"
362 },
363 {
364 "type": "idn-table",
365 "key": "mul-Phnx",
366 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_phnx_2.5.txt"
367 },
368 {
369 "type": "idn-table",
370 "key": "mul-Prti",
371 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_prti_2.5.txt"
372 },
373 {
374 "type": "idn-table",
375 "key": "mul-Rjng",
376 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_rjng_2.5.txt"
377 },
378 {
379 "type": "idn-table",
380 "key": "mul-Runr",
381 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_runr_2.5.txt"
382 },
383 {
384 "type": "idn-table",
385 "key": "mul-Samr",
386 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_samr_2.5.txt"
387 },
388 {
389 "type": "idn-table",
390 "key": "mul-Sarb",
391 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sarb_2.5.txt"
392 },
393 {
394 "type": "idn-table",
395 "key": "mul-Saur",
396 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_saur_2.5.txt"
397 },
398 {
399 "type": "idn-table",
400 "key": "mul-Sinh",
401 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sinh_2.5.txt"
402 },
403 {
404 "type": "idn-table",
405 "key": "mul-Sund",
406 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sund_2.5.txt"
407 },
408 {
409 "type": "idn-table",
410 "key": "mul-Sylo",
411 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sylo_2.5.txt"
412 },
413 {
414 "type": "idn-table",
415 "key": "mul-Syrc",
416 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_syrc_2.5.txt"
417 },
418 {
419 "type": "idn-table",
420 "key": "mul-Tagb",
421 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tagb_2.5.txt"
422 },
423 {
424 "type": "idn-table",
425 "key": "mul-Tale",
426 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tale_2.5.txt"
427 },
428 {
429 "type": "idn-table",
430 "key": "mul-Talu",
431 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_talu_2.5.txt"
432 },
433 {
434 "type": "idn-table",
435 "key": "mul-Taml",
436 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_taml_2.5.txt"
437 },
438 {
439 "type": "idn-table",
440 "key": "mul-Tavt",
441 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tavt_2.5.txt"
442 },
443 {
444 "type": "idn-table",
445 "key": "mul-Telu",
446 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_telu_2.5.txt"
447 },
448 {
449 "type": "idn-table",
450 "key": "mul-Tfng",
451 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tfng_2.5.txt"
452 },
453 {
454 "type": "idn-table",
455 "key": "mul-Tglg",
456 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tglg_2.5.txt"
457 },
458 {
459 "type": "idn-table",
460 "key": "mul-Thaa",
461 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_thaa_2.5.txt"
462 },
463 {
464 "type": "idn-table",
465 "key": "mul-Thai",
466 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_thai_2.5.txt"
467 },
468 {
469 "type": "idn-table",
470 "key": "mul-Tibt",
471 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tibt_2.5.txt"
472 },
473 {
474 "type": "idn-table",
475 "key": "mul-Vaii",
476 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_vaii_2.5.txt"
477 },
478 {
479 "type": "idn-table",
480 "key": "mul-Xpeo",
481 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_xpeo_2.5.txt"
482 },
483 {
484 "type": "idn-table",
485 "key": "mul-Xsux",
486 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_xsux_2.5.txt"
487 },
488 {
489 "type": "idn-table",
490 "key": "mul-Yiii",
491 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_yiii_2.5.txt"
492 },
493 {
494 "type": "idn-table",
495 "key": "pl",
496 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_pl_2.5.txt"
497 },
498 {
499 "type": "idn-table",
500 "key": "ro",
501 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ro_2.5.txt"
34502 },
35503 {
36504 "type": "idn-table",
37505 "key": "ru",
38 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ru_1.txt"
506 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ru_2.5.txt"
507 },
508 {
509 "type": "idn-table",
510 "key": "sr",
511 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sr_2.5.txt"
512 },
513 {
514 "type": "idn-table",
515 "key": "sv",
516 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sv_2.5.txt"
517 },
518 {
519 "type": "idn-table",
520 "key": "uk",
521 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_uk_2.5.txt"
39522 },
40523 {
41524 "type": "idn-table",
42525 "key": "zh",
43 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_zh_1.txt"
526 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_zh_2.5.txt"
44527 }
45528 ]
46529 }
00 {
11 "domain": "yamaxun",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.yamaxun",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/yamaxun/"
66 ],
7 "whoisServer": "whois.nic.yamaxun",
87 "nameServers": [
98 "dns1.nic.yamaxun",
109 "dns2.nic.yamaxun",
1413 "dnsb.nic.yamaxun",
1514 "dnsc.nic.yamaxun",
1615 "dnsd.nic.yamaxun"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "yandex",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.yandex",
4 "rdapURLs": [
5 "https://rdap.nic.yandex/"
66 ],
7 "whoisServer": "whois.nic.yandex",
87 "nameServers": [
98 "ns1.uniregistry.net",
109 "ns2.uniregistry.info",
1110 "ns3.uniregistry.net",
1211 "ns4.uniregistry.info"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "ye",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "nameServers": [
83 "ns1.yemen.net.ye",
94 "ns2.yemen.net.ye",
105 "sah1.ye",
116 "sah2.ye"
7 ],
8 "tags": [
9 "closed",
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "yodobashi",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.gmo",
4 "rdapURLs": [
5 "https://rdap.gmoregistry.net/rdap/"
66 ],
7 "whoisServer": "whois.nic.gmo",
87 "nameServers": [
98 "a.gmoregistry.net",
109 "b.gmoregistry.net",
1110 "k.gmoregistry.net",
1211 "l.gmoregistry.net"
12 ],
13 "tags": [
14 "brand",
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "yoga",
22 "infoURL": "http://nic.yoga/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.yoga",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/yoga/"
56 ],
6 "whoisServer": "whois.nic.yoga",
77 "nameServers": [
88 "dns1.nic.yoga",
99 "dns2.nic.yoga",
1313 "dnsb.nic.yoga",
1414 "dnsc.nic.yoga",
1515 "dnsd.nic.yoga"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "yokohama",
2 "tags": [
3 "city",
4 "generic",
5 "geo"
2 "whoisServer": "whois.nic.yokohama",
3 "rdapURLs": [
4 "https://rdap.gmoregistry.net/rdap/"
65 ],
7 "locations": [
8 "Yokohama"
9 ],
10 "whoisServer": "whois.nic.yokohama",
116 "nameServers": [
127 "a.gmoregistry.net",
138 "b.gmoregistry.net",
149 "k.gmoregistry.net",
1510 "l.gmoregistry.net"
11 ],
12 "locations": [
13 "Yokohama"
14 ],
15 "tags": [
16 "city",
17 "generic",
18 "geo"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "you",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.you",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/you/"
56 ],
6 "whoisServer": "whois.nic.you",
77 "nameServers": [
88 "dns1.nic.you",
99 "dns2.nic.you",
1313 "dnsb.nic.you",
1414 "dnsc.nic.you",
1515 "dnsd.nic.you"
16 ],
17 "tags": [
18 "generic"
1619 ],
1720 "policies": [
1821 {
00 {
11 "domain": "youtube",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
66 ],
7 "whoisServer": "whois.nic.google",
87 "nameServers": [
98 "ns-tld1.charlestonroadregistry.com",
109 "ns-tld2.charlestonroadregistry.com",
1110 "ns-tld3.charlestonroadregistry.com",
1211 "ns-tld4.charlestonroadregistry.com",
1312 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "brand",
16 "generic"
1417 ],
1518 "policies": [
1619 {
00 {
11 "domain": "yt",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.nic.yt",
73 "nameServers": [
84 "d.nic.fr",
95 "e.ext.nic.fr",
106 "f.ext.nic.fr",
117 "g.ext.nic.fr"
8 ],
9 "tags": [
10 "country",
11 "geo"
1212 ]
1313 }
00 {
11 "domain": "yun",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.teleinfo.cn",
4 "rdapURLs": [
5 "https://rdap.teleinfo.cn/"
56 ],
6 "whoisServer": "whois.teleinfo.cn",
77 "nameServers": [
88 "ns1.teleinfo.cn",
99 "ns2.teleinfoo.com",
1010 "ns3.teleinfo.cn",
1111 "ns4.teleinfoo.com"
12 ],
13 "tags": [
14 "generic"
1215 ],
1316 "policies": [
1417 {
00 {
11 "domain": "za.com",
2 "tags": [
3 "private"
2 "whoisServer": "whois.centralnic.com",
3 "rdapURLs": [
4 "https://rdap.centralnic.com/za.com/"
45 ],
5 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
77 "ns1.centralnic.net",
88 "ns2.centralnic.net",
1111 ],
1212 "wildcards": [
1313 "141.8.226.34"
14 ],
15 "tags": [
16 "private"
1417 ]
1518 }
00 {
11 "domain": "za",
2 "tags": [
3 "closed",
4 "country",
5 "geo"
6 ],
72 "whoisServer": "whois.nic.za",
83 "nameServers": [
94 "nsza.is.co.za",
105 "za-ns.anycast.pch.net",
116 "za1.dnsnode.net"
7 ],
8 "tags": [
9 "closed",
10 "country",
11 "geo"
1212 ],
1313 "policies": [
1414 {
00 {
11 "domain": "zappos",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.nic.zappos",
4 "rdapURLs": [
5 "https://rdap.nominet.uk/zappos/"
66 ],
7 "whoisServer": "whois.nic.zappos",
87 "nameServers": [
98 "dns1.nic.zappos",
109 "dns2.nic.zappos",
1413 "dnsb.nic.zappos",
1514 "dnsc.nic.zappos",
1615 "dnsd.nic.zappos"
16 ],
17 "tags": [
18 "brand",
19 "generic"
1720 ],
1821 "policies": [
1922 {
00 {
11 "domain": "zara",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "brand",
5 "generic"
3 "whoisServer": "whois.afilias-srs.net",
4 "rdapURLs": [
5 "https://rdap.afilias-srs.net/rdap/zara/"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
87 "nameServers": [
98 "a0.nic.zara",
109 "a2.nic.zara",
1110 "b0.nic.zara",
1211 "c0.nic.zara"
1312 ],
13 "tags": [
14 "brand",
15 "generic"
16 ],
1417 "policies": [
1518 {
16 "type": "idn-disallowed"
19 "type": "idn-table",
20 "key": "be",
21 "value": "https://www.iana.org/domains/idn-tables/tables/zara_be_1.txt"
22 },
23 {
24 "type": "idn-table",
25 "key": "bg",
26 "value": "https://www.iana.org/domains/idn-tables/tables/zara_bg_1.txt"
27 },
28 {
29 "type": "idn-table",
30 "key": "bs",
31 "value": "https://www.iana.org/domains/idn-tables/tables/zara_bs_1.txt"
32 },
33 {
34 "type": "idn-table",
35 "key": "da",
36 "value": "https://www.iana.org/domains/idn-tables/tables/zara_da_1.txt"
37 },
38 {
39 "type": "idn-table",
40 "key": "de",
41 "value": "https://www.iana.org/domains/idn-tables/tables/zara_de_1.txt"
42 },
43 {
44 "type": "idn-table",
45 "key": "es",
46 "value": "https://www.iana.org/domains/idn-tables/tables/zara_es_1.txt"
47 },
48 {
49 "type": "idn-table",
50 "key": "hu",
51 "value": "https://www.iana.org/domains/idn-tables/tables/zara_hu_1.txt"
52 },
53 {
54 "type": "idn-table",
55 "key": "is",
56 "value": "https://www.iana.org/domains/idn-tables/tables/zara_is_1.txt"
57 },
58 {
59 "type": "idn-table",
60 "key": "ko",
61 "value": "https://www.iana.org/domains/idn-tables/tables/zara_ko_1.txt"
62 },
63 {
64 "type": "idn-table",
65 "key": "lt",
66 "value": "https://www.iana.org/domains/idn-tables/tables/zara_lt_1.txt"
67 },
68 {
69 "type": "idn-table",
70 "key": "lv",
71 "value": "https://www.iana.org/domains/idn-tables/tables/zara_lv_1.txt"
72 },
73 {
74 "type": "idn-table",
75 "key": "mk",
76 "value": "https://www.iana.org/domains/idn-tables/tables/zara_mk_1.txt"
77 },
78 {
79 "type": "idn-table",
80 "key": "pl",
81 "value": "https://www.iana.org/domains/idn-tables/tables/zara_pl_1.txt"
82 },
83 {
84 "type": "idn-table",
85 "key": "ru",
86 "value": "https://www.iana.org/domains/idn-tables/tables/zara_ru_1.txt"
87 },
88 {
89 "type": "idn-table",
90 "key": "sr",
91 "value": "https://www.iana.org/domains/idn-tables/tables/zara_sr_1.txt"
92 },
93 {
94 "type": "idn-table",
95 "key": "sr-ME",
96 "value": "https://www.iana.org/domains/idn-tables/tables/zara_sr-me_1.txt"
97 },
98 {
99 "type": "idn-table",
100 "key": "sv",
101 "value": "https://www.iana.org/domains/idn-tables/tables/zara_sv_1.txt"
102 },
103 {
104 "type": "idn-table",
105 "key": "uk",
106 "value": "https://www.iana.org/domains/idn-tables/tables/zara_uk_1.txt"
107 },
108 {
109 "type": "idn-table",
110 "key": "zh-CN",
111 "value": "https://www.iana.org/domains/idn-tables/tables/zara_zh-cn_4.0.txt"
112 },
113 {
114 "type": "idn-table",
115 "key": "zh-TW",
116 "value": "https://www.iana.org/domains/idn-tables/tables/zara_zh-tw_4.0.txt"
17117 }
18118 ]
19119 }
00 {
11 "domain": "zero",
22 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.zero",
4 "rdapURLs": [
5 "https://rdap.nic.zero/"
56 ],
6 "whoisServer": "whois.nic.zero",
77 "nameServers": [
88 "ns1.dns.nic.zero",
99 "ns2.dns.nic.zero",
1212 "ns5.dns.nic.zero",
1313 "ns6.dns.nic.zero"
1414 ],
15 "tags": [
16 "generic"
17 ],
1518 "policies": [
1619 {
1720 "type": "idn-table",
1821 "key": "ar",
19 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ar_2.1.txt"
22 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ar_3.0.xml"
2023 },
2124 {
2225 "type": "idn-table",
2326 "key": "da",
24 "value": "https://www.iana.org/domains/idn-tables/tables/zero_da_2.1.txt"
27 "value": "https://www.iana.org/domains/idn-tables/tables/zero_da_3.0.xml"
2528 },
2629 {
2730 "type": "idn-table",
2831 "key": "de",
29 "value": "https://www.iana.org/domains/idn-tables/tables/zero_de_2.1.txt"
32 "value": "https://www.iana.org/domains/idn-tables/tables/zero_de_3.0.xml"
3033 },
3134 {
3235 "type": "idn-table",
3336 "key": "es",
34 "value": "https://www.iana.org/domains/idn-tables/tables/zero_es_2.1.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/zero_es_3.0.xml"
3538 },
3639 {
3740 "type": "idn-table",
3841 "key": "fi",
39 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fi_2.1.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fi_3.0.xml"
4043 },
4144 {
4245 "type": "idn-table",
4346 "key": "fr",
44 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fr_2.1.txt"
47 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fr_3.0.xml"
4548 },
4649 {
4750 "type": "idn-table",
4851 "key": "hu",
49 "value": "https://www.iana.org/domains/idn-tables/tables/zero_hu_2.1.txt"
52 "value": "https://www.iana.org/domains/idn-tables/tables/zero_hu_3.0.xml"
5053 },
5154 {
5255 "type": "idn-table",
5356 "key": "is",
54 "value": "https://www.iana.org/domains/idn-tables/tables/zero_is_2.1.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/zero_is_3.0.xml"
5558 },
5659 {
5760 "type": "idn-table",
5861 "key": "ja",
59 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ja_2.1.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ja_3.0.xml"
6063 },
6164 {
6265 "type": "idn-table",
6366 "key": "ko",
64 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ko_2.1.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ko_3.0.xml"
6568 },
6669 {
6770 "type": "idn-table",
6871 "key": "lt",
69 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lt_2.1.txt"
72 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lt_3.0.xml"
7073 },
7174 {
7275 "type": "idn-table",
7376 "key": "lv",
74 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lv_2.1.txt"
77 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lv_3.0.xml"
7578 },
7679 {
7780 "type": "idn-table",
7881 "key": "no",
79 "value": "https://www.iana.org/domains/idn-tables/tables/zero_no_2.1.txt"
82 "value": "https://www.iana.org/domains/idn-tables/tables/zero_no_3.0.xml"
8083 },
8184 {
8285 "type": "idn-table",
8386 "key": "pl",
84 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pl_2.1.txt"
87 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pl_3.0.xml"
8588 },
8689 {
8790 "type": "idn-table",
8891 "key": "pt",
89 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pt_2.1.txt"
92 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pt_3.0.xml"
9093 },
9194 {
9295 "type": "idn-table",
9396 "key": "ru",
94 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ru_2.1.txt"
97 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ru_3.0.xml"
9598 },
9699 {
97100 "type": "idn-table",
98101 "key": "sv",
99 "value": "https://www.iana.org/domains/idn-tables/tables/zero_sv_2.1.txt"
102 "value": "https://www.iana.org/domains/idn-tables/tables/zero_sv_3.0.xml"
100103 },
101104 {
102105 "type": "idn-table",
103106 "key": "zh",
104 "value": "https://www.iana.org/domains/idn-tables/tables/zero_zh_2.1.txt"
107 "value": "https://www.iana.org/domains/idn-tables/tables/zero_zh_3.0.xml"
105108 }
106109 ]
107110 }
00 {
11 "domain": "zip",
22 "infoURL": "https://www.registry.google/",
3 "tags": [
4 "generic"
3 "whoisServer": "whois.nic.google",
4 "rdapURLs": [
5 "https://www.registry.google/rdap/"
56 ],
6 "whoisServer": "whois.nic.google",
77 "nameServers": [
88 "ns-tld1.charlestonroadregistry.com",
99 "ns-tld2.charlestonroadregistry.com",
1010 "ns-tld3.charlestonroadregistry.com",
1111 "ns-tld4.charlestonroadregistry.com",
1212 "ns-tld5.charlestonroadregistry.com"
13 ],
14 "tags": [
15 "generic"
1316 ],
1417 "policies": [
1518 {
00 {
11 "domain": "zippo",
22 "infoURL": "https://newgtlds.icann.org/",
3 "whoisServer": "whois.nic.zippo",
34 "tags": [
45 "brand",
56 "generic"
67 ],
7 "whoisServer": "whois.nic.zippo",
88 "policies": [
99 {
1010 "type": "idn-disallowed"
00 {
11 "domain": "zm",
2 "tags": [
3 "country",
4 "geo"
5 ],
62 "whoisServer": "whois.zicta.zm",
73 "nameServers": [
84 "cocca.nic.zm",
95 "gransy.nic.zm",
106 "pch.nic.zm"
7 ],
8 "tags": [
9 "country",
10 "geo"
1111 ],
1212 "policies": [
1313 {
00 {
11 "domain": "zone",
2 "tags": [
3 "generic"
2 "whoisServer": "whois.nic.zone",
3 "rdapURLs": [
4 "https://rdap.donuts.co/rdap/"
45 ],
5 "whoisServer": "whois.nic.zone",
66 "nameServers": [
77 "demand.alpha.aridns.net.au",
88 "demand.beta.aridns.net.au",
99 "demand.delta.aridns.net.au",
1010 "demand.gamma.aridns.net.au"
11 ],
12 "tags": [
13 "generic"
1114 ],
1215 "policies": [
1316 {
00 {
11 "domain": "zone.np",
2 "infoURL": "https://register.com.np",
2 "infoURL": "https://register.com.np/",
33 "policies": [
44 {
55 "type": "idn-disallowed"
00 {
11 "domain": "zuerich",
2 "infoURL": "https://newgtlds.icann.org/",
3 "tags": [
4 "city",
5 "generic",
6 "geo"
2 "infoURL": "http://nic.zuerich/",
3 "whoisServer": "whois.nic.zuerich",
4 "rdapURLs": [
5 "https://rdap.centralnic.com/zuerich/"
76 ],
8 "locations": [
9 "Zurich",
10 "CH-ZH"
11 ],
12 "whoisServer": "whois.nic.zuerich",
137 "nameServers": [
148 "a.nic.zuerich",
159 "b.nic.zuerich",
1610 "c.nic.zuerich",
1711 "d.nic.zuerich"
1812 ],
19 "policies": [
20 {
21 "type": "idn-disallowed"
22 }
13 "locations": [
14 "Zurich",
15 "CH-ZH"
16 ],
17 "languages": [
18 "de-CH"
19 ],
20 "tags": [
21 "city",
22 "generic",
23 "geo"
2324 ]
2425 }
00 {
11 "domain": "zw",
2 "whoisURL": "http://www.zispa.org.zw/",
3 "nameServers": [
4 "ns1.liquidtelecom.net",
5 "ns1zim.telone.co.zw",
6 "ns2.liquidtelecom.net",
7 "ns2zim.telone.co.zw",
8 "zw-ns.anycast.pch.net"
9 ],
210 "tags": [
311 "country",
412 "geo"
5 ],
6 "whoisURL": "http://www.zispa.org.zw",
7 "nameServers": [
8 "ns1.liquidtelecom.net",
9 "ns1.telone.co.zw",
10 "ns1zim.telone.co.zw",
11 "ns2.liquidtelecom.net",
12 "ns2.telone.co.zw",
13 "ns2zim.telone.co.zw",
14 "zw-ns.anycast.pch.net"
1513 ],
1614 "policies": [
1715 {
99 // comparing the result to zero. Returns true if any
1010 // tags match q.
1111 func (tags Tags) And(q Tags) bool {
12 if (tags & q) != 0 {
13 return true
14 }
15 return false
12 return (tags & q) != 0
1613 }
1714
1815 // String returns a space-delimited list of values for tags.
3936 // Slice of subdomain (child) Zones (nil if empty)
4037 Subdomains []Zone
4138
42 // CodePoints is deprecated and IDNTables has been removed. We searched for public code
43 // on GitHub that imported the zonedb package and found no packages using these symbols.
44 // CodePoints []rune
39 // Tags stored as an integer bit field
40 Tags Tags
41
42 // Informational URL for this Zone
43 InfoURL string
4544
4645 // DNS name servers for the Zone
4746 NameServers []string
5251 // Locations associated with the Zone
5352 Locations []string
5453
54 // BCP 47 language tags associated with this Zone
55 // https://tools.ietf.org/html/bcp47
56 languages []string
57
5558 // Whois server responding on port 43
5659 whoisServer string
5760
5861 // URL to look up whois info for a subdomain of this Zone
5962 whoisURL string
6063
61 // Informational URL for this Zone
62 InfoURL string
63
64 // Tags stored as an integer bit field
65 Tags Tags
66
6764 // Transitional: does the zone operator allow registration of non-ASCII subdomains?
6865 allowsIDN bool
66 }
67
68 // Languages returns a slice of BCP 47 language specifiers.
69 func (z *Zone) Languages() []string {
70 return z.languages
6971 }
7072
7173 // WhoisServer returns the whois server that responds on port 43
00 package zonedb
11
22 import (
3 "fmt"
3 "reflect"
44 "testing"
55 "unsafe"
66
1818 t.Logf("sizeof Zone = %d", unsafe.Sizeof(z))
1919 }
2020
21 func TestTLDs(t *testing.T) {
22 t.Logf("%d top-level domains (%s to %s)", len(TLDs), TLDs[0].Domain, TLDs[len(TLDs)-1].Domain)
23 }
21 func TestLanguages(t *testing.T) {
22 tests := []struct {
23 domain string
24 want []string
25 }{
26 {"com", nil},
27 {"中国", []string{"zh-Hans-CN"}},
28 {"中國", []string{"zh-Hant-CN"}},
29 {"台湾", []string{"zh-Hans-TW"}},
30 {"台灣", []string{"zh-Hant-TW"}},
31 {"香港", []string{"zh-Hans-HK"}},
32 }
2433
25 func TestTags(t *testing.T) {
26 if numTags != len(TagStrings) {
27 t.Errorf("numTags (%d) != len(TagStrings) (%d)", numTags, len(TagStrings))
28 }
29 if len(TagStrings) != len(TagValues) {
30 t.Errorf("len(TagStrings) (%d) != len(TagValues) (%d)", len(TagStrings), len(TagValues))
34 for _, tt := range tests {
35 t.Run(tt.domain, func(t *testing.T) {
36 domain := ToASCII(tt.domain)
37 z := ZoneMap[domain]
38 got := z.languages
39 if !reflect.DeepEqual(tt.want, got) {
40 t.Errorf("Zone.Language(), got: %v, want: %v", got, tt.want)
41 }
42 })
3143 }
3244 }
33
34 func TestTags_And(t *testing.T) {
35 var tags Tags
36 tags = TagGeneric | TagCountry
37 if tags.And(TagGeneric) != true {
38 t.Errorf("tags.And(TagGeneric) != true")
39 }
40 if tags.And(TagCountry) != true {
41 t.Errorf("tags.And(TagCountry) != true")
42 }
43 if tags.And(TagAdult) != false {
44 t.Errorf("tags.And(TagAdult) != false")
45 }
46 if tags.And(0) != false {
47 t.Errorf("tags.And(0) != false")
48 }
49 }
50
51 func ExampleTags_And() {
52 var z *Zone
53 z = ZoneMap["bananarepublic"]
54 fmt.Println(z.Tags.And(TagBrand | TagGeo))
55 // Output: true
56 }
57
58 func TestTags_String(t *testing.T) {
59 tests := map[Tags]string{
60 (TagGeneric): "generic",
61 (TagWithdrawn): "withdrawn",
62 (TagCountry | TagGeo): "country geo",
63 (TagCountry | TagGeo | TagSponsored): "country geo sponsored",
64 (TagAdult | TagGeo | TagInfrastructure): "adult geo infrastructure",
65 }
66 for tags, v := range tests {
67 g := tags.String()
68 if g != v {
69 t.Errorf(`Expected tags.String() == %q, got %q`, v, g)
70 }
71 }
72 }
73
74 func ExampleTags_String() {
75 var z *Zone
76 z = ZoneMap["aero"]
77 fmt.Println(z.Tags.String())
78 // Output: generic sponsored
79 }
80
81 func TestZone_WhoisServer(t *testing.T) {
82 tests := map[string]string{
83 "com": ZoneMap["net"].WhoisServer(),
84 "er": "",
85 "uk.com": ZoneMap["us.com"].WhoisServer(),
86 "com.er": "",
87 "ac.uk": ZoneMap["gov.uk"].WhoisServer(),
88 "co.uk": ZoneMap["uk"].WhoisServer(),
89 "org.uk": ZoneMap["uk"].WhoisServer(),
90 }
91 for k, v := range tests {
92 g := ZoneMap[k].WhoisServer()
93 if g != v {
94 t.Errorf(`Expected Zones[%q].WhoisServer() == %q, got %q`, k, v, g)
95 }
96 }
97 }
98
99 func TestZone_WhoisURL(t *testing.T) {
100 tests := map[string]string{
101 "com": "",
102 "net": "",
103 "org": "",
104 "co.az": ZoneMap["az"].WhoisURL(),
105 }
106 for k, v := range tests {
107 g := ZoneMap[k].WhoisURL()
108 if g != v {
109 t.Errorf(`Expected Zones[%q].WhoisURL() == %q, got %q`, k, v, g)
110 }
111 }
112 }
113
114 func TestZone_IsTLD(t *testing.T) {
115 tests := map[string]bool{
116 "com": true,
117 "um": true,
118 "co.uk": false,
119 "org.br": false,
120 }
121 for k, v := range tests {
122 g := ZoneMap[k].IsTLD()
123 if g != v {
124 t.Errorf(`Expected Zones[%q].IsTLD() == %t, got %t`, k, v, g)
125 }
126 }
127 }
128
129 func TestZone_IsDelegated(t *testing.T) {
130 tests := map[string]bool{
131 "com": true,
132 "um": false,
133 "yu": false,
134 "co.uk": true,
135 "org.za": true,
136 "db.za": false,
137 }
138 for k, v := range tests {
139 g := ZoneMap[k].IsDelegated()
140 if g != v {
141 t.Errorf(`Expected Zones[%q].IsDelegated() == %t, got %t`, k, v, g)
142 }
143 }
144 }
145
146 func TestZone_IsInRootZone(t *testing.T) {
147 tests := map[string]bool{
148 "com": true,
149 "net": true,
150 "org": true,
151 "um": false,
152 "yu": false,
153 "co.uk": false,
154 "org.br": false,
155 }
156 for k, v := range tests {
157 g := ZoneMap[k].IsInRootZone()
158 if g != v {
159 t.Errorf(`Expected Zones[%q].IsInRootZone() == %t, got %t`, k, v, g)
160 }
161 }
162 }
163
164 func TestZone_AllowsIDN(t *testing.T) {
165 data := map[string]bool{
166 "com": true,
167 "net": true,
168 "org": true,
169 "aero": false,
170 "co.uk": false,
171 }
172 for k, v := range data {
173 g := ZoneMap[k].AllowsIDN()
174 if g != v {
175 t.Errorf(`Expected Zones[%q].AllowsIDN() == %t, got %t`, k, v, g)
176 }
177 }
178 }
179
180 func TestZone_AllowsRegistration(t *testing.T) {
181 tests := map[string]bool{
182 "com": true,
183 "net": true,
184 "org": true,
185 "ck": false,
186 "yu": false,
187 "arpa": false,
188 "cadillac": false,
189 "amazon": false,
190 "co.uk": true,
191 "in-addr.arpa": false,
192 }
193 for k, v := range tests {
194 g := ZoneMap[k].AllowsRegistration()
195 if g != v {
196 t.Errorf(`Expected Zones[%q].AllowsRegistration() == %t, got %t`, k, v, g)
197 }
198 }
199 }
200
201 func TestIsZone(t *testing.T) {
202 tests := map[string]bool{
203 "com": true,
204 "um": true,
205 "xn--node": true,
206 "co.uk": true,
207 "org.br": true,
208 "hashtag-not-a-zone": false,
209 }
210 for k, v := range tests {
211 g := IsZone(k)
212 if g != v {
213 t.Errorf(`Expected IsZone(%q) == %t, got %t`, k, v, g)
214 }
215 }
216 }
217
218 func TestIsTLD(t *testing.T) {
219 tests := map[string]bool{
220 "com": true,
221 "um": true,
222 "xn--node": true,
223 "co.uk": false,
224 "org.br": false,
225 "hashtag-not-a-zone": false,
226 }
227 for k, v := range tests {
228 g := IsTLD(k)
229 if g != v {
230 t.Errorf(`Expected IsTLD(%q) == %t, got %t`, k, v, g)
231 }
232 }
233 }
234
235 func TestPublicZone(t *testing.T) {
236 tests := map[string]*Zone{
237 "com": ZoneMap["com"],
238 ".com": ZoneMap["com"],
239 "foobar.com": ZoneMap["com"],
240 "acme.co.uk": ZoneMap["co.uk"],
241 "brazil.com.br": ZoneMap["com.br"],
242 "foo.xn--node": ZoneMap["xn--node"],
243 "unknown.": nil,
244 "COM": nil,
245 "bar.გე": nil,
246 }
247 for k, v := range tests {
248 g := PublicZone(k)
249 if g != v {
250 t.Errorf(`Expected List.PublicSuffix(%q) == %v, got %v`, k, v, g)
251 }
252 }
253 }
254
255 func TestList_PublicSuffix(t *testing.T) {
256 tests := map[string]string{
257 "com": "com",
258 ".com": "com",
259 "foobar.com": "com",
260 "foo.xn--node": "xn--node",
261 "acme.co.uk": "co.uk",
262 "brazil.com.br": "com.br",
263 "unknown.": "unknown.",
264 "COM": "COM",
265 "bar.გე": "bar.გე",
266 }
267 for k, v := range tests {
268 g := List.PublicSuffix(k)
269 if g != v {
270 t.Errorf(`Expected List.PublicSuffix(%q) == %q, got %q`, k, v, g)
271 }
272 }
273 }
274
275 func BenchmarkInitAllocs(b *testing.B) {
276 b.ReportAllocs()
277 for i := 0; i < b.N; i++ {
278 initZones()
279 }
280 }
+5204
-10351
zones.go less more
77
88 func initZones() {
99 z = y
10 ZoneMap = make(map[string]*Zone, len(z))
11 for i := range z {
12 ZoneMap[z[i].Domain] = &z[i]
13 }
1014 }
1115
12 // Type s is an alias for []string to generate smaller source code
13 type s []string
16 // Type w is an alias for []string to generate smaller source code
17 type w []string
1418
1519 // Constants to generate smaller source code
1620 const (
8488 "withdrawn": TagWithdrawn,
8589 }
8690
91 // ZoneMap maps domain names to Zones.
92 var ZoneMap map[string]*Zone
93
8794 // Zones is a slice of all Zones in the database.
8895 var Zones = z[:]
8996
9097 // TLDs is a slice of all top-level domain Zones.
91 var TLDs = z[:1753]
98 var TLDs = z[:1754]
9299
93100 // z is a static array of Zones.
94101 // Other global variables have pointers into this array.
95 var z [5171]Zone
102 var z [5192]Zone
96103
97104 // y and z are separated to fix circular references.
98 var y = [5171]Zone{
99 {"aaa", r, x, s{"ns1.dns.nic.aaa", "ns2.dns.nic.aaa", "ns3.dns.nic.aaa", "ns4.dns.nic.aaa", "ns5.dns.nic.aaa", "ns6.dns.nic.aaa"}, n, n, "whois.nic.aaa", e, "https://newgtlds.icann.org/", 0x42, f},
100 {"aarp", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.aarp", e, "https://newgtlds.icann.org/", 0x42, t},
101 {"abarth", r, x, s{"a0.nic.abarth", "a2.nic.abarth", "b0.nic.abarth", "c0.nic.abarth"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
102 {"abb", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
103 {"abbott", r, x, s{"a0.nic.abbott", "a2.nic.abbott", "b0.nic.abbott", "c0.nic.abbott"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
104 {"abbvie", r, x, s{"a0.nic.abbvie", "a2.nic.abbvie", "b0.nic.abbvie", "c0.nic.abbvie"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
105 {"abc", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.abc", e, "https://newgtlds.icann.org/", 0x42, f},
106 {"able", r, x, s{"ns1.dns.nic.able", "ns2.dns.nic.able", "ns3.dns.nic.able", "ns4.dns.nic.able", "ns5.dns.nic.able", "ns6.dns.nic.able"}, n, n, "whois.nic.able", e, "https://newgtlds.icann.org/", 0x42, f},
107 {"abogado", r, x, s{"dns1.nic.abogado", "dns2.nic.abogado", "dns3.nic.abogado", "dns4.nic.abogado", "dnsa.nic.abogado", "dnsb.nic.abogado", "dnsc.nic.abogado", "dnsd.nic.abogado"}, n, n, "whois.nic.abogado", e, "http://nic.abogado/", 0x40, t},
108 {"abudhabi", r, x, s{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, s{"Abu Dhabi", "AE-AZ"}, "whois.nic.abudhabi", e, "https://newgtlds.icann.org/", 0xc4, f},
109 {"ac", r, z[1753:1758], s{"a0.nic.ac", "a2.nic.ac", "b0.nic.ac", "c0.nic.ac"}, n, n, "whois.nic.ac", e, "http://nic.ac", 0xa0, t},
110 {"academy", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.academy", e, e, 0x40, t},
111 {"accenture", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
112 {"accountant", r, x, s{"ns1.dns.nic.accountant", "ns2.dns.nic.accountant", "ns3.dns.nic.accountant", "ns4.dns.nic.accountant", "ns5.dns.nic.accountant", "ns6.dns.nic.accountant"}, n, n, "whois.nic.accountant", e, "https://www.famousfourmedia.com/", 0x40, t},
113 {"accountants", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.accountants", e, e, 0x40, t},
114 {"acer", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
115 {"aco", r, x, s{"a0.nic.aco", "a2.nic.aco", "b0.nic.aco", "c0.nic.aco"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
116 {"active", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
117 {"actor", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.actor", e, e, 0x40, t},
118 {"ad", r, z[1758:1759], s{"ad.cctld.authdns.ripe.net", "ad.ns.nic.es", "dnsc.ad", "dnsm.ad", "ns3.nic.fr"}, n, n, e, e, "http://www.nic.ad/", 0xe0, t},
119 {"adac", r, x, s{"a.nic.adac", "b.nic.adac", "c.nic.adac", "d.nic.adac"}, n, n, "whois.nic.adac", e, "https://newgtlds.icann.org/", 0x42, t},
120 {"ads", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
121 {"adult", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, "whois.registrar.adult", e, "https://newgtlds.icann.org/", 0x41, t},
122 {"ae", r, z[1759:1768], s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, "whois.aeda.net.ae", e, "http://www.nic.ae/", 0xa0, t},
123 {"aeg", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.aeg", e, "https://newgtlds.icann.org/", 0x42, t},
124 {"aero", r, z[1768:1771], s{"a0.aero.afilias-nst.info", "a2.aero.afilias-nst.info", "b0.aero.afilias-nst.org", "b2.aero.afilias-nst.org", "c0.aero.afilias-nst.info", "d0.aero.afilias-nst.org"}, n, n, "whois.aero", e, "http://nic.aero/", 0x1040, f},
125 {"aetna", r, x, s{"ns1.dns.nic.aetna", "ns2.dns.nic.aetna", "ns3.dns.nic.aetna", "ns4.dns.nic.aetna", "ns5.dns.nic.aetna", "ns6.dns.nic.aetna"}, n, n, "whois.nic.aetna", e, "https://newgtlds.icann.org/", 0x42, f},
126 {"af", r, z[1771:1781], s{"ns.anycast.nic.af", "ns.cocca.fr"}, n, n, "whois.nic.af", e, "http://www.nic.af/", 0xa0, f},
127 {"afamilycompany", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.afamilycompany", e, "https://newgtlds.icann.org/", 0x42, f},
128 {"afl", r, x, s{"a.nic.afl", "b.nic.afl", "c.nic.afl", "d.nic.afl"}, n, n, "whois.nic.afl", e, "https://newgtlds.icann.org/", 0x42, f},
129 {"africa", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, s{"Africa"}, "africa-whois.registry.net.za", e, "https://newgtlds.icann.org/", 0xc0, f},
130 {"africamagic", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
131 {"ag", r, z[1781:1787], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, "whois.nic.ag", e, "http://www.nic.ag/", 0xa0, f},
132 {"agakhan", r, x, s{"a0.nic.agakhan", "a2.nic.agakhan", "b0.nic.agakhan", "c0.nic.agakhan"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
133 {"agency", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.agency", e, e, 0x40, t},
134 {"ai", r, z[1787:1791], s{"ns.cocca.fr", "pch.whois.ai"}, n, n, "whois.nic.ai", e, "http://nic.com.ai", 0xa0, f},
135 {"aig", r, x, s{"ns1.dns.nic.aig", "ns2.dns.nic.aig", "ns3.dns.nic.aig", "ns4.dns.nic.aig", "ns5.dns.nic.aig", "ns6.dns.nic.aig"}, n, n, "whois.nic.aig", e, "https://newgtlds.icann.org/", 0x42, f},
136 {"aigo", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
137 {"airbus", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.airbus", e, "https://newgtlds.icann.org/", 0x42, t},
138 {"airforce", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.airforce", e, e, 0x40, t},
139 {"airtel", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.airtel", e, "https://newgtlds.icann.org/", 0x42, f},
140 {"akdn", r, x, s{"a0.nic.akdn", "a2.nic.akdn", "b0.nic.akdn", "c0.nic.akdn"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
141 {"al", r, z[1791:1801], s{"munnari.oz.au", "ns1.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, "http://www.akep.al/sq/kerkoni-domain", "http://www.ert.gov.al/ert_eng/domain.html", 0xa0, f},
142 {"alcon", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
143 {"alfaromeo", r, x, s{"a0.nic.alfaromeo", "a2.nic.alfaromeo", "b0.nic.alfaromeo", "c0.nic.alfaromeo"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
144 {"alibaba", r, x, s{"a0.nic.alibaba", "a2.nic.alibaba", "b0.nic.alibaba", "c0.nic.alibaba"}, n, n, "whois.nic.alibaba", e, "https://newgtlds.icann.org/", 0x42, f},
145 {"alipay", r, x, s{"a0.nic.alipay", "a2.nic.alipay", "b0.nic.alipay", "c0.nic.alipay"}, n, n, "whois.nic.alipay", e, "https://newgtlds.icann.org/", 0x42, f},
146 {"allfinanz", r, x, s{"a.nic.allfinanz", "b.nic.allfinanz", "c.nic.allfinanz", "d.nic.allfinanz"}, n, n, "whois.nic.allfinanz", e, "https://newgtlds.icann.org/", 0x42, f},
147 {"allfinanzberater", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
148 {"allfinanzberatung", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
149 {"allstate", r, x, s{"a0.nic.allstate", "a2.nic.allstate", "b0.nic.allstate", "c0.nic.allstate"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
150 {"ally", r, x, s{"a0.nic.ally", "a2.nic.ally", "b0.nic.ally", "c0.nic.ally"}, n, n, "whois.nic.ally", e, "https://newgtlds.icann.org/", 0x42, f},
151 {"alsace", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, s{"FR-A"}, "whois-alsace.nic.fr", e, "https://newgtlds.icann.org/", 0x4c0, f},
152 {"alstom", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.alstom", e, "https://newgtlds.icann.org/", 0x42, f},
153 {"am", r, z[1801:1808], s{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am"}, n, n, "whois.amnic.net", e, "https://www.amnic.net/", 0xa0, t},
154 {"amazon", r, x, s{"dns1.nic.amazon", "dns2.nic.amazon", "dns3.nic.amazon", "dns4.nic.amazon", "dnsa.nic.amazon", "dnsb.nic.amazon", "dnsc.nic.amazon", "dnsd.nic.amazon"}, n, n, "whois.nic.amazon", e, "https://newgtlds.icann.org/", 0x2042, f},
155 {"americanexpress", r, x, s{"ns1.dns.nic.americanexpress", "ns2.dns.nic.americanexpress", "ns3.dns.nic.americanexpress", "ns4.dns.nic.americanexpress", "ns5.dns.nic.americanexpress", "ns6.dns.nic.americanexpress"}, n, n, "whois.nic.americanexpress", e, "https://newgtlds.icann.org/", 0x42, f},
156 {"americanfamily", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.americanfamily", e, "https://newgtlds.icann.org/", 0x42, t},
157 {"amex", r, x, s{"ns1.dns.nic.amex", "ns2.dns.nic.amex", "ns3.dns.nic.amex", "ns4.dns.nic.amex", "ns5.dns.nic.amex", "ns6.dns.nic.amex"}, n, n, "whois.nic.amex", e, "https://newgtlds.icann.org/", 0x42, f},
158 {"amfam", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.amfam", e, "https://newgtlds.icann.org/", 0x42, t},
159 {"amica", r, x, s{"ns1.dns.nic.amica", "ns2.dns.nic.amica", "ns3.dns.nic.amica", "ns4.dns.nic.amica", "ns5.dns.nic.amica", "ns6.dns.nic.amica"}, n, n, "whois.nic.amica", e, "https://newgtlds.icann.org/", 0x42, f},
160 {"amp", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
161 {"amsterdam", r, x, s{"ns1.nic.amsterdam", "ns2.nic.amsterdam", "ns3.nic.amsterdam"}, n, s{"Amsterdam", "NL-NH"}, "whois.nic.amsterdam", e, "http://nic.amsterdam/", 0xc4, f},
162 {"an", r, z[1808:1812], n, n, n, e, e, "http://www.una.an/an_domreg/", 0x8a8, f},
163 {"analytics", r, x, s{"ns1.dns.nic.analytics", "ns2.dns.nic.analytics", "ns3.dns.nic.analytics", "ns4.dns.nic.analytics", "ns5.dns.nic.analytics", "ns6.dns.nic.analytics"}, n, n, "whois.nic.analytics", e, "https://newgtlds.icann.org/", 0x40, f},
164 {"android", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
165 {"anquan", r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, "https://newgtlds.icann.org/", 0x40, f},
166 {"ansons", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
167 {"anthem", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
168 {"antivirus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
169 {"anz", r, x, s{"a.nic.anz", "b.nic.anz", "c.nic.anz", "d.nic.anz"}, n, n, "whois.nic.anz", e, "https://newgtlds.icann.org/", 0x42, f},
170 {"ao", r, z[1812:1818], s{"ao01.dns.pt", "ao03.dns.pt", "h.dns.pt"}, n, n, e, e, "http://www.dns.ao/", 0xa0, f},
171 {"aol", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.aol", e, "https://newgtlds.icann.org/", 0x42, f},
172 {"apartments", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.apartments", e, "https://newgtlds.icann.org/", 0x40, t},
173 {"app", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
174 {"apple", r, x, s{"a0.nic.apple", "a2.nic.apple", "b0.nic.apple", "c0.nic.apple"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
175 {"aq", r, z[1818:1819], s{"fork.sth.dnsnode.net", "ns1.anycast.dns.aq", "ns99.dns.net.nz"}, n, n, e, e, "http://www.gobin.info/domainname/aq.txt", 0xa0, f},
176 {"aquarelle", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.aquarelle", e, "https://newgtlds.icann.org/", 0x42, t},
177 {"aquitaine", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
178 {"ar", r, z[1819:1828], s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "d.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, "whois.nic.ar", "http://www.nic.ar/", "http://www.nic.ar/", 0xa0, t},
179 {"arab", r, x, s{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, "whois.nic.arab", e, "https://newgtlds.icann.org/", 0x40, f},
180 {"aramco", r, x, s{"ns1.dns.nic.aramco", "ns2.dns.nic.aramco", "ns3.dns.nic.aramco", "ns4.dns.nic.aramco", "ns5.dns.nic.aramco", "ns6.dns.nic.aramco"}, n, n, "whois.nic.aramco", e, "https://newgtlds.icann.org/", 0x42, f},
181 {"archi", r, x, s{"a0.nic.archi", "a2.nic.archi", "b0.nic.archi", "c0.nic.archi"}, n, n, "whois.afilias.net", e, "http://nic.archi/", 0x40, f},
182 {"architect", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
183 {"army", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.army", e, e, 0x40, t},
184 {"arpa", r, z[1828:1834], s{"a.root-servers.net", "b.root-servers.net", "c.root-servers.net", "d.root-servers.net", "e.root-servers.net", "f.root-servers.net", "g.root-servers.net", "h.root-servers.net", "i.root-servers.net", "k.root-servers.net", "l.root-servers.net", "m.root-servers.net"}, n, n, "whois.iana.org", e, "https://www.iana.org/domains/arpa", 0x148, f},
185 {"art", r, x, s{"a.nic.art", "b.nic.art", "c.nic.art", "d.nic.art"}, n, n, "whois.nic.art", e, "https://newgtlds.icann.org/", 0x40, t},
186 {"arte", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.arte", e, "https://newgtlds.icann.org/", 0x42, t},
187 {"as", r, x, s{"ns1.asnic.biz", "ns2.asnic.info", "ns3.asnic.org", "ns4.asnic.uk", "ns5.asnic.us", "ns99.dns.net.nz", "pch.nic.as"}, n, n, "whois.nic.as", e, "http://nic.as/", 0xe0, t},
188 {"asda", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.asda", e, "https://newgtlds.icann.org/", 0x42, f},
189 {"asia", r, x, s{"a0.asia.afilias-nst.info", "a2.asia.afilias-nst.info", "b0.asia.afilias-nst.asia", "b2.asia.afilias-nst.org", "c0.asia.afilias-nst.info", "d0.asia.afilias-nst.asia"}, n, n, "whois.nic.asia", e, "http://www.dotasia.org/", 0x1040, t},
190 {"associates", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.associates", e, e, 0x40, t},
191 {"astrium", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
192 {"at", r, z[1834:1839], s{"d.ns.at", "j.ns.at", "n.ns.at", "ns1.univie.ac.at", "ns2.univie.ac.at", "ns9.univie.ac.at", "r.ns.at", "u.ns.at"}, n, n, "whois.nic.at", e, "http://www.nic.at/", 0xa0, t},
193 {"athleta", r, x, s{"ns1.dns.nic.athleta", "ns2.dns.nic.athleta", "ns3.dns.nic.athleta", "ns4.dns.nic.athleta", "ns5.dns.nic.athleta", "ns6.dns.nic.athleta"}, n, n, "whois.nic.athleta", e, "https://newgtlds.icann.org/", 0x42, f},
194 {"attorney", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.attorney", e, e, 0x40, t},
195 {"au", r, z[1839:1859], s{"a.au", "c.au", "d.au", "m.au", "n.au", "q.au", "r.au", "s.au", "t.au"}, n, n, "whois.auda.org.au", e, "http://www.auda.org.au/", 0xa8, f},
196 {"auction", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.auction", e, "https://newgtlds.icann.org/", 0x40, t},
197 {"audi", r, x, s{"a0.nic.audi", "a2.nic.audi", "b0.nic.audi", "c0.nic.audi"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
198 {"audible", r, x, s{"dns1.nic.audible", "dns2.nic.audible", "dns3.nic.audible", "dns4.nic.audible", "dnsa.nic.audible", "dnsb.nic.audible", "dnsc.nic.audible", "dnsd.nic.audible"}, n, n, "whois.nic.audible", e, "https://newgtlds.icann.org/", 0x42, t},
199 {"audio", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.audio/", 0x40, t},
200 {"auspost", r, x, s{"a.nic.auspost", "b.nic.auspost", "c.nic.auspost", "d.nic.auspost"}, n, n, "whois.nic.auspost", e, "https://newgtlds.icann.org/", 0x42, f},
201 {"author", r, x, s{"dns1.nic.author", "dns2.nic.author", "dns3.nic.author", "dns4.nic.author", "dnsa.nic.author", "dnsb.nic.author", "dnsc.nic.author", "dnsd.nic.author"}, n, n, "whois.nic.author", e, "https://newgtlds.icann.org/", 0x40, t},
202 {"auto", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.auto/", 0x40, t},
203 {"autoinsurance", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
204 {"autos", r, x, s{"a0.nic.autos", "a2.nic.autos", "b0.nic.autos", "c0.nic.autos"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, f},
205 {"avery", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
206 {"avianca", r, x, s{"a0.nic.avianca", "a2.nic.avianca", "b0.nic.avianca", "c0.nic.avianca"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
207 {"aw", r, z[1859:1860], s{"aw01.setarnet.aw", "aw02.setarnet.aw", "ns1.dns.aw", "ns2.dns.aw", "ns3.dns.aw"}, n, n, "whois.nic.aw", e, "http://www.setarnet.aw/", 0xa0, f},
208 {"aws", r, x, s{"dns1.nic.aws", "dns2.nic.aws", "dns3.nic.aws", "dns4.nic.aws", "dnsa.nic.aws", "dnsb.nic.aws", "dnsc.nic.aws", "dnsd.nic.aws"}, n, n, "whois.nic.aws", e, "https://newgtlds.icann.org/", 0x42, t},
209 {"ax", r, x, s{"ns1.aland.net", "ns2.aland.net", "ns3.alcom.fi", "ns4.alcom.fi"}, n, n, "whois.ax", e, "http://www.regeringen.ax/axreg/", 0xa0, f},
210 {"axa", r, x, s{"ns1.dns.nic.axa", "ns2.dns.nic.axa", "ns3.dns.nic.axa", "ns4.dns.nic.axa", "ns5.dns.nic.axa", "ns6.dns.nic.axa"}, n, n, "whois.nic.axa", e, "https://newgtlds.icann.org/", 0x42, t},
211 {"axis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
212 {"az", r, z[1860:1881], s{"az.hostmaster.ua", "rip.psg.com"}, n, n, e, "http://www.nic.az/", "http://www.nic.az/", 0xa0, f},
213 {"azure", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
214 {"ba", r, z[1881:1894], s{"ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, e, "http://nic.ba/lat/menu/view/13", "http://www.nic.ba/", 0xa0, f},
215 {"baby", r, x, s{"a.nic.baby", "b.nic.baby", "c.nic.baby", "d.nic.baby"}, n, n, "whois.nic.baby", e, "https://newgtlds.icann.org/", 0x40, f},
216 {"baidu", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, "https://newgtlds.icann.org/", 0x42, t},
217 {"banamex", r, x, s{"ns1.dns.nic.banamex", "ns2.dns.nic.banamex", "ns3.dns.nic.banamex", "ns4.dns.nic.banamex", "ns5.dns.nic.banamex", "ns6.dns.nic.banamex"}, n, n, "whois.nic.banamex", e, "https://newgtlds.icann.org/", 0x42, f},
218 {"bananarepublic", r, x, s{"ns1.dns.nic.bananarepublic", "ns2.dns.nic.bananarepublic", "ns3.dns.nic.bananarepublic", "ns4.dns.nic.bananarepublic", "ns5.dns.nic.bananarepublic", "ns6.dns.nic.bananarepublic"}, n, n, "whois.nic.bananarepublic", e, "https://newgtlds.icann.org/", 0x42, f},
219 {"band", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.band", e, "https://newgtlds.icann.org/", 0x40, t},
220 {"bank", r, x, s{"a.nic.bank", "b.nic.bank", "c.nic.bank", "d.nic.bank", "e.nic.bank", "f.nic.bank"}, n, n, "whois.nic.bank", e, "https://newgtlds.icann.org/", 0x40, f},
221 {"banque", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
222 {"bar", r, x, s{"a.nic.bar", "b.nic.bar", "c.nic.bar", "d.nic.bar"}, n, n, "whois.nic.bar", e, e, 0x40, t},
223 {"barcelona", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.barcelona", e, "https://newgtlds.icann.org/", 0x40, f},
224 {"barclaycard", r, x, s{"a.nic.barclaycard", "b.nic.barclaycard", "c.nic.barclaycard", "d.nic.barclaycard"}, n, n, "whois.nic.barclaycard", e, "https://newgtlds.icann.org/", 0x42, f},
225 {"barclays", r, x, s{"a.nic.barclays", "b.nic.barclays", "c.nic.barclays", "d.nic.barclays"}, n, n, "whois.nic.barclays", e, "https://newgtlds.icann.org/", 0x42, f},
226 {"barefoot", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.barefoot", e, "https://newgtlds.icann.org/", 0x42, f},
227 {"bargains", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.bargains", e, e, 0x40, t},
228 {"baseball", r, x, s{"ns1.dns.nic.baseball", "ns2.dns.nic.baseball", "ns3.dns.nic.baseball", "ns4.dns.nic.baseball", "ns5.dns.nic.baseball", "ns6.dns.nic.baseball"}, n, n, "whois.nic.baseball", e, "https://newgtlds.icann.org/", 0x40, f},
229 {"basketball", r, x, s{"a.nic.basketball", "b.nic.basketball", "c.nic.basketball", "d.nic.basketball"}, n, n, "whois.nic.basketball", e, "https://newgtlds.icann.org/", 0x40, f},
230 {"bauhaus", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.bauhaus", e, "https://newgtlds.icann.org/", 0x42, f},
231 {"bayern", r, x, s{"dns1.nic.bayern", "dns2.nic.bayern", "dns3.nic.bayern", "dns4.nic.bayern", "dnsa.nic.bayern", "dnsb.nic.bayern", "dnsc.nic.bayern", "dnsd.nic.bayern"}, n, s{"DE-BY"}, "whois.nic.bayern", e, "http://nic.bayern/", 0x4c0, t},
232 {"bb", r, z[1894:1903], s{"ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, "http://whois.telecoms.gov.bb/search_domain.php", "http://www.barbadosdomains.net/", 0xa0, f},
233 {"bbb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
234 {"bbc", r, x, s{"dns1.nic.bbc", "dns2.nic.bbc", "dns3.nic.bbc", "dns4.nic.bbc", "dnsa.nic.bbc", "dnsb.nic.bbc", "dnsc.nic.bbc", "dnsd.nic.bbc"}, n, n, "whois.nic.bbc", e, "https://newgtlds.icann.org/", 0x42, f},
235 {"bbt", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bbt", e, "https://newgtlds.icann.org/", 0x42, f},
236 {"bbva", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bbva", e, "https://newgtlds.icann.org/", 0x42, t},
237 {"bcg", r, x, s{"a0.nic.bcg", "a2.nic.bcg", "b0.nic.bcg", "c0.nic.bcg"}, n, n, "whois.nic.bcg", e, "https://newgtlds.icann.org/", 0x42, f},
238 {"bcn", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.bcn", e, "https://newgtlds.icann.org/", 0x40, f},
239 {"bd", r, z[1903:1910], s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, "http://whois.btcl.net.bd/", "http://www.bttb.net.bd/", 0xa8, t},
240 {"be", r, x, s{"a.ns.dns.be", "b.ns.dns.be", "c.ns.dns.be", "d.ns.dns.be", "y.ns.dns.be", "z.nsset.be"}, n, n, "whois.dns.be", e, e, 0xa0, t},
241 {"beats", r, x, s{"a0.nic.beats", "a2.nic.beats", "b0.nic.beats", "c0.nic.beats"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
242 {"beauty", r, x, s{"a.nic.beauty", "b.nic.beauty", "c.nic.beauty", "d.nic.beauty"}, n, n, "whois.nic.beauty", e, "https://newgtlds.icann.org/", 0x40, t},
243 {"beer", r, x, s{"dns1.nic.beer", "dns2.nic.beer", "dns3.nic.beer", "dns4.nic.beer", "dnsa.nic.beer", "dnsb.nic.beer", "dnsc.nic.beer", "dnsd.nic.beer"}, n, n, "whois.nic.beer", e, "http://nic.beer/", 0x40, t},
244 {"beknown", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
245 {"bentley", r, x, s{"dns1.nic.bentley", "dns2.nic.bentley", "dns3.nic.bentley", "dns4.nic.bentley", "dnsa.nic.bentley", "dnsb.nic.bentley", "dnsc.nic.bentley", "dnsd.nic.bentley"}, n, n, "whois.nic.bentley", e, "https://newgtlds.icann.org/", 0x42, f},
246 {"berlin", r, x, s{"a.dns.nic.berlin", "m.dns.nic.berlin", "n.dns.nic.berlin"}, n, s{"Berlin", "DE-BE"}, "whois.nic.berlin", e, e, 0xc4, t},
247 {"best", r, x, s{"a.nic.best", "b.nic.best", "c.nic.best", "d.nic.best"}, n, n, "whois.nic.best", e, "http://nic.best/", 0x40, t},
248 {"bestbuy", r, x, s{"a0.nic.bestbuy", "a2.nic.bestbuy", "b0.nic.bestbuy", "c0.nic.bestbuy"}, n, n, "whois.nic.bestbuy", e, "https://newgtlds.icann.org/", 0x42, f},
249 {"bet", r, x, s{"a0.nic.bet", "a2.nic.bet", "b0.nic.bet", "c0.nic.bet"}, n, n, "whois.afilias.net", e, "http://nic.bet/", 0x40, f},
250 {"bf", r, z[1910:1911], s{"a.registre.bf", "censvrns0001.ird.fr", "nahouri.onatel.bf"}, n, n, e, e, e, 0xa0, t},
251 {"bg", r, z[1911:1947], s{"a.nic.bg", "b.nic.bg", "c.nic.bg", "d.nic.bg", "e.nic.bg", "p.nic.bg"}, n, n, "whois.register.bg", e, "https://www.register.bg/user/", 0xa0, t},
252 {"bh", r, z[1947:1955], s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0xa0, f},
253 {"bharti", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
254 {"bi", r, z[1955:1965], s{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, "whois1.nic.bi", e, e, 0xa0, f},
255 {"bible", r, x, s{"ns1.dns.nic.bible", "ns2.dns.nic.bible", "ns3.dns.nic.bible", "ns4.dns.nic.bible", "ns5.dns.nic.bible", "ns6.dns.nic.bible"}, n, n, "whois.nic.bible", e, "https://newgtlds.icann.org/", 0x40, f},
256 {"bid", r, x, s{"ns1.dns.nic.bid", "ns2.dns.nic.bid", "ns3.dns.nic.bid", "ns4.dns.nic.bid", "ns5.dns.nic.bid", "ns6.dns.nic.bid"}, n, n, "whois.nic.bid", e, "https://www.famousfourmedia.com/", 0x40, t},
257 {"bike", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.bike", e, e, 0x40, t},
258 {"bing", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
259 {"bingo", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.bingo", e, "https://newgtlds.icann.org/", 0x40, t},
260 {"bio", r, x, s{"a0.nic.bio", "a2.nic.bio", "b0.nic.bio", "c0.nic.bio"}, n, n, "whois.afilias.net", e, "http://nic.bio/", 0x40, t},
261 {"biz", r, z[1965:1967], s{"a.gtld.biz", "b.gtld.biz", "c.gtld.biz", "e.gtld.biz", "f.gtld.biz", "k.gtld.biz"}, n, n, "whois.nic.biz", e, e, 0x40, t},
262 {"bj", r, z[1967:1974], s{"ns.cocca.fr", "ns1.nic.bj", "ns2.nic.bj", "pch.nic.bj"}, n, n, "whois.nic.bj", e, e, 0xa0, f},
263 {"black", r, x, s{"a0.nic.black", "a2.nic.black", "b0.nic.black", "c0.nic.black"}, n, n, "whois.afilias.net", e, "http://nic.black/", 0x40, f},
264 {"blackfriday", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.blackfriday/", 0x40, t},
265 {"blanco", r, x, n, n, n, "whois.nic.blanco", e, "https://newgtlds.icann.org/", 0x40, t},
266 {"blockbuster", r, x, s{"a0.nic.blockbuster", "a2.nic.blockbuster", "b0.nic.blockbuster", "c0.nic.blockbuster"}, n, n, "whois.nic.blockbuster", e, "https://newgtlds.icann.org/", 0x42, f},
267 {"blog", r, z[1974:2000], s{"a.nic.blog", "b.nic.blog", "c.nic.blog", "d.nic.blog"}, n, n, "whois.nic.blog", e, "http://nic.blog/", 0x40, f},
268 {"bloomberg", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
269 {"bloomingdales", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
270 {"blue", r, x, s{"a0.nic.blue", "a2.nic.blue", "b0.nic.blue", "b2.nic.blue", "c0.nic.blue"}, n, n, "whois.afilias.net", e, "http://nic.blue/", 0x40, f},
271 {"bm", r, z[2000:2005], s{"a0.bm.afilias-nst.info", "a2.bm.afilias-nst.info", "b0.bm.afilias-nst.org", "b2.bm.afilias-nst.org", "c0.bm.afilias-nst.info", "d0.bm.afilias-nst.org"}, n, n, e, "http://www.bermudanic.bm/cgi-bin/lansaweb?procfun+BMWHO+BMWHO2+WHO", e, 0xa0, f},
272 {"bms", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bms", e, "https://newgtlds.icann.org/", 0x42, f},
273 {"bmw", r, x, s{"a.nic.bmw", "b.nic.bmw", "c.nic.bmw", "d.nic.bmw"}, n, n, "whois.nic.bmw", e, "https://newgtlds.icann.org/", 0x42, f},
274 {"bn", r, z[2005:2010], s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, "whois.bnnic.bn", e, "http://www.brunet.bn/products_webrelated_domain_main.htm", 0xa0, f},
275 {"bnl", r, x, n, n, n, "whois.nic.bnl", e, "https://newgtlds.icann.org/", 0x42, f},
276 {"bnpparibas", r, x, s{"a0.nic.bnpparibas", "a2.nic.bnpparibas", "b0.nic.bnpparibas", "c0.nic.bnpparibas"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
277 {"bo", r, z[2010:2019], s{"anycast.ns.nic.bo", "ns.dns.br", "ns.nic.bo", "ns2.nic.fr"}, n, n, "whois.nic.bo", e, e, 0xa0, t},
278 {"boats", r, x, s{"a0.nic.boats", "a2.nic.boats", "b0.nic.boats", "c0.nic.boats"}, n, n, "whois.afilias-srs.net", e, "http://nic.boats/", 0x40, f},
279 {"boehringer", r, x, s{"a0.nic.boehringer", "a2.nic.boehringer", "b0.nic.boehringer", "c0.nic.boehringer"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
280 {"bofa", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bofa", e, "https://newgtlds.icann.org/", 0x42, f},
281 {"bom", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x42, t},
282 {"bond", r, x, s{"a.nic.bond", "b.nic.bond", "c.nic.bond", "d.nic.bond"}, n, n, "whois.nic.bond", e, "https://newgtlds.icann.org/", 0x42, f},
283 {"boo", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
284 {"book", r, x, s{"dns1.nic.book", "dns2.nic.book", "dns3.nic.book", "dns4.nic.book", "dnsa.nic.book", "dnsb.nic.book", "dnsc.nic.book", "dnsd.nic.book"}, n, n, "whois.nic.book", e, "https://newgtlds.icann.org/", 0x40, t},
285 {"booking", r, x, s{"ns1.dns.nic.booking", "ns2.dns.nic.booking", "ns3.dns.nic.booking", "ns4.dns.nic.booking", "ns5.dns.nic.booking", "ns6.dns.nic.booking"}, n, n, "whois.nic.booking", e, "https://newgtlds.icann.org/", 0x48, f},
286 {"boots", r, x, n, n, n, "whois.nic.boots", e, "https://newgtlds.icann.org/", 0x42, f},
287 {"bosch", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bosch", e, "https://newgtlds.icann.org/", 0x42, f},
288 {"bostik", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.bostik", e, "https://newgtlds.icann.org/", 0x42, t},
289 {"boston", r, x, s{"dns1.nic.boston", "dns2.nic.boston", "dns3.nic.boston", "dns4.nic.boston", "dnsa.nic.boston", "dnsb.nic.boston", "dnsc.nic.boston", "dnsd.nic.boston"}, n, s{"Boston"}, "whois.nic.boston", e, "http://nic.boston/", 0xc4, f},
290 {"bot", r, x, s{"dns1.nic.bot", "dns2.nic.bot", "dns3.nic.bot", "dns4.nic.bot", "dnsa.nic.bot", "dnsb.nic.bot", "dnsc.nic.bot", "dnsd.nic.bot"}, n, n, "whois.nic.bot", e, "https://newgtlds.icann.org/", 0x40, t},
291 {"boutique", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.boutique", e, e, 0x40, t},
292 {"box", r, x, s{"a.nic.box", "b.nic.box", "c.nic.box", "d.nic.box"}, n, n, "whois.nic.box", e, "https://newgtlds.icann.org/", 0x40, f},
293 {"br", r, z[2019:2114], s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.registro.br", e, "http://nic.br/", 0xa0, t},
294 {"bradesco", r, x, s{"dns1.nic.bradesco", "dns2.nic.bradesco", "dns3.nic.bradesco", "dns4.nic.bradesco", "dnsa.nic.bradesco", "dnsb.nic.bradesco", "dnsc.nic.bradesco", "dnsd.nic.bradesco"}, n, n, "whois.nic.bradesco", e, "http://nic.bradesco/", 0x42, f},
295 {"bridgestone", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.bridgestone", e, "https://newgtlds.icann.org/", 0x42, f},
296 {"broadway", r, x, s{"dns1.nic.broadway", "dns2.nic.broadway", "dns3.nic.broadway", "dns4.nic.broadway", "dnsa.nic.broadway", "dnsb.nic.broadway", "dnsc.nic.broadway", "dnsd.nic.broadway"}, n, n, "whois.nic.broadway", e, "http://nic.broadway/", 0x40, f},
297 {"broker", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.broker", e, "https://bostonivy.co/", 0x40, f},
298 {"brother", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.brother", e, "https://newgtlds.icann.org/", 0x42, f},
299 {"brussels", r, x, s{"a.nic.brussels", "b.nic.brussels", "c.ns.dns.be", "d.ns.dns.be", "y.ns.dns.be", "z.nsset.brussels"}, n, s{"Brussels", "BE-BRU"}, "whois.nic.brussels", e, "https://newgtlds.icann.org/", 0xc4, t},
300 {"bs", r, z[2114:2120], s{"anyns.dns.bs", "anyns.pch.net", "ns36.cdns.net"}, n, n, e, "http://www.nic.bs/cgi-bin/search.pl", e, 0xa0, t},
301 {"bt", r, z[2120:2125], s{"auth00.ns.uu.net", "auth61.ns.uu.net", "ns.itu.ch", "ns1.druknet.bt", "ns2.druknet.bt", "ns3.druknet.bt", "phloem.uoregon.edu"}, n, n, e, "http://www.nic.bt/", e, 0xa0, f},
302 {"budapest", r, x, s{"dns1.nic.budapest", "dns2.nic.budapest", "dns3.nic.budapest", "dns4.nic.budapest", "dnsa.nic.budapest", "dnsb.nic.budapest", "dnsc.nic.budapest", "dnsd.nic.budapest"}, n, s{"Budapest", "HU-BU"}, "whois.nic.budapest", e, "http://nic.budapest/", 0xc4, t},
303 {"bugatti", r, x, s{"a0.nic.bugatti", "a2.nic.bugatti", "b0.nic.bugatti", "c0.nic.bugatti"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
304 {"buick", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
305 {"build", r, x, s{"a.nic.build", "b.nic.build", "c.nic.build", "d.nic.build"}, n, n, "whois.nic.build", e, "http://nic.build/", 0x40, f},
306 {"builders", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.builders", e, e, 0x40, t},
307 {"business", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.business", e, "https://newgtlds.icann.org/", 0x40, t},
308 {"buy", r, x, s{"dns1.nic.buy", "dns2.nic.buy", "dns3.nic.buy", "dns4.nic.buy", "dnsa.nic.buy", "dnsb.nic.buy", "dnsc.nic.buy", "dnsd.nic.buy"}, n, n, "whois.nic.buy", e, "https://newgtlds.icann.org/", 0x40, t},
309 {"buzz", r, x, s{"ns1.dns.nic.buzz", "ns2.dns.nic.buzz", "ns3.dns.nic.buzz", "ns4.dns.nic.buzz", "ns5.dns.nic.buzz", "ns6.dns.nic.buzz"}, n, n, "whois.nic.buzz", e, e, 0x40, t},
310 {"bv", r, x, s{"nac.no", "nn.uninett.no", "server.nordu.net"}, n, n, "whois.norid.no", e, e, 0xa8, f},
311 {"bw", r, z[2125:2129], s{"dns1.nic.net.bw", "dns2.nic.net.bw", "master.btc.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, "whois.nic.net.bw", e, e, 0xa0, f},
312 {"bway", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
313 {"by", r, z[2129:2134], s{"dns1.tld.tutby.com", "dns2.tld.tutby.com", "dns3.tld.tutby.com", "dns4.tld.tutby.com", "dns5.tld.tutby.com"}, n, n, "whois.cctld.by", e, "http://tld.by/", 0xa0, f},
314 {"bz", r, z[2134:2141], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, "whois.afilias-grs.info", e, "http://www.belizenic.bz/", 0xe0, f},
315 {"bzh", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, s{"FR-E"}, "whois.nic.bzh", e, "https://newgtlds.icann.org/", 0x4c0, t},
316 {"ca", r, z[2141:2157], s{"any.ca-servers.ca", "c.ca-servers.ca", "j.ca-servers.ca", "x.ca-servers.ca"}, n, n, "whois.cira.ca", e, e, 0xa0, t},
317 {"cab", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cab", e, e, 0x40, t},
318 {"cadillac", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
319 {"cafe", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cafe", e, "https://newgtlds.icann.org/", 0x40, t},
320 {"cal", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
321 {"call", r, x, s{"dns1.nic.call", "dns2.nic.call", "dns3.nic.call", "dns4.nic.call", "dnsa.nic.call", "dnsb.nic.call", "dnsc.nic.call", "dnsd.nic.call"}, n, n, "whois.nic.call", e, "https://newgtlds.icann.org/", 0x40, t},
322 {"calvinklein", r, x, s{"ns1.dns.nic.calvinklein", "ns2.dns.nic.calvinklein", "ns3.dns.nic.calvinklein", "ns4.dns.nic.calvinklein", "ns5.dns.nic.calvinklein", "ns6.dns.nic.calvinklein"}, n, n, "whois.nic.calvinklein", e, "https://newgtlds.icann.org/", 0x42, f},
323 {"cam", r, x, s{"a.nic.cam", "b.nic.cam", "c.nic.cam", "d.nic.cam"}, n, n, "whois.nic.cam", e, "https://newgtlds.icann.org/", 0x40, t},
324 {"camera", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.camera", e, e, 0x40, t},
325 {"camp", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.camp", e, e, 0x40, t},
326 {"canalplus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
327 {"cancerresearch", r, x, s{"a.nic.cancerresearch", "b.nic.cancerresearch", "c.nic.cancerresearch", "d.nic.cancerresearch"}, n, n, "whois.nic.cancerresearch", e, "https://newgtlds.icann.org/", 0x40, f},
328 {"canon", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.canon", e, "https://newgtlds.icann.org/", 0x42, t},
329 {"capetown", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, s{"Cape Town"}, "capetown-whois.registry.net.za", e, e, 0xc4, t},
330 {"capital", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.capital", e, e, 0x40, t},
331 {"capitalone", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.capitalone", e, "https://newgtlds.icann.org/", 0x42, f},
332 {"car", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.car/", 0x40, t},
333 {"caravan", r, x, s{"ns1.dns.nic.caravan", "ns2.dns.nic.caravan", "ns3.dns.nic.caravan", "ns4.dns.nic.caravan", "ns5.dns.nic.caravan", "ns6.dns.nic.caravan"}, n, n, "whois.nic.caravan", e, "https://newgtlds.icann.org/", 0x42, f},
334 {"cards", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cards", e, e, 0x40, t},
335 {"care", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.care", e, e, 0x40, t},
336 {"career", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.career", e, e, 0x40, t},
337 {"careers", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.careers", e, e, 0x40, t},
338 {"carinsurance", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
339 {"cars", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.cars/", 0x40, t},
340 {"cartier", r, x, n, n, n, "whois.nic.cartier", e, "https://newgtlds.icann.org/", 0x42, t},
341 {"casa", r, x, s{"dns1.nic.casa", "dns2.nic.casa", "dns3.nic.casa", "dns4.nic.casa", "dnsa.nic.casa", "dnsb.nic.casa", "dnsc.nic.casa", "dnsd.nic.casa"}, n, n, "whois.nic.casa", e, "http://nic.casa/", 0x40, t},
342 {"case", r, x, s{"a0.nic.case", "a2.nic.case", "b0.nic.case", "c0.nic.case"}, n, n, "whois.nic.case", e, "https://newgtlds.icann.org/", 0x40, f},
343 {"caseih", r, x, s{"a0.nic.caseih", "a2.nic.caseih", "b0.nic.caseih", "c0.nic.caseih"}, n, n, "whois.nic.caseih", e, "https://newgtlds.icann.org/", 0x42, f},
344 {"cash", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cash", e, e, 0x40, t},
345 {"cashbackbonus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x48, f},
346 {"casino", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.casino", e, "https://newgtlds.icann.org/", 0x40, t},
347 {"cat", r, x, s{"anyc1.irondns.net", "cat.pch.net", "ns.nic.cat", "ns1.nic.es", "nsc.nic.de", "switch.nic.cat"}, n, s{"ES-CT"}, "whois.nic.cat", e, "http://www.domini.cat/", 0x1440, t},
348 {"catalonia", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
349 {"catering", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.catering", e, e, 0x40, t},
350 {"catholic", r, x, s{"a.nic.catholic", "b.nic.catholic", "c.nic.catholic", "d.nic.catholic"}, n, n, "whois.nic.catholic", e, "https://newgtlds.icann.org/", 0x40, f},
351 {"cba", r, x, s{"a.nic.cba", "b.nic.cba", "c.nic.cba", "d.nic.cba"}, n, n, "whois.nic.cba", e, "https://newgtlds.icann.org/", 0x42, f},
352 {"cbn", r, x, s{"ns1.dns.nic.cbn", "ns2.dns.nic.cbn", "ns3.dns.nic.cbn", "ns4.dns.nic.cbn", "ns5.dns.nic.cbn", "ns6.dns.nic.cbn"}, n, n, "whois.nic.cbn", e, "https://newgtlds.icann.org/", 0x42, f},
353 {"cbre", r, x, s{"ns1.dns.nic.cbre", "ns2.dns.nic.cbre", "ns3.dns.nic.cbre", "ns4.dns.nic.cbre", "ns5.dns.nic.cbre", "ns6.dns.nic.cbre"}, n, n, "whois.nic.cbre", e, "https://newgtlds.icann.org/", 0x42, f},
354 {"cbs", r, x, s{"a0.nic.cbs", "a2.nic.cbs", "b0.nic.cbs", "c0.nic.cbs"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
355 {"cc", r, z[2157:2161], s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "ccwhois.verisign-grs.com", e, e, 0xe0, t},
356 {"cd", r, z[2161:2167], s{"igubu.saix.net", "ns-root-1.scpt-network.com", "ns-root-2.scpt-network.com", "ns-root-5.scpt-network.com", "sabela.saix.net", "sangoma.saix.net"}, n, n, "whois.cd", e, "http://www.nic.cd/", 0xe0, f},
357 {"ceb", r, x, s{"a0.nic.ceb", "a2.nic.ceb", "b0.nic.ceb", "c0.nic.ceb"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
358 {"center", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.center", e, e, 0x40, t},
359 {"ceo", r, x, s{"a.nic.ceo", "b.nic.ceo", "c.nic.ceo", "d.nic.ceo"}, n, n, "whois.nic.ceo", e, e, 0x40, t},
360 {"cern", r, x, s{"a0.nic.cern", "a2.nic.cern", "b0.nic.cern", "c0.nic.cern"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
361 {"cf", r, x, s{"a.ns.cf", "b.ns.cf", "c.ns.cf", "d.ns.cf"}, n, n, "whois.dot.cf", e, e, 0xa0, t},
362 {"cfa", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.cfa", e, "https://newgtlds.icann.org/", 0x42, f},
363 {"cfd", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.cfd", e, "https://bostonivy.co/", 0x40, f},
364 {"cg", r, x, s{"dns-fr.dnsafrica.net", "dns-za.dnsafrica.net", "sunic.sunet.se"}, n, n, e, "http://www.nic.cg/cgi-bin/whois.pl", e, 0xa0, f},
365 {"ch", r, x, s{"a.nic.ch", "b.nic.ch", "c.nic.ch", "e.nic.ch", "f.nic.ch", "g.nic.ch", "h.nic.ch"}, n, n, "whois.nic.ch", e, e, 0xa0, t},
366 {"chanel", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.chanel", e, "https://newgtlds.icann.org/", 0x42, f},
367 {"changiairport", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
368 {"channel", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
369 {"charity", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.charity", e, "https://newgtlds.icann.org/", 0x40, t},
370 {"chartis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
371 {"chase", r, x, s{"ns1.dns.nic.chase", "ns2.dns.nic.chase", "ns3.dns.nic.chase", "ns4.dns.nic.chase", "ns5.dns.nic.chase", "ns6.dns.nic.chase"}, n, n, "whois.nic.chase", e, "https://newgtlds.icann.org/", 0x42, f},
372 {"chat", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.chat", e, "https://newgtlds.icann.org/", 0x40, t},
373 {"cheap", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cheap", e, e, 0x40, t},
374 {"chesapeake", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
375 {"chevrolet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
376 {"chevy", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
377 {"chintai", r, x, s{"ns1.dns.nic.chintai", "ns2.dns.nic.chintai", "ns3.dns.nic.chintai", "ns4.dns.nic.chintai", "ns5.dns.nic.chintai", "ns6.dns.nic.chintai"}, n, n, "whois.nic.chintai", e, "https://newgtlds.icann.org/", 0x42, f},
378 {"chk", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
379 {"chloe", r, x, n, n, n, "whois.nic.chloe", e, "https://newgtlds.icann.org/", 0x2042, f},
380 {"christmas", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.christmas/", 0x40, t},
381 {"chrome", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
382 {"chrysler", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
383 {"church", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.church", e, e, 0x40, t},
384 {"ci", r, z[2167:2184], s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, "whois.nic.ci", e, e, 0xa0, f},
385 {"cimb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
386 {"cipriani", r, x, s{"a0.nic.cipriani", "a2.nic.cipriani", "b0.nic.cipriani", "c0.nic.cipriani"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
387 {"circle", r, x, s{"dns1.nic.circle", "dns2.nic.circle", "dns3.nic.circle", "dns4.nic.circle", "dnsa.nic.circle", "dnsb.nic.circle", "dnsc.nic.circle", "dnsd.nic.circle"}, n, n, "whois.nic.circle", e, "https://newgtlds.icann.org/", 0x40, t},
388 {"cisco", r, x, s{"ns1.dns.nic.cisco", "ns2.dns.nic.cisco", "ns3.dns.nic.cisco", "ns4.dns.nic.cisco", "ns5.dns.nic.cisco", "ns6.dns.nic.cisco"}, n, n, "whois.nic.cisco", e, "https://newgtlds.icann.org/", 0x42, f},
389 {"citadel", r, x, s{"ns1.dns.nic.citadel", "ns2.dns.nic.citadel", "ns3.dns.nic.citadel", "ns4.dns.nic.citadel", "ns5.dns.nic.citadel", "ns6.dns.nic.citadel"}, n, n, "whois.nic.citadel", e, "https://newgtlds.icann.org/", 0x42, f},
390 {"citi", r, x, s{"ns1.dns.nic.citi", "ns2.dns.nic.citi", "ns3.dns.nic.citi", "ns4.dns.nic.citi", "ns5.dns.nic.citi", "ns6.dns.nic.citi"}, n, n, "whois.nic.citi", e, "https://newgtlds.icann.org/", 0x42, f},
391 {"citic", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.citic", e, "https://newgtlds.icann.org/", 0x42, t},
392 {"city", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.city", e, e, 0x40, t},
393 {"cityeats", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.cityeats", e, "https://newgtlds.icann.org/", 0x48, f},
394 {"ck", r, z[2184:2192], s{"circa.mcs.vuw.ac.nz", "downstage.mcs.vuw.ac.nz", "parau.oyster.net.ck", "poiparau.oyster.net.ck"}, n, n, "whois.ck-nic.org.ck", e, "http://www.oyster.net.ck/about/index.php?about=domain", 0xa8, f},
395 {"cl", r, x, s{"a.nic.cl", "b.nic.cl", "c.nic.cl", "cl-ns.anycast.pch.net", "cl1-tld.d-zone.ca", "cl1.dnsnode.net", "cl2-tld.d-zone.ca"}, n, n, "whois.nic.cl", e, e, 0xa0, t},
396 {"claims", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.claims", e, e, 0x40, t},
397 {"cleaning", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cleaning", e, e, 0x40, t},
398 {"click", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.click/", 0x40, t},
399 {"clinic", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.clinic", e, e, 0x40, t},
400 {"clinique", r, x, s{"a0.nic.clinique", "a2.nic.clinique", "b0.nic.clinique", "c0.nic.clinique"}, n, n, "whois.nic.clinique", e, "https://newgtlds.icann.org/", 0x42, f},
401 {"clothing", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.clothing", e, e, 0x40, t},
402 {"cloud", r, x, s{"a.nic.cloud", "b.nic.cloud", "c.nic.cloud", "d.nic.cloud"}, n, n, "whois.nic.cloud", e, "https://newgtlds.icann.org/", 0x40, f},
403 {"club", r, x, s{"ns1.dns.nic.club", "ns2.dns.nic.club", "ns3.dns.nic.club", "ns4.dns.nic.club", "ns5.dns.nic.club", "ns6.dns.nic.club"}, n, n, "whois.nic.club", e, e, 0x40, t},
404 {"clubmed", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.clubmed", e, "https://newgtlds.icann.org/", 0x42, t},
405 {"cm", r, z[2192:2196], s{"auth02.ns.uu.net", "kim.camnet.cm", "lom.camnet.cm", "ns.itu.ch", "sanaga.camnet.cm"}, n, n, "whois.netcom.cm", "http://antic.cm", e, 0xa0, f},
406 {"cn", r, z[2196:2238], s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn", "ns.cernet.net"}, n, n, "whois.cnnic.cn", e, e, 0xa0, t},
407 {"co", r, z[2238:2245], s{"ns1.cctld.co", "ns2.cctld.co", "ns3.cctld.co", "ns4.cctld.co", "ns5.cctld.co", "ns6.cctld.co"}, n, n, "whois.nic.co", e, "http://www.go.co/", 0xe0, t},
408 {"coach", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.coach", e, "https://newgtlds.icann.org/", 0x40, t},
409 {"codes", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.codes", e, e, 0x40, t},
410 {"coffee", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.coffee", e, e, 0x40, t},
411 {"college", r, x, s{"a.nic.college", "b.nic.college", "c.nic.college", "d.nic.college"}, n, n, "whois.nic.college", e, "https://newgtlds.icann.org/", 0x40, t},
412 {"cologne", r, x, s{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, s{"Cologne", "Koeln"}, "whois.ryce-rsp.com", e, e, 0xc4, t},
413 {"com", r, z[2245:2275], s{"a.gtld-servers.net", "b.gtld-servers.net", "c.gtld-servers.net", "d.gtld-servers.net", "e.gtld-servers.net", "f.gtld-servers.net", "g.gtld-servers.net", "h.gtld-servers.net", "i.gtld-servers.net", "j.gtld-servers.net", "k.gtld-servers.net", "l.gtld-servers.net", "m.gtld-servers.net"}, n, n, "whois.verisign-grs.com", e, "http://www.verisigninc.com/en_US/products-and-services/domain-name-services/registry-services/index.xhtml", 0x40, t},
414 {"comcast", r, x, s{"dns1.nic.comcast", "dns2.nic.comcast", "dns3.nic.comcast", "dns4.nic.comcast", "dnsa.nic.comcast", "dnsb.nic.comcast", "dnsc.nic.comcast", "dnsd.nic.comcast"}, n, n, "whois.nic.comcast", e, "https://newgtlds.icann.org/", 0x42, f},
415 {"commbank", r, x, s{"a.nic.commbank", "b.nic.commbank", "c.nic.commbank", "d.nic.commbank"}, n, n, "whois.nic.commbank", e, "https://newgtlds.icann.org/", 0x42, f},
416 {"community", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.community", e, e, 0x40, t},
417 {"company", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.company", e, e, 0x40, t},
418 {"compare", r, x, s{"a.nic.compare", "b.nic.compare", "c.nic.compare", "d.nic.compare"}, n, n, "whois.nic.compare", e, "http://nic.compare", 0x40, f},
419 {"computer", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.computer", e, e, 0x40, t},
420 {"comsec", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.comsec", e, "https://newgtlds.icann.org/", 0x42, t},
421 {"condos", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.condos", e, e, 0x40, t},
422 {"connectors", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
423 {"construction", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.construction", e, e, 0x40, t},
424 {"consulting", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.consulting", e, e, 0x40, t},
425 {"contact", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.contact", e, "https://newgtlds.icann.org/", 0x40, t},
426 {"contractors", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.contractors", e, e, 0x40, t},
427 {"cooking", r, x, s{"dns1.nic.cooking", "dns2.nic.cooking", "dns3.nic.cooking", "dns4.nic.cooking", "dnsa.nic.cooking", "dnsb.nic.cooking", "dnsc.nic.cooking", "dnsd.nic.cooking"}, n, n, "whois.nic.cooking", e, "http://nic.cooking/", 0x40, t},
428 {"cookingchannel", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.cookingchannel", e, "https://newgtlds.icann.org/", 0x42, f},
429 {"cool", r, z[2275:2276], s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cool", e, e, 0x40, t},
430 {"coop", r, x, s{"a.nic.coop", "b.nic.coop", "c.nic.coop", "d.nic.coop"}, n, n, "whois.nic.coop", e, "http://www.nic.coop/", 0x1040, f},
431 {"corp", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
432 {"corsica", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, s{"FR-H"}, "whois-corsica.nic.fr", e, "https://newgtlds.icann.org/", 0x4c0, t},
433 {"country", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.country/", 0x40, t},
434 {"coupon", r, x, s{"ns1.dns.nic.coupon", "ns2.dns.nic.coupon", "ns3.dns.nic.coupon", "ns4.dns.nic.coupon", "ns5.dns.nic.coupon", "ns6.dns.nic.coupon"}, n, n, "whois.nic.coupon", e, "https://newgtlds.icann.org/", 0x40, t},
435 {"coupons", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.coupons", e, "https://newgtlds.icann.org/", 0x40, t},
436 {"courses", r, x, s{"a.nic.courses", "b.nic.courses", "c.nic.courses", "d.nic.courses"}, n, n, "whois.nic.courses", e, "https://newgtlds.icann.org/", 0x40, f},
437 {"cpa", r, x, s{"a.nic.cpa", "b.nic.cpa", "c.nic.cpa", "d.nic.cpa"}, n, n, "whois.nic.cpa", e, "https://newgtlds.icann.org/", 0x40, f},
438 {"cr", r, z[2276:2284], s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, "whois.nic.cr", "http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do", e, 0xa0, f},
439 {"credit", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.credit", e, e, 0x40, t},
440 {"creditcard", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.creditcard", e, e, 0x40, t},
441 {"creditunion", r, x, s{"a0.nic.creditunion", "a2.nic.creditunion", "b0.nic.creditunion", "c0.nic.creditunion"}, n, n, "whois.afilias-srs.net", e, "http://nic.creditunion/", 0x40, t},
442 {"cricket", r, x, s{"ns1.dns.nic.cricket", "ns2.dns.nic.cricket", "ns3.dns.nic.cricket", "ns4.dns.nic.cricket", "ns5.dns.nic.cricket", "ns6.dns.nic.cricket"}, n, n, "whois.nic.cricket", e, "https://www.famousfourmedia.com/", 0x40, t},
443 {"crown", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
444 {"crs", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.crs", e, "http://nic.crs/", 0x42, f},
445 {"cruise", r, x, s{"a0.nic.cruise", "a2.nic.cruise", "b0.nic.cruise", "c0.nic.cruise"}, n, n, "whois.nic.cruise", e, "https://newgtlds.icann.org/", 0x40, f},
446 {"cruises", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cruises", e, e, 0x40, t},
447 {"csc", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.csc", e, "https://newgtlds.icann.org/", 0x42, f},
448 {"cu", r, z[2284:2295], s{"cu.cctld.authdns.ripe.net", "ns.ceniai.net.cu", "ns.dns.br", "ns2.ceniai.net.cu", "ns2.gip.net", "rip.psg.com"}, n, n, e, "http://www.nic.cu/", e, 0xa0, f},
449 {"cuisinella", r, x, s{"a.nic.cuisinella", "b.nic.cuisinella", "c.nic.cuisinella", "d.nic.cuisinella"}, n, n, "whois.nic.cuisinella", e, "https://newgtlds.icann.org/", 0x42, f},
450 {"cv", r, z[2295:2303], s{"c.dns.pt", "cv01.dns.pt", "ns-ext.isc.org", "ns.dns.cv"}, n, n, e, "http://www.dns.cv/", e, 0xa0, f},
451 {"cw", r, z[2303:2305], s{"cw.cctld.authdns.ripe.net", "kadushi.curinfo.cw", "ns0.ja.net", "ns01-server.curinfo.cw", "ns1.uoc.cw", "ns2.uoc.cw", "ns3.uoc.cw"}, n, n, e, e, "http://en.wikipedia.org/wiki/.cw", 0xa0, f},
452 {"cx", r, z[2305:2310], s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, "whois.nic.cx", e, e, 0xa0, f},
453 {"cy", r, z[2310:2323], s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, "http://www.nic.cy/nslookup/online_database.php", e, 0xa8, f},
454 {"cymru", r, x, s{"dns1.nic.cymru", "dns2.nic.cymru", "dns3.nic.cymru", "dns4.nic.cymru", "dnsa.nic.cymru", "dnsb.nic.cymru", "dnsc.nic.cymru", "dnsd.nic.cymru"}, n, s{"GB-WLS"}, "whois.nic.cymru", e, "http://nic.cymru/", 0x440, t},
455 {"cyou", r, x, s{"a.nic.cyou", "b.nic.cyou", "c.nic.cyou", "d.nic.cyou"}, n, n, "whois.nic.cyou", e, "https://newgtlds.icann.org/", 0x40, f},
456 {"cz", r, z[2323:2324], s{"a.ns.nic.cz", "b.ns.nic.cz", "c.ns.nic.cz", "d.ns.nic.cz"}, n, n, "whois.nic.cz", e, "https://www.nic.cz/", 0xa0, t},
457 {"dabur", r, x, s{"a0.nic.dabur", "a2.nic.dabur", "b0.nic.dabur", "c0.nic.dabur"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, f},
458 {"dad", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
459 {"dance", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dance", e, e, 0x40, t},
460 {"data", r, x, s{"a0.nic.data", "a2.nic.data", "b0.nic.data", "c0.nic.data"}, n, n, "whois.nic.data", e, "https://newgtlds.icann.org/", 0x40, f},
461 {"date", r, x, s{"ns1.dns.nic.date", "ns2.dns.nic.date", "ns3.dns.nic.date", "ns4.dns.nic.date", "ns5.dns.nic.date", "ns6.dns.nic.date"}, n, n, "whois.nic.date", e, "https://www.famousfourmedia.com/", 0x40, t},
462 {"dating", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dating", e, e, 0x40, t},
463 {"datsun", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
464 {"day", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
465 {"dclk", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
466 {"dds", r, x, s{"dns1.nic.dds", "dns2.nic.dds", "dns3.nic.dds", "dns4.nic.dds", "dnsa.nic.dds", "dnsb.nic.dds", "dnsc.nic.dds", "dnsd.nic.dds"}, n, n, "whois.nic.dds", e, "http://nic.dds/", 0x40, t},
467 {"de", r, z[2324:2327], s{"a.nic.de", "f.nic.de", "l.de.net", "n.de.net", "s.de.net", "z.nic.de"}, n, n, "whois.denic.de", e, "https://www.denic.de/", 0xa0, t},
468 {"deal", r, x, s{"dns1.nic.deal", "dns2.nic.deal", "dns3.nic.deal", "dns4.nic.deal", "dnsa.nic.deal", "dnsb.nic.deal", "dnsc.nic.deal", "dnsd.nic.deal"}, n, n, "whois.nic.deal", e, "https://newgtlds.icann.org/", 0x40, t},
469 {"dealer", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.nic.dealer", e, "https://newgtlds.icann.org/", 0x40, t},
470 {"deals", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.deals", e, e, 0x40, t},
471 {"degree", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.degree", e, "https://newgtlds.icann.org/", 0x40, t},
472 {"delivery", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.delivery", e, "https://newgtlds.icann.org/", 0x40, t},
473 {"dell", r, x, s{"ns1.dns.nic.dell", "ns2.dns.nic.dell", "ns3.dns.nic.dell", "ns4.dns.nic.dell", "ns5.dns.nic.dell", "ns6.dns.nic.dell"}, n, n, "whois.nic.dell", e, "https://newgtlds.icann.org/", 0x42, f},
474 {"delmonte", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
475 {"deloitte", r, x, s{"a.nic.deloitte", "b.nic.deloitte", "c.nic.deloitte", "d.nic.deloitte"}, n, n, "whois.nic.deloitte", e, "https://newgtlds.icann.org/", 0x42, t},
476 {"delta", r, x, s{"a0.nic.delta", "a2.nic.delta", "b0.nic.delta", "c0.nic.delta"}, n, n, "whois.nic.delta", e, "https://newgtlds.icann.org/", 0x42, f},
477 {"democrat", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.democrat", e, e, 0x40, t},
478 {"dental", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dental", e, e, 0x40, t},
479 {"dentist", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dentist", e, "https://newgtlds.icann.org/", 0x40, t},
480 {"desi", r, x, s{"a.nic.desi", "b.nic.desi", "c.nic.desi", "d.nic.desi"}, n, n, "whois.nic.desi", e, e, 0x40, t},
481 {"design", r, x, s{"a.nic.design", "b.nic.design", "c.nic.design", "d.nic.design"}, n, n, "whois.nic.design", e, "https://newgtlds.icann.org/", 0x40, t},
482 {"deutschepost", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
483 {"dev", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
484 {"dhl", r, x, s{"a.nic.dhl", "b.nic.dhl", "c.nic.dhl", "d.nic.dhl"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
485 {"diamonds", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.diamonds", e, e, 0x40, t},
486 {"diet", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.diet/", 0x40, t},
487 {"digikey", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
488 {"digital", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.digital", e, e, 0x40, t},
489 {"direct", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.direct", e, e, 0x40, t},
490 {"directory", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.directory", e, e, 0x40, t},
491 {"discount", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.discount", e, e, 0x40, t},
492 {"discover", r, x, s{"ns1.dns.nic.discover", "ns2.dns.nic.discover", "ns3.dns.nic.discover", "ns4.dns.nic.discover", "ns5.dns.nic.discover", "ns6.dns.nic.discover"}, n, n, "whois.nic.discover", e, "https://newgtlds.icann.org/", 0x42, f},
493 {"dish", r, x, s{"a0.nic.dish", "a2.nic.dish", "b0.nic.dish", "c0.nic.dish"}, n, n, "whois.nic.dish", e, "https://newgtlds.icann.org/", 0x42, f},
494 {"diy", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.diy", e, "https://newgtlds.icann.org/", 0x40, f},
495 {"dj", r, x, s{"bow1.intnet.dj", "bow5.intnet.dj", "vps443605.ovh.net"}, n, n, e, "http://www.nic.dj/whois.php", e, 0xe0, f},
496 {"dk", r, z[2327:2329], s{"a.nic.dk", "b.nic.dk", "c.nic.dk", "d.nic.dk", "l.nic.dk", "p.nic.dk", "s.nic.dk"}, n, n, "whois.dk-hostmaster.dk", e, "https://www.dk-hostmaster.dk/", 0xa0, t},
497 {"dm", r, z[2329:2335], s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, "whois.nic.dm", e, e, 0xa0, t},
498 {"dnb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
499 {"dnp", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.dnp", e, "https://newgtlds.icann.org/", 0x42, t},
500 {"do", r, z[2335:2346], s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, "whois.nic.do", "http://www.nic.do/whois-h.php3", "http://www.nic.do/", 0xa0, f},
501 {"docomo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
502 {"docs", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
503 {"doctor", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.doctor", e, "https://newgtlds.icann.org/", 0x40, t},
504 {"dodge", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
505 {"dog", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dog", e, "https://newgtlds.icann.org/", 0x40, t},
506 {"doha", r, x, n, n, s{"Doha", "QA-DA"}, "whois.nic.doha", e, "https://newgtlds.icann.org/", 0xc4, f},
507 {"domains", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.domains", e, e, 0x40, t},
508 {"doosan", r, x, n, n, n, "whois.nic.xn--cg4bki", e, "https://newgtlds.icann.org/", 0x2042, f},
509 {"dot", r, x, s{"a0.nic.dot", "a2.nic.dot", "b0.nic.dot", "c0.nic.dot"}, n, n, "whois.nic.dot", e, "https://newgtlds.icann.org/", 0x40, f},
510 {"dotafrica", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
511 {"download", r, x, s{"ns1.dns.nic.download", "ns2.dns.nic.download", "ns3.dns.nic.download", "ns4.dns.nic.download", "ns5.dns.nic.download", "ns6.dns.nic.download"}, n, n, "whois.nic.download", e, "https://www.famousfourmedia.com/", 0x40, t},
512 {"drive", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
513 {"dstv", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
514 {"dtv", r, x, s{"a0.nic.dtv", "a2.nic.dtv", "b0.nic.dtv", "c0.nic.dtv"}, n, n, "whois.nic.dtv", e, "https://newgtlds.icann.org/", 0x42, f},
515 {"dubai", r, x, s{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, s{"AE-DU", "Dubai"}, "whois.nic.dubai", e, "https://newgtlds.icann.org/", 0xc4, f},
516 {"duck", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.duck", e, "https://newgtlds.icann.org/", 0x40, f},
517 {"dunlop", r, x, s{"a0.nic.dunlop", "a2.nic.dunlop", "b0.nic.dunlop", "c0.nic.dunlop"}, n, n, "whois.nic.dunlop", e, "https://newgtlds.icann.org/", 0x42, f},
518 {"duns", r, x, n, n, n, "whois.nic.duns", e, "https://newgtlds.icann.org/", 0x42, f},
519 {"dupont", r, x, s{"ns1.dns.nic.dupont", "ns2.dns.nic.dupont", "ns3.dns.nic.dupont", "ns4.dns.nic.dupont", "ns5.dns.nic.dupont", "ns6.dns.nic.dupont"}, n, n, "whois.nic.dupont", e, "https://newgtlds.icann.org/", 0x42, f},
520 {"durban", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, s{"Durban"}, "durban-whois.registry.net.za", e, e, 0xc4, t},
521 {"dvag", r, x, s{"a.nic.dvag", "b.nic.dvag", "c.nic.dvag", "d.nic.dvag"}, n, n, "whois.nic.dvag", e, "https://newgtlds.icann.org/", 0x42, f},
522 {"dvr", r, x, s{"a0.nic.dvr", "a2.nic.dvr", "b0.nic.dvr", "c0.nic.dvr"}, n, n, "whois.nic.dvr", e, "https://newgtlds.icann.org/", 0x42, f},
523 {"dwg", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
524 {"dz", r, z[2346:2354], s{"ns-dz.afrinic.net", "ns1.nic.dz", "ns2.nic.dz", "ns3.nic.fr", "ns4.nic.dz", "ns5.nic.dz"}, n, n, "whois.nic.dz", e, e, 0xa0, f},
525 {"earth", r, x, s{"ns1.dns.nic.earth", "ns2.dns.nic.earth", "ns3.dns.nic.earth", "ns4.dns.nic.earth", "ns5.dns.nic.earth", "ns6.dns.nic.earth"}, n, n, "whois.nic.earth", e, "https://newgtlds.icann.org/", 0x40, f},
526 {"eat", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
527 {"ec", r, z[2354:2365], s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, "whois.nic.ec", e, e, 0xa0, f},
528 {"eco", r, x, s{"a0.nic.eco", "a2.nic.eco", "b0.nic.eco", "c0.nic.eco"}, n, n, "whois.nic.eco", e, "http://nic.eco/", 0x40, f},
529 {"ecom", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
530 {"edeka", r, x, s{"a0.nic.edeka", "a2.nic.edeka", "b0.nic.edeka", "c0.nic.edeka"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
531 {"edu", r, x, s{"a.edu-servers.net", "b.edu-servers.net", "c.edu-servers.net", "d.edu-servers.net", "e.edu-servers.net", "f.edu-servers.net", "g.edu-servers.net", "h.edu-servers.net", "i.edu-servers.net", "j.edu-servers.net", "k.edu-servers.net", "l.edu-servers.net", "m.edu-servers.net"}, n, n, "whois.educause.edu", e, e, 0x1040, f},
532 {"education", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.education", e, e, 0x40, t},
533 {"ee", r, z[2365:2379], s{"b.tld.ee", "e.tld.ee", "ee.aso.ee", "ee.eenet.ee", "ns.tld.ee"}, n, n, "whois.tld.ee", e, e, 0xa0, f},
534 {"eg", r, z[2379:2391], s{"frcu.eun.eg", "ns5.univie.ac.at", "rip.psg.com"}, n, n, e, "http://lookup.egregistry.eg/english.aspx", e, 0xa0, f},
535 {"email", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.email", e, e, 0x40, t},
536 {"emerck", r, x, s{"a0.nic.emerck", "a2.nic.emerck", "b0.nic.emerck", "c0.nic.emerck"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
537 {"emerson", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
538 {"energy", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.energy", e, "https://newgtlds.icann.org/", 0x40, t},
539 {"engineer", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.engineer", e, e, 0x40, t},
540 {"engineering", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.engineering", e, e, 0x40, t},
541 {"enterprises", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.enterprises", e, "https://newgtlds.icann.org/", 0x40, t},
542 {"epost", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
543 {"epson", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.epson", e, "https://newgtlds.icann.org/", 0x42, f},
544 {"equipment", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.equipment", e, e, 0x40, t},
545 {"er", r, z[2391:2398], s{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0xa8, f},
546 {"ericsson", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.ericsson", e, "https://newgtlds.icann.org/", 0x42, f},
547 {"erni", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.erni", e, "https://newgtlds.icann.org/", 0x42, f},
548 {"es", r, z[2398:2403], s{"a.nic.es", "f.nic.es", "g.nic.es", "h.nic.es", "ns-es.nic.fr", "ns1.cesca.es", "ssdns-tld.nic.cl"}, n, n, "whois.nic.es", e, e, 0xa0, t},
549 {"esq", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
550 {"estate", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.estate", e, e, 0x40, t},
551 {"esurance", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
552 {"et", r, z[2403:2411], s{"a.nic.et", "b.nic.et"}, n, n, e, e, "http://www.ethionet.et/?q=ipservicedomainname", 0xa0, f},
553 {"etisalat", r, x, s{"a.nic.etisalat", "b.nic.etisalat", "c.nic.etisalat", "d.nic.etisalat"}, n, n, "whois.centralnic.com", e, "https://newgtlds.icann.org/", 0x42, f},
554 {"eu", r, z[2411:2414], s{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, "whois.eu", e, e, 0xa0, t},
555 {"eurovision", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.eurovision", e, "https://newgtlds.icann.org/", 0x42, f},
556 {"eus", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.eus", e, e, 0x440, t},
557 {"events", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.events", e, e, 0x40, t},
558 {"everbank", r, x, n, n, n, "whois.nic.everbank", e, "https://newgtlds.icann.org/", 0x42, f},
559 {"exchange", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.exchange", e, e, 0x40, t},
560 {"expert", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.expert", e, e, 0x40, t},
561 {"exposed", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.exposed", e, e, 0x40, t},
562 {"express", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.express", e, "https://newgtlds.icann.org/", 0x40, t},
563 {"extraspace", r, x, s{"a0.nic.extraspace", "a2.nic.extraspace", "b0.nic.extraspace", "c0.nic.extraspace"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
564 {"fage", r, x, s{"a0.nic.fage", "a2.nic.fage", "b0.nic.fage", "c0.nic.fage"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
565 {"fail", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fail", e, e, 0x40, t},
566 {"fairwinds", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.fairwinds", e, "https://newgtlds.icann.org/", 0x42, t},
567 {"faith", r, x, s{"ns1.dns.nic.faith", "ns2.dns.nic.faith", "ns3.dns.nic.faith", "ns4.dns.nic.faith", "ns5.dns.nic.faith", "ns6.dns.nic.faith"}, n, n, "whois.nic.faith", e, "https://www.famousfourmedia.com/", 0x40, t},
568 {"family", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.family", e, "https://newgtlds.icann.org/", 0x40, t},
569 {"fan", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fan", e, "https://newgtlds.icann.org/", 0x40, t},
570 {"fans", r, x, s{"a.nic.fans", "b.nic.fans", "c.nic.fans", "d.nic.fans"}, n, n, "whois.nic.fans", e, "https://newgtlds.icann.org/", 0x40, f},
571 {"farm", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.farm", e, e, 0x40, t},
572 {"farmers", r, x, s{"ns1.dns.nic.farmers", "ns2.dns.nic.farmers", "ns3.dns.nic.farmers", "ns4.dns.nic.farmers", "ns5.dns.nic.farmers", "ns6.dns.nic.farmers"}, n, n, "whois.nic.farmers", e, "https://newgtlds.icann.org/", 0x42, f},
573 {"fashion", r, x, s{"dns1.nic.fashion", "dns2.nic.fashion", "dns3.nic.fashion", "dns4.nic.fashion", "dnsa.nic.fashion", "dnsb.nic.fashion", "dnsc.nic.fashion", "dnsd.nic.fashion"}, n, n, "whois.nic.fashion", e, "http://nic.fashion/", 0x40, t},
574 {"fast", r, x, s{"dns1.nic.fast", "dns2.nic.fast", "dns3.nic.fast", "dns4.nic.fast", "dnsa.nic.fast", "dnsb.nic.fast", "dnsc.nic.fast", "dnsd.nic.fast"}, n, n, "whois.nic.fast", e, "https://newgtlds.icann.org/", 0x42, t},
575 {"fedex", r, x, s{"a0.nic.fedex", "a2.nic.fedex", "b0.nic.fedex", "c0.nic.fedex"}, n, n, "whois.nic.fedex", e, "https://newgtlds.icann.org/", 0x42, f},
576 {"feedback", r, x, s{"a.nic.feedback", "b.nic.feedback", "c.nic.feedback", "d.nic.feedback"}, n, n, "whois.nic.feedback", e, "https://newgtlds.icann.org/", 0x40, t},
577 {"ferrari", r, x, s{"a0.nic.ferrari", "a2.nic.ferrari", "b0.nic.ferrari", "c0.nic.ferrari"}, n, n, "whois.nic.ferrari", e, "https://newgtlds.icann.org/", 0x42, f},
578 {"ferrero", r, x, s{"ns1.dns.nic.ferrero", "ns2.dns.nic.ferrero", "ns3.dns.nic.ferrero", "ns4.dns.nic.ferrero", "ns5.dns.nic.ferrero", "ns6.dns.nic.ferrero"}, n, n, "whois.nic.ferrero", e, "https://newgtlds.icann.org/", 0x42, t},
579 {"fi", r, x, s{"a.fi", "b.fi", "c.fi", "d.fi", "e.fi", "f.fi", "g.fi", "h.fi", "i.fi"}, n, n, "whois.fi", e, e, 0xa0, t},
580 {"fiat", r, x, s{"a0.nic.fiat", "a2.nic.fiat", "b0.nic.fiat", "c0.nic.fiat"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
581 {"fidelity", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.fidelity", e, "https://newgtlds.icann.org/", 0x42, f},
582 {"fido", r, x, s{"a0.nic.fido", "a2.nic.fido", "b0.nic.fido", "c0.nic.fido"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
583 {"film", r, x, s{"a.nic.film", "b.nic.film", "c.nic.film", "d.nic.film"}, n, n, "whois.nic.film", e, "https://newgtlds.icann.org/", 0x40, f},
584 {"final", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x40, t},
585 {"finance", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.finance", e, e, 0x40, t},
586 {"financial", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.financial", e, e, 0x40, t},
587 {"financialaid", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
588 {"finish", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
589 {"fire", r, x, s{"dns1.nic.fire", "dns2.nic.fire", "dns3.nic.fire", "dns4.nic.fire", "dnsa.nic.fire", "dnsb.nic.fire", "dnsc.nic.fire", "dnsd.nic.fire"}, n, n, "whois.nic.fire", e, "https://newgtlds.icann.org/", 0x42, t},
590 {"firestone", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.firestone", e, "https://newgtlds.icann.org/", 0x42, f},
591 {"firmdale", r, x, s{"ns1.nic.firmdale", "ns2.nic.firmdale"}, n, n, "whois.nic.firmdale", e, "https://newgtlds.icann.org/", 0x42, f},
592 {"fish", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fish", e, e, 0x40, t},
593 {"fishing", r, x, s{"dns1.nic.fishing", "dns2.nic.fishing", "dns3.nic.fishing", "dns4.nic.fishing", "dnsa.nic.fishing", "dnsb.nic.fishing", "dnsc.nic.fishing", "dnsd.nic.fishing"}, n, n, "whois.nic.fishing", e, "http://nic.fishing/", 0x40, t},
594 {"fit", r, x, s{"dns1.nic.fit", "dns2.nic.fit", "dns3.nic.fit", "dns4.nic.fit", "dnsa.nic.fit", "dnsb.nic.fit", "dnsc.nic.fit", "dnsd.nic.fit"}, n, n, "whois.nic.fit", e, "http://nic.fit/", 0x40, t},
595 {"fitness", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fitness", e, e, 0x40, t},
596 {"fj", r, z[2414:2425], s{"adns1.berkeley.edu", "adns2.berkeley.edu", "auth00.ns.uu.net", "manu.usp.ac.fj", "rip.psg.com", "teri.usp.ac.fj"}, n, n, "whois.usp.ac.fj", "http://domains.fj", e, 0xa0, f},
597 {"fk", r, z[2425:2431], s{"ns1.horizon.net.fk", "ns2.horizon.net.fk", "ns3.horizon.net.fk"}, n, n, e, "http://whois.marcaria.com", e, 0xa8, f},
598 {"flickr", r, x, s{"ns1.dns.nic.flickr", "ns2.dns.nic.flickr", "ns3.dns.nic.flickr", "ns4.dns.nic.flickr", "ns5.dns.nic.flickr", "ns6.dns.nic.flickr"}, n, n, "whois.nic.flickr", e, "https://newgtlds.icann.org/", 0x42, t},
599 {"flights", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.flights", e, e, 0x40, t},
600 {"flir", r, x, s{"ns1.dns.nic.flir", "ns2.dns.nic.flir", "ns3.dns.nic.flir", "ns4.dns.nic.flir", "ns5.dns.nic.flir", "ns6.dns.nic.flir"}, n, n, "whois.nic.flir", e, "https://newgtlds.icann.org/", 0x42, f},
601 {"florist", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.florist", e, e, 0x40, t},
602 {"flowers", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.flowers/", 0x40, t},
603 {"fls", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
604 {"flsmidth", r, x, n, n, n, "whois.ksregistry.net", e, "https://newgtlds.icann.org/", 0x2042, f},
605 {"fly", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
606 {"fm", r, z[2431:2437], s{"tld1.ultradns.net", "tld2.ultradns.net", "tld3.ultradns.org", "tld4.ultradns.org", "tld5.ultradns.info", "tld6.ultradns.co.uk"}, s{"198.74.54.240"}, n, "whois.nic.fm", "http://dot.fm/whois.html", e, 0xe0, t},
607 {"fo", r, z[2437:2459], s{"a.nic.fo", "b.nic.fo", "c.nic.fo", "d.nic.fo"}, n, n, "whois.nic.fo", e, e, 0xa0, f},
608 {"foo", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
609 {"food", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.food", e, "https://newgtlds.icann.org/", 0x40, f},
610 {"foodnetwork", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.foodnetwork", e, "https://newgtlds.icann.org/", 0x42, f},
611 {"football", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.football", e, "https://newgtlds.icann.org/", 0x40, t},
612 {"ford", r, x, s{"ns1.dns.nic.ford", "ns2.dns.nic.ford", "ns3.dns.nic.ford", "ns4.dns.nic.ford", "ns5.dns.nic.ford", "ns6.dns.nic.ford"}, n, n, "whois.nic.ford", e, "https://newgtlds.icann.org/", 0x42, f},
613 {"forex", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.forex", e, "https://bostonivy.co/", 0x40, f},
614 {"forsale", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.forsale", e, "https://newgtlds.icann.org/", 0x40, t},
615 {"forum", r, x, s{"a.nic.forum", "b.nic.forum", "c.nic.forum", "d.nic.forum"}, n, n, "whois.nic.forum", e, "https://newgtlds.icann.org/", 0x40, t},
616 {"foundation", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.foundation", e, e, 0x40, t},
617 {"fox", r, x, s{"ns1.dns.nic.fox", "ns2.dns.nic.fox", "ns3.dns.nic.fox", "ns4.dns.nic.fox", "ns5.dns.nic.fox", "ns6.dns.nic.fox"}, n, n, "whois.nic.fox", e, "https://newgtlds.icann.org/", 0x42, f},
618 {"fr", r, z[2459:2477], s{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.fr", e, e, 0xa0, t},
619 {"free", r, x, s{"dns1.nic.free", "dns2.nic.free", "dns3.nic.free", "dns4.nic.free", "dnsa.nic.free", "dnsb.nic.free", "dnsc.nic.free", "dnsd.nic.free"}, n, n, "whois.nic.free", e, "https://newgtlds.icann.org/", 0x40, t},
620 {"fresenius", r, x, s{"a.nic.fresenius", "b.nic.fresenius", "c.nic.fresenius", "d.nic.fresenius"}, n, n, "whois.nic.fresenius", e, "https://newgtlds.icann.org/", 0x42, f},
621 {"frl", r, x, s{"a.nic.frl", "b.nic.frl", "c.nic.frl", "d.nic.frl"}, n, s{"NL-FY"}, "whois.nic.frl", e, "https://newgtlds.icann.org/", 0x440, t},
622 {"frogans", r, x, s{"a0.nic.frogans", "a2.nic.frogans", "b0.nic.frogans", "c0.nic.frogans"}, n, n, "whois.nic.frogans", e, "https://newgtlds.icann.org/", 0x42, t},
623 {"frontdoor", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.frontdoor", e, "https://newgtlds.icann.org/", 0x40, f},
624 {"frontier", r, x, s{"ns1.dns.nic.frontier", "ns2.dns.nic.frontier", "ns3.dns.nic.frontier", "ns4.dns.nic.frontier", "ns5.dns.nic.frontier", "ns6.dns.nic.frontier"}, n, n, "whois.nic.frontier", e, "https://newgtlds.icann.org/", 0x42, f},
625 {"ftr", r, x, s{"ns1.dns.nic.ftr", "ns2.dns.nic.ftr", "ns3.dns.nic.ftr", "ns4.dns.nic.ftr", "ns5.dns.nic.ftr", "ns6.dns.nic.ftr"}, n, n, "whois.nic.ftr", e, "https://newgtlds.icann.org/", 0x42, f},
626 {"fujitsu", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
627 {"fujixerox", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.fujixerox", e, "https://newgtlds.icann.org/", 0x42, t},
628 {"fun", r, x, s{"a.nic.fun", "b.nic.fun", "e.nic.fun", "f.nic.fun"}, n, n, "whois.nic.fun", e, "https://newgtlds.icann.org/", 0x40, t},
629 {"fund", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fund", e, e, 0x40, t},
630 {"furniture", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.furniture", e, e, 0x40, t},
631 {"futbol", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.futbol", e, e, 0x40, t},
632 {"fyi", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fyi", e, "https://newgtlds.icann.org/", 0x40, t},
633 {"ga", r, z[2477:2490], s{"a.ns.ga", "b.ns.ga", "c.ns.ga", "d.ns.ga"}, n, n, "whois.dot.ga", e, e, 0xa0, t},
634 {"gal", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"ES-GA"}, "whois.nic.gal", e, e, 0x4c0, t},
635 {"gallery", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gallery", e, e, 0x40, t},
636 {"gallo", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.gallo", e, "https://newgtlds.icann.org/", 0x42, f},
637 {"gallup", r, x, s{"a0.nic.gallup", "a2.nic.gallup", "b0.nic.gallup", "c0.nic.gallup"}, n, n, "whois.nic.gallup", e, "https://newgtlds.icann.org/", 0x42, f},
638 {"game", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.game/", 0x40, t},
639 {"games", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.games", e, "https://newgtlds.icann.org/", 0x40, t},
640 {"gap", r, x, s{"ns1.dns.nic.gap", "ns2.dns.nic.gap", "ns3.dns.nic.gap", "ns4.dns.nic.gap", "ns5.dns.nic.gap", "ns6.dns.nic.gap"}, n, n, "whois.nic.gap", e, "https://newgtlds.icann.org/", 0x42, f},
641 {"garden", r, x, s{"dns1.nic.garden", "dns2.nic.garden", "dns3.nic.garden", "dns4.nic.garden", "dnsa.nic.garden", "dnsb.nic.garden", "dnsc.nic.garden", "dnsd.nic.garden"}, n, n, "whois.nic.garden", e, "http://nic.garden/", 0x40, t},
642 {"garnier", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
643 {"gay", r, x, s{"a.nic.gay", "b.nic.gay", "c.nic.gay", "d.nic.gay"}, n, n, "whois.nic.gay", e, "https://newgtlds.icann.org/", 0x40, f},
644 {"gb", r, z[2490:2491], s{"ns.uu.net", "ns0.ja.net", "ns4.ja.net"}, n, n, e, e, e, 0xa8, f},
645 {"gbiz", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
646 {"gcc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
647 {"gd", r, z[2491:2498], s{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, "whois.nic.gd", e, e, 0xa0, f},
648 {"gdn", r, x, s{"ns1.nic.gdn", "ns3.nic.gdn", "ns4.nic.gdn"}, n, n, "whois.nic.gdn", e, "https://newgtlds.icann.org/", 0x42, f},
649 {"ge", r, z[2498:2506], s{"ge.hostmaster.ua", "ns.nic.ge", "ns.uu.net", "ns2.nic.fr", "ns2.nic.ge"}, n, n, "whois.nic.ge", "http://www.registration.ge/", "http://www.nic.net.ge/", 0xa0, f},
650 {"gea", r, x, s{"a0.nic.gea", "a2.nic.gea", "b0.nic.gea", "c0.nic.gea"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
651 {"gecompany", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
652 {"ged", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
653 {"gent", r, x, s{"a.nic.gent", "b.nic.gent", "c.nic.gent", "d.nic.gent"}, n, s{"Gent", "Ghent"}, "whois.nic.gent", e, e, 0xc4, t},
654 {"genting", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.genting", e, "https://newgtlds.icann.org/", 0x40, t},
655 {"george", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.george", e, "https://newgtlds.icann.org/", 0x42, f},
656 {"gf", r, x, s{"ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, "whois.mediaserv.net", "https://www.dom-enic.com/whois.html", e, 0xa0, f},
657 {"gg", r, z[2506:2517], s{"c.ci-servers.org", "dns1.nominetdns.uk", "e.ci-servers.gg", "f.ci-servers.je", "ns0.ja.net", "ns99.dns.net.nz"}, n, n, "whois.gg", e, e, 0xa0, f},
658 {"ggee", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.ggee", e, "https://newgtlds.icann.org/", 0x42, t},
659 {"gh", r, z[2517:2523], s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, "http://www.nic.gh/customer/search_c.htm", e, 0xa8, f},
660 {"gi", r, z[2523:2529], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, "whois2.afilias-grs.net", e, e, 0xa0, f},
661 {"gift", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.gift/", 0x40, t},
662 {"gifts", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gifts", e, e, 0x40, t},
663 {"gives", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gives", e, "https://newgtlds.icann.org/", 0x40, t},
664 {"giving", r, x, s{"a.nic.giving", "b.nic.giving", "c.nic.giving", "d.nic.giving"}, n, n, "whois.nic.giving", e, "https://newgtlds.icann.org/", 0x40, f},
665 {"gl", r, z[2529:2534], s{"a.nuuk.nic.gl", "d.nic.gl", "ns.cocca.fr"}, n, n, "whois.nic.gl", e, e, 0xa0, t},
666 {"glade", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.glade", e, "https://newgtlds.icann.org/", 0x42, f},
667 {"glass", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.glass", e, e, 0x40, t},
668 {"gle", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
669 {"global", r, x, s{"a0.nic.global", "a2.nic.global", "b0.nic.global", "c0.nic.global"}, n, n, "whois.nic.global", e, e, 0x40, t},
670 {"globalx", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
671 {"globo", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x42, t},
672 {"gm", r, x, s{"ns-gm.afrinic.net", "ns1.nic.gm", "ns2.nic.gm"}, n, n, e, "http://www.nic.gm/htmlpages/whois.htm", e, 0xa0, f},
673 {"gmail", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
674 {"gmbh", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gmbh", e, "https://newgtlds.icann.org/", 0x40, t},
675 {"gmc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
676 {"gmo", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
677 {"gmx", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.gmx", e, "https://newgtlds.icann.org/", 0x42, t},
678 {"gn", r, z[2534:2540], s{"fork.sth.dnsnode.net", "ns-gn.afrinic.net", "rip.psg.com"}, n, n, e, e, e, 0xa8, f},
679 {"godaddy", r, x, s{"a0.nic.godaddy", "a2.nic.godaddy", "b0.nic.godaddy", "c0.nic.godaddy"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
680 {"gold", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gold", e, "https://newgtlds.icann.org/", 0x40, t},
681 {"goldpoint", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.goldpoint", e, "https://newgtlds.icann.org/", 0x42, t},
682 {"golf", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.golf", e, "https://newgtlds.icann.org/", 0x40, t},
683 {"goo", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
684 {"goodhands", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
685 {"goodyear", r, x, s{"a0.nic.goodyear", "a2.nic.goodyear", "b0.nic.goodyear", "c0.nic.goodyear"}, n, n, "whois.nic.goodyear", e, "https://newgtlds.icann.org/", 0x42, f},
686 {"goog", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
687 {"google", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
688 {"gop", r, x, s{"dns1.nic.gop", "dns2.nic.gop", "dns3.nic.gop", "dns4.nic.gop", "dnsa.nic.gop", "dnsb.nic.gop", "dnsc.nic.gop", "dnsd.nic.gop"}, n, n, "whois.nic.gop", e, "http://nic.gop/", 0x40, f},
689 {"got", r, x, s{"dns1.nic.got", "dns2.nic.got", "dns3.nic.got", "dns4.nic.got", "dnsa.nic.got", "dnsb.nic.got", "dnsc.nic.got", "dnsd.nic.got"}, n, n, "whois.nic.got", e, "https://newgtlds.icann.org/", 0x42, t},
690 {"gotv", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
691 {"gov", r, x, s{"a.gov-servers.net", "b.gov-servers.net", "c.gov-servers.net", "d.gov-servers.net"}, n, n, "whois.dotgov.gov", e, e, 0x1040, f},
692 {"gp", r, z[2540:2551], s{"a.lactld.org", "gp.cctld.authdns.ripe.net", "ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, "whois.nic.gp", "https://www.dom-enic.com/whois.html", e, 0xa0, f},
693 {"gq", r, x, s{"a.ns.gq", "b.ns.gq", "c.ns.gq", "d.ns.gq"}, n, n, "whois.dominio.gq", e, e, 0xa0, t},
694 {"gr", r, z[2551:2556], s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "gr-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, "https://grweb.ics.forth.gr/Whois?lang=en", e, 0xa0, t},
695 {"grainger", r, x, s{"ns1.dns.nic.grainger", "ns2.dns.nic.grainger", "ns3.dns.nic.grainger", "ns4.dns.nic.grainger", "ns5.dns.nic.grainger", "ns6.dns.nic.grainger"}, n, n, "whois.nic.grainger", e, "https://newgtlds.icann.org/", 0x42, f},
696 {"graphics", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.graphics", e, e, 0x40, t},
697 {"gratis", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gratis", e, e, 0x40, t},
698 {"gree", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
699 {"green", r, x, s{"a0.nic.green", "a2.nic.green", "b0.nic.green", "c0.nic.green"}, n, n, "whois.afilias.net", e, "http://nic.green/", 0x40, f},
700 {"gripe", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gripe", e, e, 0x40, t},
701 {"grocery", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
702 {"group", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.group", e, "https://newgtlds.icann.org/", 0x40, t},
703 {"gs", r, x, s{"ns.anycast.nic.gs", "ns.cocca.fr"}, n, n, "whois.nic.gs", e, e, 0xa0, f},
704 {"gt", r, z[2556:2563], s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, "http://www.gt/", e, 0xa0, f},
705 {"gu", r, z[2563:2570], s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, "http://gadao.gov.gu/domainsearch.htm", "http://gadao.gov.gu", 0xa0, f},
706 {"guardian", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
707 {"guardianlife", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
708 {"guardianmedia", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
709 {"gucci", r, x, s{"ns1.dns.nic.gucci", "ns2.dns.nic.gucci", "ns3.dns.nic.gucci", "ns4.dns.nic.gucci", "ns5.dns.nic.gucci", "ns6.dns.nic.gucci"}, n, n, "whois.nic.gucci", e, "https://newgtlds.icann.org/", 0x42, t},
710 {"guge", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
711 {"guide", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.guide", e, e, 0x40, t},
712 {"guitars", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.guitars/", 0x40, t},
713 {"guru", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.guru", e, e, 0x40, t},
714 {"gw", r, x, s{"gw01.dns.pt", "gw03.dns.pt", "h.dns.pt"}, n, n, e, "http://nic.gw/en/whois/", e, 0xa0, f},
715 {"gy", r, z[2570:2574], s{"a.lactld.org", "gy-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, "whois.registry.gy", e, e, 0xa0, f},
716 {"hair", r, x, s{"a.nic.hair", "b.nic.hair", "c.nic.hair", "d.nic.hair"}, n, n, "whois.nic.hair", e, "https://newgtlds.icann.org/", 0x40, t},
717 {"halal", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
718 {"hamburg", r, x, s{"a.dns.nic.hamburg", "m.dns.nic.hamburg", "n.dns.nic.hamburg"}, n, s{"Hamburg", "DE-HH"}, "whois.nic.hamburg", e, e, 0xc4, t},
719 {"hangout", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
720 {"haus", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.haus", e, e, 0x40, t},
721 {"hbo", r, x, s{"ns1.dns.nic.hbo", "ns2.dns.nic.hbo", "ns3.dns.nic.hbo", "ns4.dns.nic.hbo", "ns5.dns.nic.hbo", "ns6.dns.nic.hbo"}, n, n, "whois.nic.hbo", e, "https://newgtlds.icann.org/", 0x42, f},
722 {"hdfc", r, x, s{"a0.nic.hdfc", "a2.nic.hdfc", "b0.nic.hdfc", "c0.nic.hdfc"}, n, n, "whois.nic.hdfc", e, "https://newgtlds.icann.org/", 0x42, f},
723 {"hdfcbank", r, x, s{"a0.nic.hdfcbank", "a2.nic.hdfcbank", "b0.nic.hdfcbank", "c0.nic.hdfcbank"}, n, n, "whois.nic.hdfcbank", e, "https://newgtlds.icann.org/", 0x42, f},
724 {"health", r, x, s{"ns1.dns.nic.health", "ns2.dns.nic.health", "ns3.dns.nic.health", "ns4.dns.nic.health", "ns5.dns.nic.health", "ns6.dns.nic.health"}, n, n, "whois.nic.health", e, "https://newgtlds.icann.org/", 0x40, f},
725 {"healthcare", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.healthcare", e, e, 0x40, t},
726 {"heart", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
727 {"heinz", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
728 {"help", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.help/", 0x40, t},
729 {"helsinki", r, x, s{"a0.nic.helsinki", "a2.nic.helsinki", "b0.nic.helsinki", "c0.nic.helsinki"}, n, n, "whois.nic.helsinki", e, "https://newgtlds.icann.org/", 0x40, f},
730 {"here", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
731 {"hermes", r, x, s{"a0.nic.hermes", "a2.nic.hermes", "b0.nic.hermes", "c0.nic.hermes"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
732 {"hgtv", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.hgtv", e, "https://newgtlds.icann.org/", 0x42, f},
733 {"hilton", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
734 {"hiphop", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.hiphop", 0x40, t},
735 {"hisamitsu", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
736 {"hitachi", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
737 {"hiv", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.hiv/", 0x40, t},
738 {"hk", r, z[2574:2583], s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, "whois.hkirc.hk", e, e, 0xa0, t},
739 {"hkt", r, x, s{"a0.nic.hkt", "a2.nic.hkt", "b0.nic.hkt", "c0.nic.hkt"}, n, n, "whois.nic.hkt", e, "https://newgtlds.icann.org/", 0x42, f},
740 {"hm", r, x, s{"ns1.registry.hm", "ns2.registry.hm", "ns3.registry.hm"}, n, n, "whois.registry.hm", e, "http://www.registry.hm/", 0xa0, f},
741 {"hn", r, z[2583:2589], s{"a.lactld.org", "nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, "whois.nic.hn", e, e, 0xa0, f},
742 {"hockey", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.hockey", e, "https://newgtlds.icann.org/", 0x40, t},
743 {"holdings", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.holdings", e, e, 0x40, t},
744 {"holiday", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.holiday", e, e, 0x40, t},
745 {"home", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
746 {"homedepot", r, x, s{"a0.nic.homedepot", "a2.nic.homedepot", "b0.nic.homedepot", "c0.nic.homedepot"}, n, n, "whois.nic.homedepot", e, "https://newgtlds.icann.org/", 0x42, f},
747 {"homegoods", r, x, s{"ns1.dns.nic.homegoods", "ns2.dns.nic.homegoods", "ns3.dns.nic.homegoods", "ns4.dns.nic.homegoods", "ns5.dns.nic.homegoods", "ns6.dns.nic.homegoods"}, n, n, "whois.nic.homegoods", e, "https://newgtlds.icann.org/", 0x42, f},
748 {"homes", r, x, s{"a0.nic.homes", "a2.nic.homes", "b0.nic.homes", "c0.nic.homes"}, n, n, "whois.afilias-srs.net", e, "http://nic.homes/", 0x40, f},
749 {"homesense", r, x, s{"ns1.dns.nic.homesense", "ns2.dns.nic.homesense", "ns3.dns.nic.homesense", "ns4.dns.nic.homesense", "ns5.dns.nic.homesense", "ns6.dns.nic.homesense"}, n, n, "whois.nic.homesense", e, "https://newgtlds.icann.org/", 0x42, f},
750 {"honda", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.honda", e, "https://newgtlds.icann.org/", 0x42, f},
751 {"honeywell", r, x, n, n, n, "whois.nic.honeywell", e, "https://newgtlds.icann.org/", 0x42, f},
752 {"horse", r, x, s{"dns1.nic.horse", "dns2.nic.horse", "dns3.nic.horse", "dns4.nic.horse", "dnsa.nic.horse", "dnsb.nic.horse", "dnsc.nic.horse", "dnsd.nic.horse"}, n, n, "whois.nic.horse", e, "http://nic.horse/", 0x40, t},
753 {"hospital", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.hospital", e, "https://newgtlds.icann.org/", 0x40, t},
754 {"host", r, x, s{"a.nic.host", "b.nic.host", "e.nic.host", "f.nic.host"}, n, n, "whois.nic.host", e, e, 0x40, t},
755 {"hosting", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.hosting/", 0x40, t},
756 {"hot", r, x, s{"dns1.nic.hot", "dns2.nic.hot", "dns3.nic.hot", "dns4.nic.hot", "dnsa.nic.hot", "dnsb.nic.hot", "dnsc.nic.hot", "dnsd.nic.hot"}, n, n, "whois.nic.hot", e, "https://newgtlds.icann.org/", 0x40, t},
757 {"hoteis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
758 {"hotel", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
759 {"hoteles", r, x, s{"ns1.dns.nic.hoteles", "ns2.dns.nic.hoteles", "ns3.dns.nic.hoteles", "ns4.dns.nic.hoteles", "ns5.dns.nic.hoteles", "ns6.dns.nic.hoteles"}, n, n, "whois.nic.hoteles", e, "https://newgtlds.icann.org/", 0x40, f},
760 {"hotels", r, x, s{"ns1.dns.nic.hotels", "ns2.dns.nic.hotels", "ns3.dns.nic.hotels", "ns4.dns.nic.hotels", "ns5.dns.nic.hotels", "ns6.dns.nic.hotels"}, n, n, "whois.nic.hotels", e, "https://newgtlds.icann.org/", 0x40, f},
761 {"hotmail", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
762 {"house", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.house", e, e, 0x40, t},
763 {"how", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
764 {"hr", r, z[2589:2593], s{"hr-ns-1.carnet.hr", "n.dns.hr", "pch.carnet.hr"}, n, n, "whois.dns.hr", e, e, 0xa0, f},
765 {"hsbc", r, x, s{"ns1.dns.nic.hsbc", "ns2.dns.nic.hsbc", "ns3.dns.nic.hsbc", "ns4.dns.nic.hsbc", "ns5.dns.nic.hsbc", "ns6.dns.nic.hsbc"}, n, n, "whois.nic.hsbc", e, "https://newgtlds.icann.org/", 0x42, t},
766 {"ht", r, z[2593:2610], s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, "whois.nic.ht", e, e, 0xa0, f},
767 {"htc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2842, f},
768 {"hu", r, z[2610:2644], s{"a.hu", "b.hu", "c.hu", "d.hu", "e.hu", "ns-com.nic.hu", "ns2.nic.fr"}, n, n, "whois.nic.hu", e, e, 0xa0, t},
769 {"hughes", r, x, s{"a0.nic.hughes", "a2.nic.hughes", "b0.nic.hughes", "c0.nic.hughes"}, n, n, "whois.nic.hughes", e, "https://newgtlds.icann.org/", 0x42, f},
770 {"hyatt", r, x, s{"ns1.dns.nic.hyatt", "ns2.dns.nic.hyatt", "ns3.dns.nic.hyatt", "ns4.dns.nic.hyatt", "ns5.dns.nic.hyatt", "ns6.dns.nic.hyatt"}, n, n, "whois.nic.hyatt", e, "https://newgtlds.icann.org/", 0x42, f},
771 {"hyundai", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.hyundai", e, "https://newgtlds.icann.org/", 0x42, f},
772 {"ibm", r, x, s{"a.nic.ibm", "b.nic.ibm", "c.nic.ibm", "d.nic.ibm"}, n, n, "whois.nic.ibm", e, "https://newgtlds.icann.org/", 0x42, f},
773 {"icbc", r, x, s{"a0.nic.icbc", "a2.nic.icbc", "b0.nic.icbc", "c0.nic.icbc"}, n, n, "whois.nic.icbc", e, "https://newgtlds.icann.org/", 0x42, f},
774 {"ice", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.ice", e, "https://newgtlds.icann.org/", 0x42, f},
775 {"icu", r, x, s{"a.nic.icu", "b.nic.icu", "c.nic.icu", "d.nic.icu"}, n, n, "whois.nic.icu", e, "https://newgtlds.icann.org/", 0x42, t},
776 {"id", r, z[2644:2656], s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id", "ns4.apnic.net"}, n, n, "whois.id", e, "https://pandi.id/", 0xa0, t},
777 {"idn", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
778 {"ie", r, z[2656:2661], s{"b.ns.ie", "c.ns.ie", "d.ns.ie", "g.ns.ie", "h.ns.ie", "i.ns.ie"}, n, n, "whois.iedr.ie", e, "https://www.iedr.ie/", 0xa0, t},
779 {"ieee", r, x, s{"ns1.dns.nic.ieee", "ns2.dns.nic.ieee", "ns3.dns.nic.ieee", "ns4.dns.nic.ieee", "ns5.dns.nic.ieee", "ns6.dns.nic.ieee"}, n, n, "whois.nic.ieee", e, "https://newgtlds.icann.org/", 0x42, f},
780 {"ifm", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.ifm", e, "https://newgtlds.icann.org/", 0x42, t},
781 {"iinet", r, x, n, n, n, "whois.aridnrs.net.au", e, "https://newgtlds.icann.org/", 0x2042, f},
782 {"ikano", r, x, s{"a.dns.nic.ikano", "m.dns.nic.ikano", "n.dns.nic.ikano"}, n, n, "whois.nic.ikano", e, "https://newgtlds.icann.org/", 0x42, t},
783 {"il", r, z[2661:2669], s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, "whois.isoc.org.il", e, "http://www.isoc.org.il/domains/", 0xa8, t},
784 {"im", r, z[2669:2675], s{"barney.advsys.co.uk", "hoppy.iom.com", "ns4.ja.net", "pebbles.iom.com"}, n, n, "whois.nic.im", e, e, 0xa0, f},
785 {"imamat", r, x, s{"a0.nic.imamat", "a2.nic.imamat", "b0.nic.imamat", "c0.nic.imamat"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
786 {"imdb", r, x, s{"dns1.nic.imdb", "dns2.nic.imdb", "dns3.nic.imdb", "dns4.nic.imdb", "dnsa.nic.imdb", "dnsb.nic.imdb", "dnsc.nic.imdb", "dnsd.nic.imdb"}, n, n, "whois.nic.imdb", e, "https://newgtlds.icann.org/", 0x42, t},
787 {"immo", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.immo", e, "https://newgtlds.icann.org/", 0x40, t},
788 {"immobilien", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.immobilien", e, e, 0x40, t},
789 {"in", r, z[2675:2687], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0xa0, f},
790 {"inc", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.nic.inc", e, "https://newgtlds.icann.org/", 0x40, t},
791 {"indians", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
792 {"industries", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.industries", e, e, 0x40, t},
793 {"infiniti", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
794 {"info", r, z[2687:2688], s{"a0.info.afilias-nst.info", "a2.info.afilias-nst.info", "b0.info.afilias-nst.org", "b2.info.afilias-nst.org", "c0.info.afilias-nst.info", "d0.info.afilias-nst.org"}, n, n, "whois.afilias.net", e, "http://info.info/", 0x40, t},
795 {"infosys", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
796 {"infy", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
797 {"ing", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
798 {"ink", r, x, s{"a.nic.ink", "b.nic.ink", "c.nic.ink", "d.nic.ink"}, n, n, "whois.nic.ink", e, e, 0x40, t},
799 {"institute", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.institute", e, e, 0x40, t},
800 {"insurance", r, x, s{"a.nic.insurance", "b.nic.insurance", "c.nic.insurance", "d.nic.insurance", "e.nic.insurance", "f.nic.insurance"}, n, n, "whois.nic.insurance", e, "https://newgtlds.icann.org/", 0x40, f},
801 {"insure", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.insure", e, e, 0x40, t},
802 {"int", r, z[2688:2689], s{"ns.uu.net", "ns0.ja.net", "sec2.authdns.ripe.net", "x.iana-servers.net", "y.iana-servers.net", "z.iana-servers.net"}, n, n, "whois.iana.org", e, e, 0x1040, f},
803 {"intel", r, x, n, n, n, "whois.nic.intel", e, "https://newgtlds.icann.org/", 0x42, f},
804 {"international", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.international", e, e, 0x40, t},
805 {"intuit", r, x, s{"ns1.dns.nic.intuit", "ns2.dns.nic.intuit", "ns3.dns.nic.intuit", "ns4.dns.nic.intuit", "ns5.dns.nic.intuit", "ns6.dns.nic.intuit"}, n, n, "whois.nic.intuit", e, "https://newgtlds.icann.org/", 0x42, f},
806 {"investments", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.investments", e, e, 0x40, t},
807 {"io", r, z[2689:2691], s{"a0.nic.io", "a2.nic.io", "b0.nic.io", "c0.nic.io"}, n, n, "whois.nic.io", e, "http://nic.io/", 0xe0, t},
808 {"ipiranga", r, x, s{"ns1.dns.nic.ipiranga", "ns2.dns.nic.ipiranga", "ns3.dns.nic.ipiranga", "ns4.dns.nic.ipiranga", "ns5.dns.nic.ipiranga", "ns6.dns.nic.ipiranga"}, n, n, "whois.nic.ipiranga", e, "https://newgtlds.icann.org/", 0x42, f},
809 {"iq", r, z[2691:2701], s{"iq.cctld.authdns.ripe.net", "ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, "whois.cmc.iq", e, e, 0xa0, f},
810 {"ir", r, z[2701:2708], s{"a.nic.ir", "b.nic.ir", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, "whois.nic.ir", e, e, 0xa0, t},
811 {"ira", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
812 {"irish", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.irish", e, "https://newgtlds.icann.org/", 0x40, t},
813 {"is", r, x, s{"bes.isnic.is", "durinn.rhnet.is", "isgate.is", "sab.isnic.is", "sunic.sunet.se"}, n, n, "whois.isnic.is", e, e, 0xa0, t},
814 {"iselect", r, x, n, n, n, "whois.nic.iselect", e, "https://newgtlds.icann.org/", 0x42, f},
815 {"islam", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
816 {"ismaili", r, x, s{"a0.nic.ismaili", "a2.nic.ismaili", "b0.nic.ismaili", "c0.nic.ismaili"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
817 {"ist", r, x, s{"a0.nic.ist", "a2.nic.ist", "b0.nic.ist", "c0.nic.ist"}, n, s{"Istanbul", "TR-34"}, "whois.afilias-srs.net", e, "http://nic.ist/", 0xc4, f},
818 {"istanbul", r, x, s{"a0.nic.istanbul", "a2.nic.istanbul", "b0.nic.istanbul", "c0.nic.istanbul"}, n, s{"Istanbul", "TR-34"}, "whois.afilias-srs.net", e, "http://nic.istanbul/", 0xc4, f},
819 {"it", r, z[2708:3069], s{"a.dns.it", "dns.nic.it", "m.dns.it", "nameserver.cnr.it", "r.dns.it", "s.dns.it"}, n, n, "whois.nic.it", e, "http://www.nic.it/", 0xa0, t},
820 {"itau", r, x, s{"ns1.dns.nic.itau", "ns2.dns.nic.itau", "ns3.dns.nic.itau", "ns4.dns.nic.itau", "ns5.dns.nic.itau", "ns6.dns.nic.itau"}, n, n, "whois.nic.itau", e, "https://newgtlds.icann.org/", 0x42, f},
821 {"itv", r, x, s{"a0.nic.itv", "a2.nic.itv", "b0.nic.itv", "c0.nic.itv"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
822 {"iveco", r, x, s{"a0.nic.iveco", "a2.nic.iveco", "b0.nic.iveco", "c0.nic.iveco"}, n, n, "whois.nic.iveco", e, "https://newgtlds.icann.org/", 0x42, f},
823 {"iwc", r, x, n, n, n, "whois.nic.iwc", e, "https://newgtlds.icann.org/", 0x42, f},
824 {"jaguar", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.jaguar", e, "https://newgtlds.icann.org/", 0x42, f},
825 {"java", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.java", e, "https://newgtlds.icann.org/", 0x42, f},
826 {"jcb", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
827 {"jcp", r, x, s{"a0.nic.jcp", "a2.nic.jcp", "b0.nic.jcp", "c0.nic.jcp"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
828 {"je", r, z[3069:3075], s{"c.ci-servers.org", "dns1.nominetdns.uk", "e.ci-servers.gg", "f.ci-servers.je", "ns0.ja.net", "ns99.dns.net.nz"}, n, n, "whois.je", e, e, 0xa0, f},
829 {"jeep", r, x, s{"a0.nic.jeep", "a2.nic.jeep", "b0.nic.jeep", "c0.nic.jeep"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
830 {"jetzt", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.jetzt", e, e, 0x40, t},
831 {"jewelry", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.jewelry", e, "https://newgtlds.icann.org/", 0x40, t},
832 {"jio", r, x, s{"a0.nic.jio", "a2.nic.jio", "b0.nic.jio", "c0.nic.jio"}, n, n, "whois.nic.jio", e, "https://newgtlds.icann.org/", 0x40, f},
833 {"jlc", r, x, n, n, n, "whois.nic.jlc", e, "https://newgtlds.icann.org/", 0x42, f},
834 {"jll", r, x, s{"a0.nic.jll", "a2.nic.jll", "b0.nic.jll", "c0.nic.jll"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
835 {"jm", r, z[3075:3081], s{"jm.cctld.authdns.ripe.net", "ns.jm", "ns.utechjamaica.edu.jm", "ns3-jm.fsl.org.jm", "phloem.uoregon.edu"}, n, n, e, e, e, 0xa8, f},
836 {"jmp", r, x, s{"ns1.dns.nic.jmp", "ns2.dns.nic.jmp", "ns3.dns.nic.jmp", "ns4.dns.nic.jmp", "ns5.dns.nic.jmp", "ns6.dns.nic.jmp"}, n, n, "whois.nic.jmp", e, "https://newgtlds.icann.org/", 0x42, f},
837 {"jnj", r, x, s{"ns1.dns.nic.jnj", "ns2.dns.nic.jnj", "ns3.dns.nic.jnj", "ns4.dns.nic.jnj", "ns5.dns.nic.jnj", "ns6.dns.nic.jnj"}, n, n, "whois.nic.jnj", e, "https://newgtlds.icann.org/", 0x42, f},
838 {"jo", r, z[3081:3089], s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, "http://www.dns.jo/Whois.aspx", e, 0xa0, f},
839 {"jobs", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.jobs", e, e, 0x1040, f},
840 {"joburg", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, s{"Johannesburg"}, "joburg-whois.registry.net.za", e, e, 0xc4, t},
841 {"jot", r, x, s{"dns1.nic.jot", "dns2.nic.jot", "dns3.nic.jot", "dns4.nic.jot", "dnsa.nic.jot", "dnsb.nic.jot", "dnsc.nic.jot", "dnsd.nic.jot"}, n, n, "whois.nic.jot", e, "https://newgtlds.icann.org/", 0x40, t},
842 {"joy", r, x, s{"dns1.nic.joy", "dns2.nic.joy", "dns3.nic.joy", "dns4.nic.joy", "dnsa.nic.joy", "dnsb.nic.joy", "dnsc.nic.joy", "dnsd.nic.joy"}, n, n, "whois.nic.joy", e, "https://newgtlds.icann.org/", 0x40, t},
843 {"jp", r, z[3089:3192], s{"a.dns.jp", "b.dns.jp", "c.dns.jp", "d.dns.jp", "e.dns.jp", "f.dns.jp", "g.dns.jp", "h.dns.jp"}, n, n, "whois.jprs.jp", e, e, 0xa0, t},
844 {"jpmorgan", r, x, s{"ns1.dns.nic.jpmorgan", "ns2.dns.nic.jpmorgan", "ns3.dns.nic.jpmorgan", "ns4.dns.nic.jpmorgan", "ns5.dns.nic.jpmorgan", "ns6.dns.nic.jpmorgan"}, n, n, "whois.nic.jpmorgan", e, "https://newgtlds.icann.org/", 0x42, f},
845 {"jpmorganchase", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
846 {"jprs", r, x, s{"tld1.nic.jprs", "tld2.nic.jprs", "tld3.nic.jprs", "tld4.nic.jprs", "tld5.nic.jprs"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
847 {"juegos", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.juegos/", 0x40, t},
848 {"juniper", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.juniper", e, "https://newgtlds.icann.org/", 0x42, f},
849 {"justforu", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
850 {"kaufen", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.kaufen", e, e, 0x40, t},
851 {"kddi", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.kddi", e, "https://newgtlds.icann.org/", 0x42, t},
852 {"ke", r, z[3192:3201], s{"kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, "whois.kenic.or.ke", e, "http://www.kenic.or.ke/", 0xa8, f},
853 {"kerastase", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
854 {"kerryhotels", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.kerryhotels", e, "https://newgtlds.icann.org/", 0x42, f},
855 {"kerrylogisitics", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
856 {"kerrylogistics", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.kerrylogistics", e, e, 0x0, t},
857 {"kerryproperties", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.kerryproperties", e, "https://newgtlds.icann.org/", 0x42, f},
858 {"ketchup", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
859 {"kfh", r, x, s{"a.nic.kfh", "b.nic.kfh", "c.nic.kfh", "d.nic.kfh"}, n, n, "whois.nic.kfh", e, "https://newgtlds.icann.org/", 0x42, f},
860 {"kg", r, z[3201:3207], s{"kg.cctld.authdns.ripe.net", "ns.kg"}, n, n, "whois.kg", e, e, 0xa0, f},
861 {"kh", r, z[3207:3214], s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0xa0, f},
862 {"ki", r, z[3214:3226], s{"ns.cocca.fr", "pch.nic.ki"}, n, n, "whois.nic.ki", e, e, 0xa0, f},
863 {"kia", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.kia", e, "https://newgtlds.icann.org/", 0x42, f},
864 {"kid", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
865 {"kids", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
866 {"kiehls", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
867 {"kim", r, x, s{"a0.nic.kim", "a2.nic.kim", "b0.nic.kim", "c0.nic.kim"}, n, n, "whois.afilias.net", e, "http://nic.kim/", 0x40, f},
868 {"kinder", r, x, s{"ns1.dns.nic.kinder", "ns2.dns.nic.kinder", "ns3.dns.nic.kinder", "ns4.dns.nic.kinder", "ns5.dns.nic.kinder", "ns6.dns.nic.kinder"}, n, n, "whois.nic.kinder", e, "https://newgtlds.icann.org/", 0x40, t},
869 {"kindle", r, x, s{"dns1.nic.kindle", "dns2.nic.kindle", "dns3.nic.kindle", "dns4.nic.kindle", "dnsa.nic.kindle", "dnsb.nic.kindle", "dnsc.nic.kindle", "dnsd.nic.kindle"}, n, n, "whois.nic.kindle", e, "https://newgtlds.icann.org/", 0x42, t},
870 {"kitchen", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.kitchen", e, e, 0x40, t},
871 {"kiwi", r, x, s{"a.ns.nic.kiwi", "b.ns.nic.kiwi"}, n, n, "whois.nic.kiwi", e, e, 0x40, t},
872 {"km", r, z[3226:3240], s{"dns1.nic.km", "dns2.nic.km", "ns-km.afrinic.net"}, n, n, e, e, e, 0xa0, f},
873 {"kn", r, z[3240:3246], s{"ns.cocca.fr", "ns.coccaregistry.org", "pch.nic.kn"}, n, n, "whois.nic.kn", "http://www.nic.kn/", e, 0xa0, f},
874 {"koeln", r, x, s{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, s{"Cologne", "Koeln"}, "whois.ryce-rsp.com", e, e, 0xc4, t},
875 {"komatsu", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.komatsu", e, "https://newgtlds.icann.org/", 0x42, f},
876 {"konami", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
877 {"kone", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
878 {"kosher", r, x, s{"a0.nic.kosher", "a2.nic.kosher", "b0.nic.kosher", "c0.nic.kosher"}, n, n, "whois.nic.kosher", e, "https://newgtlds.icann.org/", 0x40, f},
879 {"kp", r, z[3246:3250], s{"ns1.kptc.kp", "ns2.kptc.kp"}, n, n, e, e, e, 0xa0, f},
880 {"kpmg", r, x, s{"ns1.dns.nic.kpmg", "ns2.dns.nic.kpmg", "ns3.dns.nic.kpmg", "ns4.dns.nic.kpmg", "ns5.dns.nic.kpmg", "ns6.dns.nic.kpmg"}, n, n, "whois.nic.kpmg", e, "https://newgtlds.icann.org/", 0x42, t},
881 {"kpn", r, x, s{"a.nic.kpn", "b.nic.kpn", "c.nic.kpn", "d.nic.kpn"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
882 {"kr", r, z[3250:3279], s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, "whois.kr", e, e, 0xa0, t},
883 {"krd", r, x, s{"a.nic.krd", "b.nic.krd", "c.nic.krd", "d.nic.krd"}, n, n, "whois.nic.krd", e, "https://newgtlds.icann.org/", 0x440, f},
884 {"kred", r, x, s{"a.nic.kred", "b.nic.kred", "c.nic.kred", "d.nic.kred"}, n, n, "whois.nic.kred", e, "https://newgtlds.icann.org/", 0x50, t},
885 {"kuokgroup", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.kuokgroup", e, "https://newgtlds.icann.org/", 0x42, f},
886 {"kw", r, z[3279:3284], s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, e, "http://www.kw/", e, 0xa0, f},
887 {"ky", r, z[3284:3289], s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.kyregistry.ky", "http://kynseweb.messagesecure.com/kywebadmin/", e, 0xa0, f},
888 {"kyknet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
889 {"kyoto", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, s{"Kyoto", "JP-26"}, "whois.nic.kyoto", e, "https://newgtlds.icann.org/", 0xc4, f},
890 {"kz", r, z[3289:3295], s{"ns.nic.kz", "ns1.nic.kz"}, n, n, "whois.nic.kz", e, e, 0xa0, f},
891 {"la", r, x, s{"ns1.nic.la", "ns2.nic.la", "ns3.nic.la", "ns4.nic.la"}, n, s{"Los Angeles"}, "whois.nic.la", e, e, 0xa4, t},
892 {"lacaixa", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.lacaixa", e, "https://newgtlds.icann.org/", 0x42, f},
893 {"ladbrokes", r, x, n, n, n, "whois.nic.ladbrokes", e, "https://newgtlds.icann.org/", 0x42, t},
894 {"lamborghini", r, x, s{"a0.nic.lamborghini", "a2.nic.lamborghini", "b0.nic.lamborghini", "c0.nic.lamborghini"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
895 {"lamer", r, x, s{"a0.nic.lamer", "a2.nic.lamer", "b0.nic.lamer", "c0.nic.lamer"}, n, n, "whois.nic.lamer", e, "https://newgtlds.icann.org/", 0x42, f},
896 {"lancaster", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.lancaster", e, "https://newgtlds.icann.org/", 0x42, f},
897 {"lancia", r, x, s{"a0.nic.lancia", "a2.nic.lancia", "b0.nic.lancia", "c0.nic.lancia"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
898 {"lancome", r, x, n, n, n, "whois.nic.lancome", e, "https://newgtlds.icann.org/", 0x42, f},
899 {"land", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.land", e, e, 0x40, t},
900 {"landrover", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.landrover", e, "https://newgtlds.icann.org/", 0x42, f},
901 {"lanxess", r, x, s{"ns1.dns.nic.lanxess", "ns2.dns.nic.lanxess", "ns3.dns.nic.lanxess", "ns4.dns.nic.lanxess", "ns5.dns.nic.lanxess", "ns6.dns.nic.lanxess"}, n, n, "whois.nic.lanxess", e, "https://newgtlds.icann.org/", 0x42, f},
902 {"lasalle", r, x, s{"a0.nic.lasalle", "a2.nic.lasalle", "b0.nic.lasalle", "c0.nic.lasalle"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
903 {"lat", r, x, s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, "whois.nic.lat", e, "http://nic.lat/", 0x40, t},
904 {"latino", r, x, s{"a0.nic.latino", "a2.nic.latino", "b0.nic.latino", "c0.nic.latino"}, n, n, "whois.nic.latino", e, "https://newgtlds.icann.org/", 0x40, f},
905 {"latrobe", r, x, s{"a.nic.latrobe", "b.nic.latrobe", "c.nic.latrobe", "d.nic.latrobe"}, n, n, "whois.nic.latrobe", e, "https://newgtlds.icann.org/", 0x42, f},
906 {"law", r, x, s{"dns1.nic.law", "dns2.nic.law", "dns3.nic.law", "dns4.nic.law", "dnsa.nic.law", "dnsb.nic.law", "dnsc.nic.law", "dnsd.nic.law"}, n, n, "whois.nic.law", e, "http://nic.law/", 0x40, t},
907 {"lawyer", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.lawyer", e, e, 0x40, t},
908 {"lb", r, z[3295:3300], s{"fork.sth.dnsnode.net", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, "http://www.aub.edu.lb/lbdr/", e, 0xa8, f},
909 {"lc", r, z[3300:3309], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, "whois.afilias-grs.info", "http://www.nic.lc", e, 0xa0, f},
910 {"lds", r, x, s{"a0.nic.lds", "a2.nic.lds", "b0.nic.lds", "c0.nic.lds"}, n, n, "whois.nic.lds", e, "https://newgtlds.icann.org/", 0x42, f},
911 {"lease", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.lease", e, e, 0x40, t},
912 {"leclerc", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois-leclerc.nic.fr", e, "https://newgtlds.icann.org/", 0x42, t},
913 {"lefrak", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lefrak", e, "https://newgtlds.icann.org/", 0x42, f},
914 {"legal", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.legal", e, "https://newgtlds.icann.org/", 0x40, t},
915 {"lego", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lego", e, "https://newgtlds.icann.org/", 0x42, t},
916 {"lexus", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.lexus", e, "https://newgtlds.icann.org/", 0x42, f},
917 {"lgbt", r, x, s{"a0.nic.lgbt", "a2.nic.lgbt", "b0.nic.lgbt", "c0.nic.lgbt"}, n, n, "whois.afilias.net", e, "http://nic.lgbt/", 0x40, f},
918 {"li", r, x, s{"a.nic.li", "b.nic.li", "c.nic.li", "e.nic.li", "f.nic.li", "g.nic.li", "h.nic.li"}, n, n, "whois.nic.li", e, e, 0xa0, t},
919 {"liaison", r, x, n, n, n, "whois.nic.liaison", e, "https://newgtlds.icann.org/", 0x42, f},
920 {"lidl", r, x, s{"a.nic.lidl", "b.nic.lidl", "c.nic.lidl", "d.nic.lidl"}, n, n, "whois.nic.lidl", e, "https://newgtlds.icann.org/", 0x42, t},
921 {"life", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.life", e, e, 0x40, t},
922 {"lifeinsurance", r, x, s{"ns1.dns.nic.lifeinsurance", "ns2.dns.nic.lifeinsurance", "ns3.dns.nic.lifeinsurance", "ns4.dns.nic.lifeinsurance", "ns5.dns.nic.lifeinsurance", "ns6.dns.nic.lifeinsurance"}, n, n, "whois.nic.lifeinsurance", e, "https://newgtlds.icann.org/", 0x40, f},
923 {"lifestyle", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lifestyle", e, "https://newgtlds.icann.org/", 0x40, f},
924 {"lighting", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.lighting", e, e, 0x40, t},
925 {"like", r, x, s{"dns1.nic.like", "dns2.nic.like", "dns3.nic.like", "dns4.nic.like", "dnsa.nic.like", "dnsb.nic.like", "dnsc.nic.like", "dnsd.nic.like"}, n, n, "whois.nic.like", e, "https://newgtlds.icann.org/", 0x42, t},
926 {"lilly", r, x, s{"ns1.dns.nic.lilly", "ns2.dns.nic.lilly", "ns3.dns.nic.lilly", "ns4.dns.nic.lilly", "ns5.dns.nic.lilly", "ns6.dns.nic.lilly"}, n, n, "whois.nic.lilly", e, "https://newgtlds.icann.org/", 0x42, f},
927 {"limited", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.limited", e, e, 0x40, t},
928 {"limo", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.limo", e, e, 0x40, t},
929 {"lincoln", r, x, s{"ns1.dns.nic.lincoln", "ns2.dns.nic.lincoln", "ns3.dns.nic.lincoln", "ns4.dns.nic.lincoln", "ns5.dns.nic.lincoln", "ns6.dns.nic.lincoln"}, n, n, "whois.nic.lincoln", e, "https://newgtlds.icann.org/", 0x42, f},
930 {"linde", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.linde", e, "https://newgtlds.icann.org/", 0x42, t},
931 {"link", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.link/", 0x40, t},
932 {"lipsy", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lipsy", e, "https://newgtlds.icann.org/", 0x42, f},
933 {"live", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.live", e, "https://newgtlds.icann.org/", 0x40, t},
934 {"livestrong", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
935 {"living", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
936 {"lixil", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.lixil", e, "https://newgtlds.icann.org/", 0x42, f},
937 {"lk", r, z[3309:3323], s{"c.nic.lk", "d.nic.lk", "l.nic.lk", "m.nic.lk", "ns1.ac.lk", "p.nic.lk", "pendragon.cs.purdue.edu", "t.nic.lk"}, n, n, "whois.nic.lk", e, e, 0xa0, f},
938 {"llc", r, x, s{"a0.nic.llc", "a2.nic.llc", "b0.nic.llc", "c0.nic.llc"}, n, n, "whois.afilias.net", e, "https://newgtlds.icann.org/", 0x40, f},
939 {"llp", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "https://newgtlds.icann.org/", 0x40, f},
940 {"loan", r, x, s{"ns1.dns.nic.loan", "ns2.dns.nic.loan", "ns3.dns.nic.loan", "ns4.dns.nic.loan", "ns5.dns.nic.loan", "ns6.dns.nic.loan"}, n, n, "whois.nic.loan", e, "https://www.famousfourmedia.com/", 0x40, t},
941 {"loans", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.loans", e, e, 0x40, t},
942 {"locker", r, x, s{"a0.nic.locker", "a2.nic.locker", "b0.nic.locker", "c0.nic.locker"}, n, n, "whois.nic.locker", e, "https://newgtlds.icann.org/", 0x42, f},
943 {"locus", r, x, s{"dns1.nic.locus", "dns2.nic.locus", "dns3.nic.locus", "dns4.nic.locus", "dnsa.nic.locus", "dnsb.nic.locus", "dnsc.nic.locus", "dnsd.nic.locus"}, n, n, "whois.nic.locus", e, "https://newgtlds.icann.org/", 0x42, f},
944 {"loft", r, x, s{"ns1.dns.nic.loft", "ns2.dns.nic.loft", "ns3.dns.nic.loft", "ns4.dns.nic.loft", "ns5.dns.nic.loft", "ns6.dns.nic.loft"}, n, n, "whois.nic.loft", e, "https://newgtlds.icann.org/", 0x40, f},
945 {"lol", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.lol/", 0x40, t},
946 {"london", r, x, s{"dns1.nic.london", "dns2.nic.london", "dns3.nic.london", "dns4.nic.london", "dnsa.nic.london", "dnsb.nic.london", "dnsc.nic.london", "dnsd.nic.london"}, n, s{"London", "GB-LND", "GB-BDG", "GB-BNE", "GB-BEX", "GB-BEN", "GB-BRY", "GB-CMD", "GB-CRY", "GB-EAL", "GB-ENF", "GB-GRE", "GB-HCK", "GB-HMF", "GB-HRY", "GB-HRW", "GB-HAV", "GB-HIL", "GB-HNS", "GB-ISL", "GB-KEC", "GB-KTT", "GB-LBH", "GB-LEW", "GB-MRT", "GB-NWM", "GB-RDB", "GB-RIC", "GB-SWK", "GB-STN", "GB-TWH", "GB-WFT", "GB-WND", "GB-WSM"}, "whois.nic.london", e, "http://nic.london/", 0xc4, t},
947 {"loreal", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
948 {"lotte", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.lotte", e, "https://newgtlds.icann.org/", 0x42, t},
949 {"lotto", r, x, s{"a0.nic.lotto", "a2.nic.lotto", "b0.nic.lotto", "c0.nic.lotto"}, n, n, "whois.afilias.net", e, "https://nic.lotto/", 0x40, f},
950 {"love", r, x, s{"a.nic.love", "b.nic.love", "c.nic.love", "d.nic.love"}, n, n, "whois.nic.love", e, "https://newgtlds.icann.org/", 0x40, t},
951 {"lpl", r, x, s{"a.nic.lpl", "b.nic.lpl", "c.nic.lpl", "d.nic.lpl"}, n, n, "whois.nic.lpl", e, "https://newgtlds.icann.org/", 0x42, t},
952 {"lplfinancial", r, x, s{"a.nic.lplfinancial", "b.nic.lplfinancial", "c.nic.lplfinancial", "d.nic.lplfinancial"}, n, n, "whois.nic.lplfinancial", e, "https://newgtlds.icann.org/", 0x42, t},
953 {"lr", r, z[3323:3329], s{"fork.sth.dnsnode.net", "ns-lr.afrinic.net", "rip.psg.com"}, n, n, e, e, e, 0xa8, f},
954 {"ls", r, z[3329:3335], s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, "whois.nic.ls", "http://www.co.ls/co.asp", "http://www.co.ls/", 0xa8, f},
955 {"lt", r, z[3335:3336], s{"a.tld.lt", "b.tld.lt", "c.tld.lt", "d.tld.lt", "e.tld.lt", "f.tld.lt"}, n, n, "whois.domreg.lt", e, e, 0xa0, t},
956 {"ltd", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.ltd", e, "https://newgtlds.icann.org/", 0x40, t},
957 {"ltda", r, x, s{"a0.nic.ltda", "a2.nic.ltda", "b0.nic.ltda", "c0.nic.ltda"}, n, n, "whois.afilias-srs.net", e, "https://nic.ltda/", 0x40, f},
958 {"lu", r, x, s{"g.dns.lu", "i.dns.lu", "j.dns.lu", "k.dns.lu", "ns1.dns.lu", "p.dns.lu"}, n, n, "whois.dns.lu", e, e, 0xa0, t},
959 {"lundbeck", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lundbeck", e, "https://newgtlds.icann.org/", 0x42, f},
960 {"lupin", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
961 {"luxe", r, x, s{"dns1.nic.luxe", "dns2.nic.luxe", "dns3.nic.luxe", "dns4.nic.luxe", "dnsa.nic.luxe", "dnsb.nic.luxe", "dnsc.nic.luxe", "dnsd.nic.luxe"}, n, n, "whois.nic.luxe", e, "http://nix.luxe/", 0x40, t},
962 {"luxury", r, x, s{"a.nic.luxury", "b.nic.luxury", "c.nic.luxury", "d.nic.luxury"}, n, n, "whois.nic.luxury", e, "http://nic.luxury/", 0x40, f},
963 {"lv", r, z[3336:3345], s{"a.nic.lv", "b.nic.lv", "c.nic.lv", "d.nic.lv", "sunic.sunet.se"}, n, n, "whois.nic.lv", e, e, 0xa0, t},
964 {"ly", r, z[3345:3354], s{"dns.lttnet.net", "dns1.lttnet.net", "ns-ly.afrinic.net", "pch.ltt.ly", "phloem.uoregon.edu"}, n, n, "whois.nic.ly", e, "http://nic.ly/", 0xa0, f},
965 {"ma", r, z[3354:3360], s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, "whois.registre.ma", e, e, 0xa0, f},
966 {"macys", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.macys", e, "https://newgtlds.icann.org/", 0x42, f},
967 {"madrid", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"Madrid", "ES-MD"}, "whois.nic.madrid", e, "https://newgtlds.icann.org/", 0xc4, f},
968 {"maif", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
969 {"mail", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
970 {"maison", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.maison", e, e, 0x40, t},
971 {"makeup", r, x, s{"a.nic.makeup", "b.nic.makeup", "c.nic.makeup", "d.nic.makeup"}, n, n, "whois.nic.makeup", e, "https://newgtlds.icann.org/", 0x42, f},
972 {"man", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.man", e, "https://newgtlds.icann.org/", 0x42, t},
973 {"management", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.management", e, e, 0x40, t},
974 {"mango", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.mango", e, "https://newgtlds.icann.org/", 0x42, t},
975 {"map", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
976 {"market", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.market", e, e, 0x40, t},
977 {"marketing", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.marketing", e, e, 0x40, t},
978 {"markets", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.markets", e, "https://bostonivy.co/", 0x40, f},
979 {"marriott", r, x, s{"a0.nic.marriott", "a2.nic.marriott", "b0.nic.marriott", "c0.nic.marriott"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
980 {"marshalls", r, x, s{"ns1.dns.nic.marshalls", "ns2.dns.nic.marshalls", "ns3.dns.nic.marshalls", "ns4.dns.nic.marshalls", "ns5.dns.nic.marshalls", "ns6.dns.nic.marshalls"}, n, n, "whois.nic.marshalls", e, "https://newgtlds.icann.org/", 0x42, f},
981 {"maserati", r, x, s{"a0.nic.maserati", "a2.nic.maserati", "b0.nic.maserati", "c0.nic.maserati"}, n, n, "whois.nic.maserati", e, "https://newgtlds.icann.org/", 0x42, f},
982 {"matrix", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
983 {"mattel", r, x, s{"ns1.dns.nic.mattel", "ns2.dns.nic.mattel", "ns3.dns.nic.mattel", "ns4.dns.nic.mattel", "ns5.dns.nic.mattel", "ns6.dns.nic.mattel"}, n, n, "whois.nic.mattel", e, "https://newgtlds.icann.org/", 0x42, f},
984 {"maybelline", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
985 {"mba", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.mba", e, "https://newgtlds.icann.org/", 0x40, t},
986 {"mc", r, z[3360:3362], s{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, e, e, "http://www.nic.mc/", 0xa0, f},
987 {"mcd", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
988 {"mcdonalds", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
989 {"mckinsey", r, x, s{"a0.nic.mckinsey", "a2.nic.mckinsey", "b0.nic.mckinsey", "c0.nic.mckinsey"}, n, n, "whois.nic.mckinsey", e, "https://newgtlds.icann.org/", 0x42, f},
990 {"md", r, x, s{"nsa.tld.md", "nsb.tld.md", "nsc.dns.md", "nsf.dns.md", "nsr.dns.md"}, n, n, "whois.nic.md", e, e, 0xa0, f},
991 {"me", r, z[3362:3370], s{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, "whois.nic.me", e, "http://domain.me/", 0xe0, f},
992 {"med", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.med", e, "https://newgtlds.icann.org/", 0x40, f},
993 {"media", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.media", e, e, 0x40, t},
994 {"medical", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
995 {"meet", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
996 {"melbourne", r, x, s{"a.nic.melbourne", "b.nic.melbourne", "c.nic.melbourne", "d.nic.melbourne"}, n, s{"Melbourne"}, "whois.nic.melbourne", e, "http://nic.melbourne/", 0xc4, f},
997 {"meme", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
998 {"memorial", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.memorial", e, "https://newgtlds.icann.org/", 0x40, t},
999 {"men", r, x, s{"a.nic.men", "b.nic.men", "c.nic.men", "d.nic.men"}, n, n, "whois.nic.men", e, "https://www.famousfourmedia.com/", 0x40, t},
1000 {"menu", r, x, s{"a.nic.menu", "b.nic.menu", "c.nic.menu", "d.nic.menu"}, n, n, "whois.nic.menu", e, e, 0x40, f},
1001 {"meo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1002 {"merck", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1003 {"merckmsd", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1004 {"metlife", r, x, n, n, n, "whois.nic.metlife", e, "https://newgtlds.icann.org/", 0x42, f},
1005 {"mf", r, x, n, n, n, e, e, "http://en.wikipedia.org/wiki/.mf", 0x8a0, f},
1006 {"mg", r, z[3370:3381], s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, "whois.nic.mg", e, e, 0xa0, f},
1007 {"mh", r, x, s{"ns.amarshallinc.com", "ns.ntamar.net"}, n, n, e, e, e, 0xa8, f},
1008 {"miami", r, x, s{"dns1.nic.miami", "dns2.nic.miami", "dns3.nic.miami", "dns4.nic.miami", "dnsa.nic.miami", "dnsb.nic.miami", "dnsc.nic.miami", "dnsd.nic.miami"}, n, s{"Miami"}, "whois.nic.miami", e, "http://nic.miami/", 0xc4, t},
1009 {"microsoft", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
1010 {"mih", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1011 {"mii", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
1012 {"mil", r, x, s{"con1.nipr.mil", "con2.nipr.mil", "eur1.nipr.mil", "eur2.nipr.mil", "pac1.nipr.mil", "pac2.nipr.mil"}, n, n, "is-1.nic.mil", e, e, 0x1040, f},
1013 {"mini", r, x, s{"a.nic.mini", "b.nic.mini", "c.nic.mini", "d.nic.mini"}, n, n, "whois.nic.mini", e, "https://newgtlds.icann.org/", 0x42, f},
1014 {"mint", r, x, s{"ns1.dns.nic.mint", "ns2.dns.nic.mint", "ns3.dns.nic.mint", "ns4.dns.nic.mint", "ns5.dns.nic.mint", "ns6.dns.nic.mint"}, n, n, "whois.nic.mint", e, "https://newgtlds.icann.org/", 0x42, f},
1015 {"mit", r, x, s{"a0.nic.mit", "a2.nic.mit", "b0.nic.mit", "c0.nic.mit"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1016 {"mitek", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1017 {"mitsubishi", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
1018 {"mk", r, z[3381:3389], s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, "whois.marnet.mk", e, e, 0xa0, f},
1019 {"ml", r, z[3389:3395], s{"a.ns.ml", "b.ns.ml", "c.ns.ml", "d.ns.ml"}, n, n, "whois.dot.ml", e, e, 0xa0, t},
1020 {"mlb", r, x, s{"ns1.dns.nic.mlb", "ns2.dns.nic.mlb", "ns3.dns.nic.mlb", "ns4.dns.nic.mlb", "ns5.dns.nic.mlb", "ns6.dns.nic.mlb"}, n, n, "whois.nic.mlb", e, "https://newgtlds.icann.org/", 0x42, f},
1021 {"mls", r, x, s{"a.ns.nic.mls", "b.ns.nic.mls"}, n, n, "whois.nic.mls", e, "https://newgtlds.icann.org/", 0x40, t},
1022 {"mm", r, z[3395:3403], s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, "whois.registry.gov.mm", e, e, 0xa8, f},
1023 {"mma", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.mma", e, "https://newgtlds.icann.org/", 0x42, t},
1024 {"mn", r, z[3403:3406], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.magic.mn", "ns2.magic.mn", "ns3.magic.mn", "ns4.magic.mn"}, n, n, "whois.nic.mn", e, e, 0xa0, f},
1025 {"mnet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1026 {"mo", r, z[3406:3412], s{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, "whois.monic.mo", e, e, 0xa0, f},
1027 {"mobi", r, x, s{"a0.mobi.afilias-nst.info", "a2.mobi.afilias-nst.info", "b0.mobi.afilias-nst.org", "b2.mobi.afilias-nst.org", "c0.mobi.afilias-nst.info", "d0.mobi.afilias-nst.org"}, n, n, "whois.nic.mobi", e, "https://dotmobi.mobi/", 0x1040, t},
1028 {"mobile", r, x, s{"a0.nic.mobile", "a2.nic.mobile", "b0.nic.mobile", "c0.nic.mobile"}, n, n, "whois.nic.mobile", e, "https://newgtlds.icann.org/", 0x40, f},
1029 {"mobily", r, x, n, n, n, "whois.nic.mobily", e, "https://newgtlds.icann.org/", 0x40, f},
1030 {"moda", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.moda", e, e, 0x40, t},
1031 {"moe", r, x, s{"ns1.dns.nic.moe", "ns2.dns.nic.moe", "ns3.dns.nic.moe", "ns4.dns.nic.moe", "ns5.dns.nic.moe", "ns6.dns.nic.moe"}, n, n, "whois.nic.moe", e, e, 0x40, t},
1032 {"moi", r, x, s{"dns1.nic.moi", "dns2.nic.moi", "dns3.nic.moi", "dns4.nic.moi", "dnsa.nic.moi", "dnsb.nic.moi", "dnsc.nic.moi", "dnsd.nic.moi"}, n, n, "whois.nic.moi", e, "https://newgtlds.icann.org/", 0x42, t},
1033 {"mom", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.mom/", 0x40, t},
1034 {"monash", r, x, s{"a.nic.monash", "b.nic.monash", "c.nic.monash", "d.nic.monash"}, n, n, "whois.nic.monash", e, "https://newgtlds.icann.org/", 0x42, f},
1035 {"money", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.money", e, "https://newgtlds.icann.org/", 0x40, t},
1036 {"monster", r, x, s{"a.nic.monster", "b.nic.monster", "c.nic.monster", "d.nic.monster"}, n, n, "whois.nic.monster", e, "https://newgtlds.icann.org/", 0x42, f},
1037 {"montblanc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1038 {"mopar", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1039 {"mormon", r, x, s{"a0.nic.mormon", "a2.nic.mormon", "b0.nic.mormon", "c0.nic.mormon"}, n, n, "whois.nic.mormon", e, "https://newgtlds.icann.org/", 0x42, f},
1040 {"mortgage", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.mortgage", e, e, 0x40, t},
1041 {"moscow", r, x, s{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, s{"Moscow", "RU-MOW"}, "whois.nic.moscow", e, "https://newgtlds.icann.org/", 0xc4, f},
1042 {"moto", r, x, s{"ns1.dns.nic.moto", "ns2.dns.nic.moto", "ns3.dns.nic.moto", "ns4.dns.nic.moto", "ns5.dns.nic.moto", "ns6.dns.nic.moto"}, n, n, "whois.nic.moto", e, "https://newgtlds.icann.org/", 0x40, f},
1043 {"motorcycles", r, x, s{"a0.nic.motorcycles", "a2.nic.motorcycles", "b0.nic.motorcycles", "c0.nic.motorcycles"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, f},
1044 {"mov", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1045 {"movie", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.movie", e, "https://newgtlds.icann.org/", 0x40, t},
1046 {"movistar", r, x, n, n, n, "whois-fe.movistar.tango.knipp.de", e, "https://newgtlds.icann.org/", 0x42, f},
1047 {"mozaic", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1048 {"mp", r, z[3412:3416], s{"ns1.nic.mp", "ns2.nic.mp", "ns3.nic.mp", "ns4.nic.mp"}, n, n, "whois.nic.mp", e, "http://chi.mp/", 0xa0, f},
1049 {"mq", r, x, s{"ns1-fr.mediaserv.net", "ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, "whois.mediaserv.net", "https://www.dom-enic.com/whois.html", e, 0xa0, f},
1050 {"mr", r, z[3416:3420], s{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, "whois.nic.mr", e, e, 0xa0, f},
1051 {"mrmuscle", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1052 {"mrporter", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1053 {"ms", r, z[3420:3424], s{"ms-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, "whois.nic.ms", e, e, 0xe0, f},
1054 {"msd", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1055 {"mt", r, z[3424:3429], s{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, e, "https://www.nic.org.mt/dotmt/", e, 0xa0, f},
1056 {"mtn", r, x, s{"a.nic.mtn", "b.nic.mtn", "c.nic.mtn", "d.nic.mtn"}, n, n, "whois.nic.mtn", e, "https://newgtlds.icann.org/", 0x42, f},
1057 {"mtpc", r, x, n, n, n, "whois.nic.mtpc", e, "https://newgtlds.icann.org/", 0x2042, f},
1058 {"mtr", r, x, s{"ns1.nic.mtr", "ns2.nic.mtr", "ns3.nic.mtr", "ns4.nic.mtr"}, n, n, "whois.nic.mtr", e, "https://newgtlds.icann.org/", 0x42, f},
1059 {"mu", r, z[3429:3438], s{"anycast1.irondns.net", "fork.sth.dnsnode.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, "whois.nic.mu", e, e, 0xa0, f},
1060 {"multichoice", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1061 {"museum", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.museum", e, "http://about.museum/", 0x1040, t},
1062 {"music", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1063 {"mutual", r, x, s{"ns1.dns.nic.mutual", "ns2.dns.nic.mutual", "ns3.dns.nic.mutual", "ns4.dns.nic.mutual", "ns5.dns.nic.mutual", "ns6.dns.nic.mutual"}, n, n, "whois.nic.mutual", e, "https://newgtlds.icann.org/", 0x42, f},
1064 {"mutualfunds", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1065 {"mutuelle", r, x, n, n, n, "whois-mutuelle.nic.fr", e, "https://newgtlds.icann.org/", 0x840, f},
1066 {"mv", r, z[3438:3452], s{"mv-ns.anycast.pch.net", "ns.dhivehinet.net.mv", "ns2.dhivehinet.net.mv"}, n, n, e, e, e, 0xa0, f},
1067 {"mw", r, z[3452:3462], s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, "whois.nic.mw", "http://www.registrar.mw/", e, 0xa0, f},
1068 {"mx", r, z[3462:3467], s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, "whois.mx", e, e, 0xa0, f},
1069 {"my", r, z[3467:3475], s{"a.mynic.centralnic-dns.com", "a.nic.my", "a1.nic.my", "b.mynic.centralnic-dns.com", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, "whois.mynic.my", e, e, 0xa0, t},
1070 {"mz", r, z[3475:3482], s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, "whois.nic.mz", "http://www.domains.co.mz", e, 0xa8, f},
1071 {"mzansimagic", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1072 {"na", r, z[3482:3500], s{"anyc2.irondns.net", "etld-1.anycast.net", "na-ns.anycast.pch.net", "na.anycastdns.cz"}, n, n, "whois.na-nic.com.na", e, e, 0xa0, f},
1073 {"nab", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.nab", e, "https://newgtlds.icann.org/", 0x42, f},
1074 {"nadex", r, x, n, n, n, "whois.nic.nadex", e, "https://newgtlds.icann.org/", 0x42, f},
1075 {"nagoya", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, s{"Nagoya-shi"}, "whois.nic.nagoya", e, e, 0xc4, t},
1076 {"name", r, z[3500:3503], s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.name", e, e, 0x40, t},
1077 {"naspers", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1078 {"nationwide", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.nationwide", e, "https://newgtlds.icann.org/", 0x42, f},
1079 {"natura", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x42, t},
1080 {"navy", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.navy", e, e, 0x40, t},
1081 {"nba", r, x, s{"ns1.dns.nic.nba", "ns2.dns.nic.nba", "ns3.dns.nic.nba", "ns4.dns.nic.nba", "ns5.dns.nic.nba", "ns6.dns.nic.nba"}, n, n, "whois.nic.nba", e, "https://newgtlds.icann.org/", 0x42, f},
1082 {"nc", r, z[3503:3506], s{"any-ns1.nc", "nc.cctld.authdns.ripe.net", "ns1.nc", "ns2.nc"}, n, n, "whois.nc", e, e, 0xa0, f},
1083 {"ne", r, z[3506:3511], s{"bow.rain.fr", "ne.cctld.authdns.ripe.net", "ns-ne.afrinic.net", "ns.intnet.ne"}, n, n, e, e, e, 0xa0, f},
1084 {"nec", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.nec", e, "https://newgtlds.icann.org/", 0x42, f},
1085 {"net", r, z[3511:3521], s{"a.gtld-servers.net", "b.gtld-servers.net", "c.gtld-servers.net", "d.gtld-servers.net", "e.gtld-servers.net", "f.gtld-servers.net", "g.gtld-servers.net", "h.gtld-servers.net", "i.gtld-servers.net", "j.gtld-servers.net", "k.gtld-servers.net", "l.gtld-servers.net", "m.gtld-servers.net"}, n, n, "whois.verisign-grs.com", e, "http://www.verisigninc.com/en_US/products-and-services/domain-name-services/registry-services/index.xhtml", 0x40, t},
1086 {"netaporter", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1087 {"netbank", r, x, s{"a.nic.netbank", "b.nic.netbank", "c.nic.netbank", "d.nic.netbank"}, n, n, "whois.nic.netbank", e, "https://newgtlds.icann.org/", 0x42, f},
1088 {"netflix", r, x, s{"ns1.dns.nic.netflix", "ns2.dns.nic.netflix", "ns3.dns.nic.netflix", "ns4.dns.nic.netflix", "ns5.dns.nic.netflix", "ns6.dns.nic.netflix"}, n, n, "whois.nic.netflix", e, "https://newgtlds.icann.org/", 0x42, f},
1089 {"network", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.network", e, "https://newgtlds.icann.org/", 0x40, t},
1090 {"neustar", r, x, s{"ns1.dns.nic.neustar", "ns2.dns.nic.neustar", "ns3.dns.nic.neustar", "ns4.dns.nic.neustar", "ns5.dns.nic.neustar", "ns6.dns.nic.neustar"}, n, n, "whois.nic.neustar", e, "https://newgtlds.icann.org/", 0x42, t},
1091 {"new", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1092 {"newholland", r, x, s{"a0.nic.newholland", "a2.nic.newholland", "b0.nic.newholland", "c0.nic.newholland"}, n, n, "whois.nic.newholland", e, "https://newgtlds.icann.org/", 0x42, f},
1093 {"news", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.news", e, "https://newgtlds.icann.org/", 0x40, t},
1094 {"next", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.next", e, "https://newgtlds.icann.org/", 0x42, f},
1095 {"nextdirect", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.nextdirect", e, "https://newgtlds.icann.org/", 0x42, f},
1096 {"nexus", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
1097 {"nf", r, z[3521:3533], s{"ns.anycast.nic.nf", "ns.cocca.fr"}, n, n, "whois.nic.nf", e, e, 0xa0, f},
1098 {"nfl", r, x, s{"ns1.dns.nic.nfl", "ns2.dns.nic.nfl", "ns3.dns.nic.nfl", "ns4.dns.nic.nfl", "ns5.dns.nic.nfl", "ns6.dns.nic.nfl"}, n, n, "whois.nic.nfl", e, "https://newgtlds.icann.org/", 0x42, f},
1099 {"ng", r, z[3533:3543], s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, "whois.nic.net.ng", e, "www.web4africa.com.ng", 0xa0, f},
1100 {"ngo", r, x, s{"a0.nic.ngo", "a2.nic.ngo", "b0.nic.ngo", "b2.nic.ngo", "c0.nic.ngo", "d0.nic.ngo"}, n, n, "whois.publicinterestregistry.net", e, "https://pir.org/products/ngo-ong-domain/", 0x40, t},
1101 {"nhk", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.nhk", e, "https://newgtlds.icann.org/", 0x42, t},
1102 {"ni", r, z[3543:3558], s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, "http://www.nic.ni/", "http://www.nic.ni/", 0xa8, f},
1103 {"nico", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.nico", e, "https://newgtlds.icann.org/", 0x42, t},
1104 {"nike", r, x, s{"ns1.dns.nic.nike", "ns2.dns.nic.nike", "ns3.dns.nic.nike", "ns4.dns.nic.nike", "ns5.dns.nic.nike", "ns6.dns.nic.nike"}, n, n, "whois.nic.nike", e, "https://newgtlds.icann.org/", 0x42, f},
1105 {"nikon", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.nikon", e, "https://newgtlds.icann.org/", 0x42, f},
1106 {"ninja", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.ninja", e, e, 0x40, t},
1107 {"nissan", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
1108 {"nissay", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.nissay", e, "https://newgtlds.icann.org/", 0x42, t},
1109 {"nl", r, z[3558:3564], s{"ns1.dns.nl", "ns2.dns.nl", "ns3.dns.nl"}, n, n, "whois.domain-registry.nl", e, e, 0xa0, f},
1110 {"no", r, z[3564:3574], s{"i.nic.no", "njet.norid.no", "not.norid.no", "x.nic.no", "y.nic.no", "z.nic.no"}, n, n, "whois.norid.no", e, e, 0xa0, t},
1111 {"nokia", r, x, s{"a0.nic.nokia", "a2.nic.nokia", "b0.nic.nokia", "c0.nic.nokia"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
1112 {"northlandinsurance", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1113 {"northwesternmutual", r, x, s{"ns1.dns.nic.northwesternmutual", "ns2.dns.nic.northwesternmutual", "ns3.dns.nic.northwesternmutual", "ns4.dns.nic.northwesternmutual", "ns5.dns.nic.northwesternmutual", "ns6.dns.nic.northwesternmutual"}, n, n, "whois.nic.northwesternmutual", e, "https://newgtlds.icann.org/", 0x42, f},
1114 {"norton", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.norton", e, "https://newgtlds.icann.org/", 0x42, t},
1115 {"now", r, x, s{"dns1.nic.now", "dns2.nic.now", "dns3.nic.now", "dns4.nic.now", "dnsa.nic.now", "dnsb.nic.now", "dnsc.nic.now", "dnsd.nic.now"}, n, n, "whois.nic.now", e, "https://newgtlds.icann.org/", 0x40, t},
1116 {"nowruz", r, x, s{"a.ns.nic.nowruz", "b.ns.nic.nowruz", "ns.cocca.fr"}, n, s{"Iran"}, "whois.nic.nowruz", e, "https://newgtlds.icann.org/", 0x42, f},
1117 {"nowtv", r, x, s{"a0.nic.nowtv", "a2.nic.nowtv", "b0.nic.nowtv", "c0.nic.nowtv"}, n, n, "whois.nic.nowtv", e, "https://newgtlds.icann.org/", 0x42, f},
1118 {"np", r, z[3574:3720], s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, "http://register.mos.com.np/np-whois-lookup", e, 0xa8, f},
1119 {"nr", r, z[3720:3727], s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, e, "http://www.cenpac.net.nr/dns/whois.html", e, 0xa0, f},
1120 {"nra", r, x, s{"a0.nic.nra", "a2.nic.nra", "b0.nic.nra", "c0.nic.nra"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1121 {"nrw", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"DE-NW"}, "whois.nic.nrw", e, "https://newgtlds.icann.org/", 0x440, t},
1122 {"ntt", r, x, s{"tld1.nic.ntt", "tld2.nic.ntt", "tld3.nic.ntt", "tld5.nic.ntt"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
1123 {"nu", r, z[3727:3732], s{"a.ns.nu", "c.ns.nu", "d.ns.nu", "m.ns.nu", "y.ns.nu", "z.ns.nu"}, n, n, "whois.iis.nu", e, "http://www.nic.nu/", 0xe0, t},
1124 {"nyc", r, x, s{"ns1.dns.nic.nyc", "ns2.dns.nic.nyc", "ns3.dns.nic.nyc", "ns4.dns.nic.nyc", "ns5.dns.nic.nyc", "ns6.dns.nic.nyc"}, n, s{"New York City"}, "whois.nic.nyc", e, e, 0xc4, t},
1125 {"nz", r, z[3732:3747], s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, "whois.srs.net.nz", e, e, 0xa0, t},
1126 {"obi", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.obi", e, "https://newgtlds.icann.org/", 0x42, f},
1127 {"observer", r, x, s{"a.nic.observer", "b.nic.observer", "c.nic.observer", "d.nic.observer"}, n, n, "whois.nic.observer", e, "https://newgtlds.icann.org/", 0x42, f},
1128 {"off", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.off", e, "https://newgtlds.icann.org/", 0x42, f},
1129 {"office", r, x, s{"ns1.dns.nic.office", "ns2.dns.nic.office", "ns3.dns.nic.office", "ns4.dns.nic.office", "ns5.dns.nic.office", "ns6.dns.nic.office"}, n, n, "whois.nic.office", e, "https://newgtlds.icann.org/", 0x42, f},
1130 {"okinawa", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, s{"Okinawa", "JP-47"}, "whois.nic.okinawa", e, e, 0xc4, t},
1131 {"olayan", r, x, s{"a.nic.olayan", "b.nic.olayan", "c.nic.olayan", "d.nic.olayan"}, n, n, "whois.nic.olayan", e, "https://newgtlds.icann.org/", 0x42, f},
1132 {"olayangroup", r, x, s{"a.nic.olayangroup", "b.nic.olayangroup", "c.nic.olayangroup", "d.nic.olayangroup"}, n, n, "whois.nic.olayangroup", e, "https://newgtlds.icann.org/", 0x42, f},
1133 {"oldnavy", r, x, s{"ns1.dns.nic.oldnavy", "ns2.dns.nic.oldnavy", "ns3.dns.nic.oldnavy", "ns4.dns.nic.oldnavy", "ns5.dns.nic.oldnavy", "ns6.dns.nic.oldnavy"}, n, n, "whois.nic.oldnavy", e, "https://newgtlds.icann.org/", 0x42, f},
1134 {"ollo", r, x, s{"a0.nic.ollo", "a2.nic.ollo", "b0.nic.ollo", "c0.nic.ollo"}, n, n, "whois.nic.ollo", e, "https://newgtlds.icann.org/", 0x42, f},
1135 {"olympus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1136 {"om", r, z[3747:3760], s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, "whois.registry.om", e, "http://www.registry.om", 0xa0, f},
1137 {"omega", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.omega", e, "https://newgtlds.icann.org/", 0x42, t},
1138 {"one", r, x, s{"a.nic.one", "b.nic.one", "c.nic.one", "d.nic.one"}, n, n, "whois.nic.one", e, "https://newgtlds.icann.org/", 0x40, f},
1139 {"ong", r, x, s{"a0.nic.ong", "a2.nic.ong", "b0.nic.ong", "b2.nic.ong", "c0.nic.ong", "d0.nic.ong"}, n, n, "whois.publicinterestregistry.net", e, "https://pir.org/products/ngo-ong-domain/", 0x40, f},
1140 {"onl", r, x, s{"a0.nic.onl", "a2.nic.onl", "b0.nic.onl", "c0.nic.onl"}, n, n, "whois.afilias-srs.net", e, "http://nic.onl/", 0x40, f},
1141 {"online", r, x, s{"a.nic.online", "b.nic.online", "e.nic.online", "f.nic.online"}, n, n, "whois.nic.online", e, "https://newgtlds.icann.org/", 0x40, t},
1142 {"onyourside", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.onyourside", e, "https://newgtlds.icann.org/", 0x42, f},
1143 {"ooo", r, x, s{"a.nic.ooo", "b.nic.ooo", "c.nic.ooo", "d.nic.ooo"}, n, n, "whois.nic.ooo", e, e, 0x40, t},
1144 {"open", r, x, s{"ns1.dns.nic.open", "ns2.dns.nic.open", "ns3.dns.nic.open", "ns4.dns.nic.open", "ns5.dns.nic.open", "ns6.dns.nic.open"}, n, n, "whois.nic.open", e, "https://newgtlds.icann.org/", 0x42, f},
1145 {"oracle", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.oracle", e, "https://newgtlds.icann.org/", 0x42, f},
1146 {"orange", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.orange", e, "https://newgtlds.icann.org/", 0x42, t},
1147 {"org", r, z[3760:3766], s{"a0.org.afilias-nst.info", "a2.org.afilias-nst.info", "b0.org.afilias-nst.org", "b2.org.afilias-nst.org", "c0.org.afilias-nst.info", "d0.org.afilias-nst.org"}, n, n, "whois.pir.org", e, "https://pir.org/products/org-domain/", 0x40, t},
1148 {"organic", r, x, s{"a0.nic.organic", "a2.nic.organic", "b0.nic.organic", "c0.nic.organic"}, n, n, "whois.afilias.net", e, "http://nic.organic/", 0x40, f},
1149 {"orientexpress", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x2042, f},
1150 {"origin", r, x, n, n, n, "whois.afilias-srs.net", e, e, 0x0, t},
1151 {"origins", r, x, s{"a0.nic.origins", "a2.nic.origins", "b0.nic.origins", "c0.nic.origins"}, n, n, "whois.nic.origins", e, "https://newgtlds.icann.org/", 0x42, f},
1152 {"osaka", r, x, s{"ns1.dns.nic.osaka", "ns2.dns.nic.osaka", "ns3.dns.nic.osaka", "ns4.dns.nic.osaka", "ns5.dns.nic.osaka", "ns6.dns.nic.osaka"}, n, s{"Osaka", "JP-27"}, "whois.nic.osaka", e, "https://newgtlds.icann.org/", 0xc4, f},
1153 {"otsuka", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.otsuka", e, "https://newgtlds.icann.org/", 0x42, t},
1154 {"ott", r, x, s{"a0.nic.ott", "a2.nic.ott", "b0.nic.ott", "c0.nic.ott"}, n, n, "whois.nic.ott", e, "https://newgtlds.icann.org/", 0x48, f},
1155 {"overheidnl", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1156 {"ovh", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois-ovh.nic.fr", e, e, 0x40, t},
1157 {"pa", r, z[3766:3777], s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, "http://www.nic.pa/", "http://www.nic.pa/", 0xa0, f},
1158 {"page", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1159 {"pamperedchef", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1160 {"panasonic", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
1161 {"panerai", r, x, n, n, n, "whois.nic.panerai", e, "https://newgtlds.icann.org/", 0x42, f},
1162 {"paris", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr", "h.ext.nic.fr"}, n, s{"Paris", "FR-J"}, "whois-paris.nic.fr", e, e, 0xc4, t},
1163 {"pars", r, x, s{"a.ns.nic.pars", "b.ns.nic.pars", "ns.cocca.fr"}, n, s{"Iran"}, "whois.nic.pars", e, "https://newgtlds.icann.org/", 0x40, f},
1164 {"partners", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.partners", e, e, 0x40, t},
1165 {"parts", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.parts", e, e, 0x40, t},
1166 {"party", r, x, s{"ns1.dns.nic.party", "ns2.dns.nic.party", "ns3.dns.nic.party", "ns4.dns.nic.party", "ns5.dns.nic.party", "ns6.dns.nic.party"}, n, n, "whois.nic.party", e, "https://www.famousfourmedia.com/", 0x40, t},
1167 {"passagens", r, x, s{"ns1.dns.nic.passagens", "ns2.dns.nic.passagens", "ns3.dns.nic.passagens", "ns4.dns.nic.passagens", "ns5.dns.nic.passagens", "ns6.dns.nic.passagens"}, n, n, "whois.nic.passagens", e, "https://newgtlds.icann.org/", 0x42, f},
1168 {"patagonia", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1169 {"patch", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1170 {"pay", r, x, s{"dns1.nic.pay", "dns2.nic.pay", "dns3.nic.pay", "dns4.nic.pay", "dnsa.nic.pay", "dnsb.nic.pay", "dnsc.nic.pay", "dnsd.nic.pay"}, n, n, "whois.nic.pay", e, "https://newgtlds.icann.org/", 0x40, t},
1171 {"payu", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1172 {"pccw", r, x, s{"a0.nic.pccw", "a2.nic.pccw", "b0.nic.pccw", "c0.nic.pccw"}, n, n, "whois.nic.pccw", e, "https://newgtlds.icann.org/", 0x42, f},
1173 {"pe", r, z[3777:3786], s{"pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, "kero.yachay.pe", e, "http://www.nic.pe/", 0xa0, t},
1174 {"persiangulf", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0xc0, f},
1175 {"pet", r, x, s{"a0.nic.pet", "a2.nic.pet", "b0.nic.pet", "c0.nic.pet"}, n, n, "whois.afilias.net", e, "http://nic.pet/", 0x40, f},
1176 {"pets", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1177 {"pf", r, z[3786:3791], s{"ns1.mana.pf", "ns2.mana.pf"}, n, n, "whois.registry.pf", e, e, 0xa0, f},
1178 {"pfizer", r, x, s{"ns1.dns.nic.pfizer", "ns2.dns.nic.pfizer", "ns3.dns.nic.pfizer", "ns4.dns.nic.pfizer", "ns5.dns.nic.pfizer", "ns6.dns.nic.pfizer"}, n, n, "whois.nic.pfizer", e, "https://newgtlds.icann.org/", 0x42, f},
1179 {"pg", r, z[3791:3797], s{"munnari.oz.au", "ns.uu.net", "ns1.tiare.net.pg", "ns1.unitech.ac.pg", "ns2.tiare.net.pg"}, n, n, e, e, e, 0xa0, f},
1180 {"ph", r, z[3797:3806], s{"1.ns.ph", "ns2.cuhk.edu.hk", "ns4.apnic.net", "ph.communitydns.net"}, s{"45.79.222.138"}, n, e, "http://www.dot.ph/whois", e, 0xa0, f},
1181 {"pharmacy", r, x, s{"ns1.dns.nic.pharmacy", "ns2.dns.nic.pharmacy", "ns3.dns.nic.pharmacy", "ns4.dns.nic.pharmacy", "ns5.dns.nic.pharmacy", "ns6.dns.nic.pharmacy"}, n, n, "whois.nic.pharmacy", e, "https://newgtlds.icann.org/", 0x40, f},
1182 {"phd", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1183 {"philips", r, x, s{"a.nic.philips", "b.nic.philips", "c.nic.philips", "d.nic.philips"}, n, n, "whois.nic.philips", e, "https://newgtlds.icann.org/", 0x42, f},
1184 {"phone", r, x, s{"a0.nic.phone", "a2.nic.phone", "b0.nic.phone", "c0.nic.phone"}, n, n, "whois.nic.phone", e, "https://newgtlds.icann.org/", 0x40, f},
1185 {"photo", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.photo/", 0x40, t},
1186 {"photography", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.photography", e, e, 0x40, t},
1187 {"photos", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.photos", e, e, 0x40, t},
1188 {"physio", r, x, s{"a.nic.physio", "b.nic.physio", "c.nic.physio", "d.nic.physio"}, n, n, "whois.nic.physio", e, "https://newgtlds.icann.org/", 0x40, f},
1189 {"piaget", r, x, n, n, n, "whois.nic.piaget", e, "https://newgtlds.icann.org/", 0x42, f},
1190 {"pics", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.pics/", 0x40, t},
1191 {"pictet", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1192 {"pictures", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.pictures", e, e, 0x40, t},
1193 {"pid", r, x, s{"a.nic.pid", "b.nic.pid", "c.nic.pid", "d.nic.pid"}, n, n, "whois.nic.pid", e, "https://newgtlds.icann.org/", 0x40, t},
1194 {"pin", r, x, s{"dns1.nic.pin", "dns2.nic.pin", "dns3.nic.pin", "dns4.nic.pin", "dnsa.nic.pin", "dnsb.nic.pin", "dnsc.nic.pin", "dnsd.nic.pin"}, n, n, "whois.nic.pin", e, "https://newgtlds.icann.org/", 0x48, t},
1195 {"ping", r, x, s{"ns1.dns.nic.ping", "ns2.dns.nic.ping", "ns3.dns.nic.ping", "ns4.dns.nic.ping", "ns5.dns.nic.ping", "ns6.dns.nic.ping"}, n, n, "whois.nic.ping", e, "https://newgtlds.icann.org/", 0x42, f},
1196 {"pink", r, x, s{"a0.nic.pink", "a2.nic.pink", "b0.nic.pink", "b2.nic.pink", "c0.nic.pink"}, n, n, "whois.afilias.net", e, "http://nic.pink/", 0x40, f},
1197 {"pioneer", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
1198 {"piperlime", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1199 {"pitney", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1200 {"pizza", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.pizza", e, "https://newgtlds.icann.org/", 0x40, t},
1201 {"pk", r, z[3806:3821], s{"root-c1.pknic.pk", "root-c2.pknic.pk", "root-e.pknic.pk", "root-s.pknic.pk"}, n, n, e, "http://www.pknic.net.pk/", e, 0xa0, f},
1202 {"pl", r, z[3821:3989], s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, "whois.dns.pl", e, e, 0xa0, t},
1203 {"place", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.place", e, e, 0x40, t},
1204 {"play", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1205 {"playstation", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.playstation", e, "https://newgtlds.icann.org/", 0x42, f},
1206 {"plumbing", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.plumbing", e, e, 0x40, t},
1207 {"plus", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.plus", e, "https://newgtlds.icann.org/", 0x40, t},
1208 {"pm", r, x, s{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.pm", e, e, 0xa0, t},
1209 {"pn", r, z[3989:4008], s{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "fork.sth.dnsnode.net", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, e, "http://www.pitcairn.pn/PnRegistry/", "http://www.nic.pn/", 0xa0, f},
1210 {"pnc", r, x, s{"a0.nic.pnc", "a2.nic.pnc", "b0.nic.pnc", "c0.nic.pnc"}, n, n, "whois.nic.pnc", e, "https://newgtlds.icann.org/", 0x42, f},
1211 {"pohl", r, x, s{"a.nic.pohl", "b.nic.pohl", "c.nic.pohl", "d.nic.pohl"}, n, n, "whois.nic.pohl", e, "https://newgtlds.icann.org/", 0x42, f},
1212 {"poker", r, x, s{"a0.nic.poker", "a2.nic.poker", "b0.nic.poker", "c0.nic.poker"}, n, n, "whois.afilias.net", e, "http://nic.poker/", 0x40, f},
1213 {"politie", r, x, s{"ns1.nic.politie", "ns2.nic.politie", "ns3.nic.politie"}, n, n, "whois.nic.politie", e, "https://newgtlds.icann.org/", 0x42, f},
1214 {"polo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1215 {"porn", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, "whois.registrar.adult", e, "http://nic.porn/", 0x41, t},
1216 {"post", r, x, s{"a0.post.afilias-nst.info", "a2.post.afilias-nst.info", "b0.post.afilias-nst.org", "b2.post.afilias-nst.org", "c0.post.afilias-nst.info", "d0.post.afilias-nst.org"}, n, n, "whois.dotpostregistry.net", e, "http://en.wikipedia.org/wiki/.post", 0x1040, f},
1217 {"pr", r, z[4008:4060], s{"a.lactld.org", "a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org", "pr-dns.denic.de"}, n, n, "whois.afilias-srs.net", e, "http://www.nic.pr/", 0xa0, t},
1218 {"pramerica", r, x, s{"ns1.dns.nic.pramerica", "ns2.dns.nic.pramerica", "ns3.dns.nic.pramerica", "ns4.dns.nic.pramerica", "ns5.dns.nic.pramerica", "ns6.dns.nic.pramerica"}, n, n, "whois.nic.pramerica", e, "https://newgtlds.icann.org/", 0x42, f},
1219 {"praxi", r, x, s{"ns1.dns.nic.praxi", "ns2.dns.nic.praxi", "ns3.dns.nic.praxi", "ns4.dns.nic.praxi", "ns5.dns.nic.praxi", "ns6.dns.nic.praxi"}, n, n, "whois.nic.praxi", e, "https://newgtlds.icann.org/", 0x42, f},
1220 {"press", r, x, s{"a.nic.press", "b.nic.press", "e.nic.press", "f.nic.press"}, n, n, "whois.nic.press", e, e, 0x40, t},
1221 {"prime", r, x, s{"dns1.nic.prime", "dns2.nic.prime", "dns3.nic.prime", "dns4.nic.prime", "dnsa.nic.prime", "dnsb.nic.prime", "dnsc.nic.prime", "dnsd.nic.prime"}, n, n, "whois.nic.prime", e, "https://newgtlds.icann.org/", 0x42, t},
1222 {"pro", r, z[4060:4096], s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, "whois.afilias.net", e, "https://registry.pro/", 0x40, f},
1223 {"prod", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
1224 {"productions", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.productions", e, e, 0x40, t},
1225 {"prof", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1226 {"progressive", r, x, s{"a0.nic.progressive", "a2.nic.progressive", "b0.nic.progressive", "c0.nic.progressive"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1227 {"promo", r, x, s{"a0.nic.promo", "a2.nic.promo", "b0.nic.promo", "c0.nic.promo"}, n, n, "whois.afilias.net", e, "http://nic.promo/", 0x40, f},
1228 {"properties", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.properties", e, e, 0x40, t},
1229 {"property", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.property/", 0x40, t},
1230 {"protection", r, x, s{"a.nic.protection", "b.nic.protection", "e.nic.protection", "f.nic.protection"}, n, n, "whois.nic.protection", e, "https://newgtlds.icann.org/", 0x40, t},
1231 {"pru", r, x, s{"ns1.dns.nic.pru", "ns2.dns.nic.pru", "ns3.dns.nic.pru", "ns4.dns.nic.pru", "ns5.dns.nic.pru", "ns6.dns.nic.pru"}, n, n, "whois.nic.pru", e, "https://newgtlds.icann.org/", 0x42, f},
1232 {"prudential", r, x, s{"ns1.dns.nic.prudential", "ns2.dns.nic.prudential", "ns3.dns.nic.prudential", "ns4.dns.nic.prudential", "ns5.dns.nic.prudential", "ns6.dns.nic.prudential"}, n, n, "whois.nic.prudential", e, "https://newgtlds.icann.org/", 0x42, f},
1233 {"ps", r, z[4096:4105], s{"dns1.gov.ps", "fork.sth.dnsnode.net", "ns1.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, "whois.pnina.ps", e, e, 0xa0, f},
1234 {"pt", r, z[4105:4114], s{"a.dns.pt", "b.dns.pt", "c.dns.pt", "d.dns.pt", "e.dns.pt", "f.dns.pt", "g.dns.pt", "h.dns.pt", "ns.dns.br", "ns2.nic.fr"}, n, n, "whois.dns.pt", e, e, 0xa0, t},
1235 {"pub", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.pub", e, e, 0x40, t},
1236 {"pw", r, z[4114:4125], s{"ns1.nic.pw", "ns2.nic.pw", "ns5.nic.pw", "ns6.nic.pw"}, n, n, "whois.nic.pw", e, e, 0xa0, t},
1237 {"pwc", r, x, s{"a0.nic.pwc", "a2.nic.pwc", "b0.nic.pwc", "c0.nic.pwc"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1238 {"py", r, z[4125:4133], s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, "http://www.nic.py/consulta-datos.php", e, 0xa8, f},
1239 {"qa", r, z[4133:4141], s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, "whois.registry.qa", e, e, 0xa0, f},
1240 {"qpon", r, x, s{"ns1.dns.nic.qpon", "ns2.dns.nic.qpon", "ns3.dns.nic.qpon", "ns4.dns.nic.qpon", "ns5.dns.nic.qpon", "ns6.dns.nic.qpon"}, n, n, "whois.nic.qpon", e, e, 0x40, t},
1241 {"qtel", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1242 {"quebec", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"Quebec", "CA-QC"}, "whois.nic.quebec", e, e, 0xc4, t},
1243 {"quest", r, x, s{"a-cnic.nic.quest", "b-cnic.nic.quest", "c-cnic.nic.quest", "d-cnic.nic.quest"}, n, n, "whois.nic.quest", e, "https://newgtlds.icann.org/", 0x42, f},
1244 {"qvc", r, x, s{"ns1.dns.nic.qvc", "ns2.dns.nic.qvc", "ns3.dns.nic.qvc", "ns4.dns.nic.qvc", "ns5.dns.nic.qvc", "ns6.dns.nic.qvc"}, n, n, "whois.nic.qvc", e, "https://newgtlds.icann.org/", 0x42, f},
1245 {"racing", r, x, s{"ns1.dns.nic.racing", "ns2.dns.nic.racing", "ns3.dns.nic.racing", "ns4.dns.nic.racing", "ns5.dns.nic.racing", "ns6.dns.nic.racing"}, n, n, "whois.nic.racing", e, "https://www.famousfourmedia.com/", 0x40, t},
1246 {"radio", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.radio", e, "http://nic.radio/", 0x40, f},
1247 {"raid", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.raid", e, "https://newgtlds.icann.org/", 0x42, f},
1248 {"ram", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1249 {"re", r, z[4141:4144], s{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.re", e, e, 0xa0, t},
1250 {"read", r, x, s{"dns1.nic.read", "dns2.nic.read", "dns3.nic.read", "dns4.nic.read", "dnsa.nic.read", "dnsb.nic.read", "dnsc.nic.read", "dnsd.nic.read"}, n, n, "whois.nic.read", e, "https://newgtlds.icann.org/", 0x42, t},
1251 {"realestate", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.realestate", e, "https://newgtlds.icann.org/", 0x40, t},
1252 {"realtor", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://www.claim.realtor/", 0x40, f},
1253 {"realty", r, x, s{"a.nic.realty", "b.nic.realty", "c.nic.realty", "d.nic.realty"}, n, n, "whois.nic.realty", e, "https://newgtlds.icann.org/", 0x40, t},
1254 {"recipes", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.recipes", e, e, 0x40, t},
1255 {"red", r, x, s{"a0.nic.red", "a2.nic.red", "b0.nic.red", "c0.nic.red"}, n, n, "whois.afilias.net", e, "http://nic.red/", 0x40, f},
1256 {"redken", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1257 {"redstone", r, x, s{"a0.nic.redstone", "a2.nic.redstone", "b0.nic.redstone", "c0.nic.redstone"}, n, n, "whois.nic.redstone", e, "https://newgtlds.icann.org/", 0x42, f},
1258 {"redumbrella", r, x, s{"a0.nic.redumbrella", "a2.nic.redumbrella", "b0.nic.redumbrella", "c0.nic.redumbrella"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1259 {"rehab", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.rehab", e, "https://newgtlds.icann.org/", 0x40, t},
1260 {"reise", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.reise", e, "https://newgtlds.icann.org/", 0x40, t},
1261 {"reisen", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.reisen", e, e, 0x40, t},
1262 {"reit", r, x, s{"a.nic.reit", "b.nic.reit", "c.nic.reit", "d.nic.reit"}, n, n, "whois.nic.reit", e, "https://newgtlds.icann.org/", 0x50, f},
1263 {"reliance", r, x, s{"a0.nic.reliance", "a2.nic.reliance", "b0.nic.reliance", "c0.nic.reliance"}, n, n, "whois.nic.reliance", e, "https://newgtlds.icann.org/", 0x42, f},
1264 {"ren", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.ren", e, "https://newgtlds.icann.org/", 0x42, f},
1265 {"rent", r, x, s{"a.nic.rent", "b.nic.rent", "c.nic.rent", "d.nic.rent"}, n, n, "whois.nic.rent", e, "https://newgtlds.icann.org/", 0x40, t},
1266 {"rentals", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.rentals", e, e, 0x40, t},
1267 {"repair", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.repair", e, e, 0x40, t},
1268 {"report", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.report", e, e, 0x40, t},
1269 {"republican", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.republican", e, e, 0x40, t},
1270 {"rest", r, x, s{"a.nic.rest", "b.nic.rest", "c.nic.rest", "d.nic.rest"}, n, n, "whois.nic.rest", e, e, 0x40, t},
1271 {"restaurant", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.restaurant", e, e, 0x40, t},
1272 {"retirement", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1273 {"review", r, x, s{"ns1.dns.nic.review", "ns2.dns.nic.review", "ns3.dns.nic.review", "ns4.dns.nic.review", "ns5.dns.nic.review", "ns6.dns.nic.review"}, n, n, "whois.nic.review", e, "https://www.famousfourmedia.com/", 0x40, t},
1274 {"reviews", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.reviews", e, e, 0x40, t},
1275 {"rexroth", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.rexroth", e, "https://newgtlds.icann.org/", 0x42, f},
1276 {"rich", r, x, s{"a0.nic.rich", "a2.nic.rich", "b0.nic.rich", "c0.nic.rich"}, n, n, "whois.afilias-srs.net", e, "http://nic.rich/", 0x40, f},
1277 {"richardli", r, x, s{"a0.nic.richardli", "a2.nic.richardli", "b0.nic.richardli", "c0.nic.richardli"}, n, n, "whois.nic.richardli", e, "https://newgtlds.icann.org/", 0x42, f},
1278 {"ricoh", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.ricoh", e, "https://newgtlds.icann.org/", 0x42, f},
1279 {"rightathome", r, x, n, n, n, "whois.nic.rightathome", e, "https://newgtlds.icann.org/", 0x42, f},
1280 {"ril", r, x, s{"a0.nic.ril", "a2.nic.ril", "b0.nic.ril", "c0.nic.ril"}, n, n, "whois.nic.ril", e, "https://newgtlds.icann.org/", 0x42, f},
1281 {"rio", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, s{"Rio de Janeiro", "BR-RJ"}, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0xc4, t},
1282 {"rip", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.rip", e, "https://newgtlds.icann.org/", 0x40, t},
1283 {"rmit", r, x, s{"a.nic.rmit", "b.nic.rmit", "c.nic.rmit", "d.nic.rmit"}, n, n, "whois.nic.rmit", e, "https://newgtlds.icann.org/", 0x42, f},
1284 {"ro", r, z[4144:4161], s{"dns-at.rotld.ro", "dns-c.rotld.ro", "dns-ro.denic.de", "primary.rotld.ro", "sec-dns-a.rotld.ro", "sec-dns-b.rotld.ro"}, n, n, "whois.rotld.ro", e, e, 0xa0, f},
1285 {"rocher", r, x, s{"ns1.dns.nic.rocher", "ns2.dns.nic.rocher", "ns3.dns.nic.rocher", "ns4.dns.nic.rocher", "ns5.dns.nic.rocher", "ns6.dns.nic.rocher"}, n, n, "whois.nic.rocher", e, "https://newgtlds.icann.org/", 0x42, t},
1286 {"rocks", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.rocks", e, e, 0x40, t},
1287 {"rockwool", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1288 {"rodeo", r, x, s{"dns1.nic.rodeo", "dns2.nic.rodeo", "dns3.nic.rodeo", "dns4.nic.rodeo", "dnsa.nic.rodeo", "dnsb.nic.rodeo", "dnsc.nic.rodeo", "dnsd.nic.rodeo"}, n, n, "whois.nic.rodeo", e, "http://nic.rodeo/", 0x40, t},
1289 {"rogers", r, x, s{"a0.nic.rogers", "a2.nic.rogers", "b0.nic.rogers", "c0.nic.rogers"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1290 {"roma", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1291 {"room", r, x, s{"dns1.nic.room", "dns2.nic.room", "dns3.nic.room", "dns4.nic.room", "dnsa.nic.room", "dnsb.nic.room", "dnsc.nic.room", "dnsd.nic.room"}, n, n, "whois.nic.room", e, "https://newgtlds.icann.org/", 0x40, t},
1292 {"root", r, x, n, n, n, e, e, e, 0x40, f},
1293 {"rs", r, z[4161:4167], s{"a.nic.rs", "b.nic.rs", "f.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, "whois.rnids.rs", e, e, 0xa0, t},
1294 {"rsvp", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1295 {"ru", r, z[4167:4195], s{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, "whois.tcinet.ru", e, e, 0xa0, t},
1296 {"rugby", r, x, s{"a.nic.rugby", "b.nic.rugby", "c.nic.rugby", "d.nic.rugby"}, n, n, "whois.nic.rugby", e, "https://newgtlds.icann.org/", 0x40, f},
1297 {"ruhr", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"DE-NW"}, "whois.nic.ruhr", e, e, 0x440, t},
1298 {"run", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.run", e, "https://newgtlds.icann.org/", 0x40, t},
1299 {"rw", r, z[4195:4205], s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, "whois.ricta.org.rw", "http://whois.ricta.org.rw", e, 0xa0, f},
1300 {"rwe", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.rwe", e, "https://newgtlds.icann.org/", 0x42, t},
1301 {"ryukyu", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, s{"JP-46", "JP-47"}, "whois.nic.ryukyu", e, "https://newgtlds.icann.org/", 0x440, t},
1302 {"sa", r, z[4205:4213], s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, "whois.nic.net.sa", e, e, 0xa0, f},
1303 {"saarland", r, x, s{"a.nic.saarland", "b.nic.saarland", "c.nic.saarland", "d.nic.saarland"}, n, s{"DE-SL"}, "whois.nic.saarland", e, e, 0x4c0, t},
1304 {"safe", r, x, s{"dns1.nic.safe", "dns2.nic.safe", "dns3.nic.safe", "dns4.nic.safe", "dnsa.nic.safe", "dnsb.nic.safe", "dnsc.nic.safe", "dnsd.nic.safe"}, n, n, "whois.nic.safe", e, "https://newgtlds.icann.org/", 0x48, t},
1305 {"safety", r, x, s{"ns1.dns.nic.safety", "ns2.dns.nic.safety", "ns3.dns.nic.safety", "ns4.dns.nic.safety", "ns5.dns.nic.safety", "ns6.dns.nic.safety"}, n, n, "whois.nic.safety", e, "https://newgtlds.icann.org/", 0x40, f},
1306 {"safeway", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1307 {"sakura", r, x, s{"tld1.nic.sakura", "tld2.nic.sakura", "tld3.nic.sakura", "tld5.nic.sakura"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
1308 {"sale", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.sale", e, "https://newgtlds.icann.org/", 0x40, t},
1309 {"salon", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.salon", e, "https://newgtlds.icann.org/", 0x40, t},
1310 {"samsclub", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.samsclub", e, "https://newgtlds.icann.org/", 0x42, f},
1311 {"samsung", r, x, s{"ns1.samsung.centralnic-dns.com", "ns2.samsung.centralnic-dns.com", "ns3.samsung.centralnic-dns.com", "ns4.samsung.centralnic-dns.com"}, n, n, "whois.nic.samsung", e, "https://newgtlds.icann.org/", 0x42, f},
1312 {"sandvik", r, x, s{"a.nic.sandvik", "b.nic.sandvik", "c.nic.sandvik", "d.nic.sandvik"}, n, n, "whois.nic.sandvik", e, "https://newgtlds.icann.org/", 0x42, f},
1313 {"sandvikcoromant", r, x, s{"a.nic.sandvikcoromant", "b.nic.sandvikcoromant", "c.nic.sandvikcoromant", "d.nic.sandvikcoromant"}, n, n, "whois.nic.sandvikcoromant", e, "https://newgtlds.icann.org/", 0x42, f},
1314 {"sanofi", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.sanofi", e, "https://newgtlds.icann.org/", 0x42, f},
1315 {"sap", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.sap", e, "https://newgtlds.icann.org/", 0x42, t},
1316 {"sapo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1317 {"sapphire", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1318 {"sarl", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.sarl", e, e, 0x40, t},
1319 {"sas", r, x, s{"ns1.dns.nic.sas", "ns2.dns.nic.sas", "ns3.dns.nic.sas", "ns4.dns.nic.sas", "ns5.dns.nic.sas", "ns6.dns.nic.sas"}, n, n, "whois.nic.sas", e, "https://newgtlds.icann.org/", 0x42, f},
1320 {"save", r, x, s{"dns1.nic.save", "dns2.nic.save", "dns3.nic.save", "dns4.nic.save", "dnsa.nic.save", "dnsb.nic.save", "dnsc.nic.save", "dnsd.nic.save"}, n, n, "whois.nic.save", e, "https://newgtlds.icann.org/", 0x40, t},
1321 {"saxo", r, x, s{"a.nic.saxo", "b.nic.saxo", "c.nic.saxo", "d.nic.saxo"}, n, n, "whois.nic.saxo", e, "https://newgtlds.icann.org/", 0x42, f},
1322 {"sb", r, z[4213:4218], s{"ns.cocca.fr", "pch.nic.sb"}, n, n, "whois.nic.net.sb", e, e, 0xa0, f},
1323 {"sbi", r, x, s{"a0.nic.sbi", "a2.nic.sbi", "b0.nic.sbi", "c0.nic.sbi"}, n, n, "whois.nic.sbi", e, "https://newgtlds.icann.org/", 0x42, f},
1324 {"sbs", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.sbs", e, "https://newgtlds.icann.org/", 0x42, t},
1325 {"sc", r, z[4218:4223], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.nic.sc"}, n, n, "whois2.afilias-grs.net", e, e, 0xe0, t},
1326 {"sca", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.sca", e, "https://newgtlds.icann.org/", 0x42, t},
1327 {"scb", r, x, s{"a.nic.scb", "b.nic.scb", "c.nic.scb", "d.nic.scb"}, n, n, "whois.nic.scb", e, "https://newgtlds.icann.org/", 0x42, t},
1328 {"schaeffler", r, x, s{"a0.nic.schaeffler", "a2.nic.schaeffler", "b0.nic.schaeffler", "c0.nic.schaeffler"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
1329 {"schmidt", r, x, s{"a.nic.schmidt", "b.nic.schmidt", "c.nic.schmidt", "d.nic.schmidt"}, n, n, "whois.nic.schmidt", e, "https://newgtlds.icann.org/", 0x42, f},
1330 {"scholarships", r, x, s{"a0.nic.scholarships", "a2.nic.scholarships", "b0.nic.scholarships", "c0.nic.scholarships"}, n, n, "whois.nic.scholarships", e, "https://newgtlds.icann.org/", 0x40, f},
1331 {"school", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.school", e, "https://newgtlds.icann.org/", 0x40, t},
1332 {"schule", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.schule", e, e, 0x40, t},
1333 {"schwarz", r, x, s{"a.nic.schwarz", "b.nic.schwarz", "c.nic.schwarz", "d.nic.schwarz"}, n, n, "whois.nic.schwarz", e, "https://newgtlds.icann.org/", 0x42, t},
1334 {"schwarzgroup", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1335 {"science", r, x, s{"ns1.dns.nic.science", "ns2.dns.nic.science", "ns3.dns.nic.science", "ns4.dns.nic.science", "ns5.dns.nic.science", "ns6.dns.nic.science"}, n, n, "whois.nic.science", e, "https://www.famousfourmedia.com/", 0x40, t},
1336 {"scjohnson", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.scjohnson", e, "https://newgtlds.icann.org/", 0x42, f},
1337 {"scor", r, x, n, n, n, "whois.nic.scor", e, "https://newgtlds.icann.org/", 0x42, f},
1338 {"scot", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"GB-SCT"}, "whois.nic.scot", e, e, 0x440, t},
1339 {"sd", r, z[4223:4231], s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0xa0, f},
1340 {"se", r, z[4231:4263], s{"a.ns.se", "b.ns.se", "c.ns.se", "f.ns.se", "g.ns.se", "i.ns.se", "m.ns.se", "x.ns.se", "y.ns.se", "z.ns.se"}, n, n, "whois.iis.se", e, e, 0xa0, t},
1341 {"search", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1342 {"seat", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.seat", e, "https://newgtlds.icann.org/", 0x42, f},
1343 {"secure", r, x, s{"dns1.nic.secure", "dns2.nic.secure", "dns3.nic.secure", "dns4.nic.secure", "dnsa.nic.secure", "dnsb.nic.secure", "dnsc.nic.secure", "dnsd.nic.secure"}, n, n, "whois.nic.secure", e, "https://newgtlds.icann.org/", 0x40, t},
1344 {"security", r, x, s{"a.nic.security", "b.nic.security", "e.nic.security", "f.nic.security"}, n, n, "whois.nic.security", e, "https://newgtlds.icann.org/", 0x40, t},
1345 {"seek", r, x, s{"a.nic.seek", "b.nic.seek", "c.nic.seek", "d.nic.seek"}, n, n, "whois.nic.seek", e, "https://newgtlds.icann.org/", 0x42, f},
1346 {"select", r, x, s{"a.nic.select", "b.nic.select", "c.nic.select", "d.nic.select"}, n, n, "whois.nic.select", e, "https://newgtlds.icann.org/", 0x42, f},
1347 {"sener", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
1348 {"services", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.services", e, e, 0x40, t},
1349 {"ses", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.ses", e, "https://newgtlds.icann.org/", 0x42, f},
1350 {"seven", r, x, s{"a.nic.seven", "b.nic.seven", "c.nic.seven", "d.nic.seven"}, n, n, "whois.nic.seven", e, "https://newgtlds.icann.org/", 0x42, f},
1351 {"sew", r, x, s{"a0.nic.sew", "a2.nic.sew", "b0.nic.sew", "c0.nic.sew"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1352 {"sex", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, "whois.registrar.adult", e, "http://nic.sex/", 0x41, t},
1353 {"sexy", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.sexy/", 0x41, t},
1354 {"sfr", r, x, s{"a.nic.sfr", "b.nic.sfr", "c.nic.sfr", "d.nic.sfr"}, n, n, "whois.nic.sfr", e, "https://newgtlds.icann.org/", 0x42, t},
1355 {"sg", r, z[4263:4269], s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, "whois.sgnic.sg", e, e, 0xa0, t},
1356 {"sh", r, z[4269:4276], s{"a0.nic.sh", "a2.nic.sh", "b0.nic.sh", "c0.nic.sh"}, n, n, "whois.nic.sh", e, "https://www.nic.sh/", 0xa0, t},
1357 {"shangrila", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.shangrila", e, "https://newgtlds.icann.org/", 0x42, f},
1358 {"sharp", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
1359 {"shaw", r, x, s{"a0.nic.shaw", "a2.nic.shaw", "b0.nic.shaw", "c0.nic.shaw"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1360 {"shell", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.shell", e, "https://newgtlds.icann.org/", 0x42, t},
1361 {"shia", r, x, s{"a.ns.nic.shia", "b.ns.nic.shia", "ns.cocca.fr"}, n, s{"Iran"}, "whois.nic.shia", e, "https://newgtlds.icann.org/", 0x40, f},
1362 {"shiksha", r, x, s{"a0.nic.shiksha", "a2.nic.shiksha", "b0.nic.shiksha", "c0.nic.shiksha"}, n, n, "whois.afilias.net", e, "http://nic.shiksha/", 0x40, f},
1363 {"shoes", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.shoes", e, e, 0x40, t},
1364 {"shop", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.shop", e, "https://newgtlds.icann.org/", 0x40, f},
1365 {"shopping", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.shopping", e, "https://newgtlds.icann.org/", 0x40, t},
1366 {"shopyourway", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1367 {"shouji", r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, "https://newgtlds.icann.org/", 0x42, f},
1368 {"show", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.show", e, "https://newgtlds.icann.org/", 0x40, t},
1369 {"showtime", r, x, s{"a0.nic.showtime", "a2.nic.showtime", "b0.nic.showtime", "c0.nic.showtime"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1370 {"shriram", r, x, s{"a0.nic.shriram", "a2.nic.shriram", "b0.nic.shriram", "c0.nic.shriram"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1371 {"si", r, z[4276:4283], s{"b.dns.si", "f.dns.si", "g.dns.si", "h.dns.si", "i.dns.si", "k.dns.si", "l.dns.si"}, n, n, "whois.register.si", e, e, 0xa0, t},
1372 {"silk", r, x, s{"dns1.nic.silk", "dns2.nic.silk", "dns3.nic.silk", "dns4.nic.silk", "dnsa.nic.silk", "dnsb.nic.silk", "dnsc.nic.silk", "dnsd.nic.silk"}, n, n, "whois.nic.silk", e, "https://newgtlds.icann.org/", 0x42, t},
1373 {"sina", r, x, s{"a0.nic.sina", "a2.nic.sina", "b0.nic.sina", "c0.nic.sina"}, n, n, "whois.nic.sina", e, "https://newgtlds.icann.org/", 0x42, f},
1374 {"singles", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.singles", e, e, 0x40, t},
1375 {"site", r, x, s{"a.nic.site", "b.nic.site", "e.nic.site", "f.nic.site"}, n, n, "whois.nic.site", e, "https://newgtlds.icann.org/", 0x40, t},
1376 {"sj", r, x, s{"nac.no", "nn.uninett.no", "server.nordu.net"}, n, n, e, e, e, 0xa8, f},
1377 {"sk", r, x, s{"a.tld.sk", "b.tld.sk", "c.tld.sk", "e.tld.sk", "f.tld.sk", "g.tld.sk", "h.tld.sk"}, n, n, "whois.sk-nic.sk", e, e, 0xa0, f},
1378 {"ski", r, x, s{"a0.nic.ski", "a2.nic.ski", "b0.nic.ski", "c0.nic.ski"}, n, n, "whois.afilias.net", e, "http://nic.ski/", 0x40, t},
1379 {"skin", r, x, s{"a.nic.skin", "b.nic.skin", "c.nic.skin", "d.nic.skin"}, n, n, "whois.nic.skin", e, "https://newgtlds.icann.org/", 0x40, f},
1380 {"skolkovo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1381 {"sky", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.sky", e, "https://newgtlds.icann.org/", 0x42, t},
1382 {"skydrive", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1383 {"skype", r, x, s{"ns1.dns.nic.skype", "ns2.dns.nic.skype", "ns3.dns.nic.skype", "ns4.dns.nic.skype", "ns5.dns.nic.skype", "ns6.dns.nic.skype"}, n, n, "whois.nic.skype", e, "https://newgtlds.icann.org/", 0x42, f},
1384 {"sl", r, z[4283:4288], s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, "whois.nic.sl", "http://www.nic.sl", e, 0xa0, f},
1385 {"sling", r, x, s{"a0.nic.sling", "a2.nic.sling", "b0.nic.sling", "c0.nic.sling"}, n, n, "whois.nic.sling", e, "https://newgtlds.icann.org/", 0x42, f},
1386 {"sm", r, x, s{"dns.intelcom.sm", "dns.omniway.sm", "ns3.telecomitalia.sm", "sm.cctld.authdns.ripe.net"}, n, n, "whois.nic.sm", e, e, 0xa0, f},
1387 {"smart", r, x, s{"a.nic.smart", "b.nic.smart", "c.nic.smart", "d.nic.smart"}, n, n, "whois.nic.smart", e, "https://newgtlds.icann.org/", 0x42, f},
1388 {"smile", r, x, s{"dns1.nic.smile", "dns2.nic.smile", "dns3.nic.smile", "dns4.nic.smile", "dnsa.nic.smile", "dnsb.nic.smile", "dnsc.nic.smile", "dnsd.nic.smile"}, n, n, "whois.nic.smile", e, "https://newgtlds.icann.org/", 0x40, t},
1389 {"sn", r, z[4288:4295], s{"censvrns0001.ird.fr", "ns-sn.nic.fr", "ns.ucad.sn", "ns1.sonatel.sn", "sn.cctld.authdns.ripe.net"}, n, n, "whois.nic.sn", e, e, 0xa8, f},
1390 {"sncf", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.sncf", e, "https://newgtlds.icann.org/", 0x42, t},
1391 {"so", r, z[4295:4299], s{"d.nic.so", "e.nic.so"}, n, n, "whois.nic.so", e, e, 0xa0, f},
1392 {"soccer", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.soccer", e, "https://newgtlds.icann.org/", 0x40, t},
1393 {"social", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.social", e, e, 0x40, t},
1394 {"softbank", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.softbank", e, "https://newgtlds.icann.org/", 0x42, f},
1395 {"software", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.software", e, "https://newgtlds.icann.org/", 0x40, t},
1396 {"sohu", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.sohu", e, "https://newgtlds.icann.org/", 0x42, t},
1397 {"solar", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.solar", e, e, 0x40, t},
1398 {"solutions", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.solutions", e, e, 0x40, t},
1399 {"song", r, x, s{"ns1.dns.nic.song", "ns2.dns.nic.song", "ns3.dns.nic.song", "ns4.dns.nic.song", "ns5.dns.nic.song", "ns6.dns.nic.song"}, n, n, "whois.nic.song", e, "https://newgtlds.icann.org/", 0x42, t},
1400 {"sony", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.sony", e, "https://newgtlds.icann.org/", 0x42, f},
1401 {"soy", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1402 {"spa", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1403 {"space", r, z[4299:4300], s{"a.nic.space", "b.nic.space", "e.nic.space", "f.nic.space"}, n, n, "whois.nic.space", e, "https://newgtlds.icann.org/", 0x40, t},
1404 {"spiegel", r, x, n, n, n, "whois.ksregistry.net", e, "https://newgtlds.icann.org/", 0x42, f},
1405 {"sport", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.sport", e, "https://newgtlds.icann.org/", 0x40, f},
1406 {"sports", r, x, n, n, n, e, e, "https://gtldresult.icann.org/applicationstatus/applicationdetails/604", 0x2040, t},
1407 {"spot", r, x, s{"dns1.nic.spot", "dns2.nic.spot", "dns3.nic.spot", "dns4.nic.spot", "dnsa.nic.spot", "dnsb.nic.spot", "dnsc.nic.spot", "dnsd.nic.spot"}, n, n, "whois.nic.spot", e, "https://newgtlds.icann.org/", 0x40, t},
1408 {"spreadbetting", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.spreadbetting", e, "https://bostonivy.co/", 0x40, f},
1409 {"sr", r, x, s{"ns1.sr.net", "ns2.sr.net"}, n, n, e, "http://www.register.sr", e, 0xe0, f},
1410 {"srl", r, x, s{"a0.nic.srl", "a2.nic.srl", "b0.nic.srl", "c0.nic.srl"}, n, n, "whois.afilias-srs.net", e, "http://nic.srl/", 0x40, f},
1411 {"srt", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1412 {"ss", r, z[4300:4307], s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss", "root.nic.ss", "ssnic.anycastdns.cz"}, n, n, "whois.nic.ss", e, e, 0x0, t},
1413 {"st", r, z[4307:4320], s{"dns-au.st", "dns-st.bahnhof.net", "dns-us.st", "ns1.bahnhof.net"}, n, n, "whois.nic.st", e, e, 0xa0, f},
1414 {"stada", r, x, s{"a0.nic.stada", "a2.nic.stada", "b0.nic.stada", "c0.nic.stada"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
1415 {"staples", r, x, s{"ns1.dns.nic.staples", "ns2.dns.nic.staples", "ns3.dns.nic.staples", "ns4.dns.nic.staples", "ns5.dns.nic.staples", "ns6.dns.nic.staples"}, n, n, "whois.nic.staples", e, "https://newgtlds.icann.org/", 0x42, f},
1416 {"star", r, x, s{"a0.nic.star", "a2.nic.star", "b0.nic.star", "c0.nic.star"}, n, n, "whois.nic.star", e, "https://newgtlds.icann.org/", 0x42, f},
1417 {"starhub", r, x, n, n, n, "whois.nic.starhub", e, "https://newgtlds.icann.org/", 0x42, f},
1418 {"statebank", r, x, s{"a0.nic.statebank", "a2.nic.statebank", "b0.nic.statebank", "c0.nic.statebank"}, n, n, "whois.nic.statebank", e, "https://newgtlds.icann.org/", 0x42, f},
1419 {"statefarm", r, x, s{"ns1.dns.nic.statefarm", "ns2.dns.nic.statefarm", "ns3.dns.nic.statefarm", "ns4.dns.nic.statefarm", "ns5.dns.nic.statefarm", "ns6.dns.nic.statefarm"}, n, n, "whois.nic.statefarm", e, "https://newgtlds.icann.org/", 0x42, f},
1420 {"statoil", r, x, n, n, n, "whois.nic.statoil", e, "https://newgtlds.icann.org/", 0x42, f},
1421 {"stc", r, x, s{"a.nic.stc", "b.nic.stc", "c.nic.stc", "d.nic.stc"}, n, n, "whois.nic.stc", e, "https://newgtlds.icann.org/", 0x42, f},
1422 {"stcgroup", r, x, s{"a.nic.stcgroup", "b.nic.stcgroup", "c.nic.stcgroup", "d.nic.stcgroup"}, n, n, "whois.nic.stcgroup", e, "https://newgtlds.icann.org/", 0x42, f},
1423 {"stockholm", r, x, s{"a0.nic.stockholm", "a2.nic.stockholm", "b0.nic.stockholm", "c0.nic.stockholm"}, n, s{"Stockholm", "SE-AB"}, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0xc4, t},
1424 {"storage", r, x, s{"a.nic.storage", "b.nic.storage", "c.nic.storage", "d.nic.storage"}, n, n, "whois.nic.storage", e, "https://newgtlds.icann.org/", 0x40, t},
1425 {"store", r, x, s{"a.nic.store", "b.nic.store", "e.nic.store", "f.nic.store"}, n, n, "whois.nic.store", e, "https://newgtlds.icann.org/", 0x40, t},
1426 {"stream", r, x, s{"ns1.dns.nic.stream", "ns2.dns.nic.stream", "ns3.dns.nic.stream", "ns4.dns.nic.stream", "ns5.dns.nic.stream", "ns6.dns.nic.stream"}, n, n, "whois.nic.stream", e, "https://www.famousfourmedia.com/", 0x40, t},
1427 {"stroke", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
1428 {"studio", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.studio", e, "https://newgtlds.icann.org/", 0x40, t},
1429 {"study", r, x, s{"a.nic.study", "b.nic.study", "c.nic.study", "d.nic.study"}, n, n, "whois.nic.study", e, "https://newgtlds.icann.org/", 0x40, f},
1430 {"style", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.style", e, "https://newgtlds.icann.org/", 0x40, t},
1431 {"su", r, z[4320:4372], s{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, "whois.tcinet.ru", e, e, 0xe0, t},
1432 {"sucks", r, x, s{"a.nic.sucks", "b.nic.sucks", "c.nic.sucks", "d.nic.sucks"}, n, n, "whois.nic.sucks", e, "https://newgtlds.icann.org/", 0x40, f},
1433 {"supersport", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1434 {"supplies", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.supplies", e, e, 0x40, t},
1435 {"supply", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.supply", e, e, 0x40, t},
1436 {"support", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.support", e, e, 0x40, t},
1437 {"surf", r, x, s{"dns1.nic.surf", "dns2.nic.surf", "dns3.nic.surf", "dns4.nic.surf", "dnsa.nic.surf", "dnsb.nic.surf", "dnsc.nic.surf", "dnsd.nic.surf"}, n, n, "whois.nic.surf", e, "http://nic.surf/", 0x40, t},
1438 {"surgery", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.surgery", e, e, 0x40, t},
1439 {"suzuki", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.suzuki", e, "https://newgtlds.icann.org/", 0x42, t},
1440 {"sv", r, z[4372:4377], s{"a.lactld.org", "auth02.ns.uu.net", "cir.red.sv", "dns-ext.nic.cr", "ns.dns.br", "ns.uu.net", "sir.red.sv", "sv.cctld.authdns.ripe.net"}, n, n, e, "http://www.svnet.org.sv/", e, 0xa0, f},
1441 {"svr", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1442 {"swatch", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.swatch", e, "https://newgtlds.icann.org/", 0x42, t},
1443 {"swiftcover", r, x, s{"ns1.dns.nic.swiftcover", "ns2.dns.nic.swiftcover", "ns3.dns.nic.swiftcover", "ns4.dns.nic.swiftcover", "ns5.dns.nic.swiftcover", "ns6.dns.nic.swiftcover"}, n, n, "whois.nic.swiftcover", e, "https://newgtlds.icann.org/", 0x42, f},
1444 {"swiss", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net", "g.nic.swiss", "ns15.rcode0.net", "u.nic.swiss"}, n, n, "whois.nic.swiss", e, "https://newgtlds.icann.org/", 0x50, t},
1445 {"sx", r, x, s{"ns1.ns.sx", "ns2.ns.sx"}, n, n, "whois.sx", e, "http://en.wikipedia.org/wiki/.sx", 0xa0, f},
1446 {"sy", r, z[4377:4383], s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, "whois.tld.sy", e, "http://www.ste.gov.sy/", 0xa0, f},
1447 {"sydney", r, x, s{"a.nic.sydney", "b.nic.sydney", "c.nic.sydney", "d.nic.sydney"}, n, s{"Sydney"}, "whois.nic.sydney", e, "http://nic.sydney/", 0xc4, f},
1448 {"symantec", r, x, n, n, n, "whois.nic.symantec", e, "https://newgtlds.icann.org/", 0x42, t},
1449 {"systems", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.systems", e, e, 0x40, t},
1450 {"sz", r, z[4383:4386], s{"ns1.sispa.org.sz", "rip.psg.com", "sz.cctld.authdns.ripe.net"}, n, n, e, e, e, 0xa0, f},
1451 {"tab", r, x, s{"a.nic.tab", "b.nic.tab", "c.nic.tab", "d.nic.tab"}, n, n, "whois.nic.tab", e, "https://newgtlds.icann.org/", 0x42, f},
1452 {"taipei", r, x, s{"ns1.dns.nic.taipei", "ns2.dns.nic.taipei", "ns3.dns.nic.taipei", "ns4.dns.nic.taipei", "ns5.dns.nic.taipei", "ns6.dns.nic.taipei"}, n, s{"Taipei", "TW-TPQ"}, "whois.nic.taipei", e, "https://newgtlds.icann.org/", 0xc4, f},
1453 {"talk", r, x, s{"dns1.nic.talk", "dns2.nic.talk", "dns3.nic.talk", "dns4.nic.talk", "dnsa.nic.talk", "dnsb.nic.talk", "dnsc.nic.talk", "dnsd.nic.talk"}, n, n, "whois.nic.talk", e, "https://newgtlds.icann.org/", 0x40, t},
1454 {"taobao", r, x, s{"ns1.dns.nic.taobao", "ns2.dns.nic.taobao", "ns3.dns.nic.taobao", "ns4.dns.nic.taobao", "ns5.dns.nic.taobao", "ns6.dns.nic.taobao"}, n, n, "whois.nic.taobao", e, "https://newgtlds.icann.org/", 0x42, f},
1455 {"target", r, x, s{"ns1.dns.nic.target", "ns2.dns.nic.target", "ns3.dns.nic.target", "ns4.dns.nic.target", "ns5.dns.nic.target", "ns6.dns.nic.target"}, n, n, "whois.nic.target", e, "https://newgtlds.icann.org/", 0x42, f},
1456 {"tata", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1457 {"tatamotors", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.tatamotors", e, "https://newgtlds.icann.org/", 0x42, f},
1458 {"tatar", r, x, s{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, s{"RU-TA"}, "whois.nic.tatar", e, "https://newgtlds.icann.org/", 0x440, f},
1459 {"tattoo", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.tattoo/", 0x40, t},
1460 {"tax", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tax", e, e, 0x40, t},
1461 {"taxi", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.taxi", e, "https://newgtlds.icann.org/", 0x40, t},
1462 {"tc", r, z[4386:4420], s{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, "whois.nic.tc", e, e, 0xa0, f},
1463 {"tci", r, x, s{"a.ns.nic.tci", "b.ns.nic.tci", "ns.cocca.fr"}, n, n, "whois.nic.tci", e, "https://newgtlds.icann.org/", 0x42, f},
1464 {"td", r, z[4420:4424], s{"ns-td.afrinic.net", "ns.cocca.fr", "nsa.nic.td", "pch.nic.td"}, n, n, "whois.nic.td", "http://www.nic.td/", e, 0xa0, f},
1465 {"tdk", r, x, s{"ns1.dns.nic.tdk", "ns2.dns.nic.tdk", "ns3.dns.nic.tdk", "ns4.dns.nic.tdk", "ns5.dns.nic.tdk", "ns6.dns.nic.tdk"}, n, n, "whois.nic.tdk", e, "https://newgtlds.icann.org/", 0x42, f},
1466 {"team", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.team", e, "https://newgtlds.icann.org/", 0x40, t},
1467 {"tech", r, x, s{"a.nic.tech", "b.nic.tech", "e.nic.tech", "f.nic.tech"}, n, n, "whois.nic.tech", e, "https://newgtlds.icann.org/", 0x40, t},
1468 {"technology", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.technology", e, e, 0x40, t},
1469 {"tel", r, x, s{"ns1.dns.nic.tel", "ns2.dns.nic.tel", "ns3.dns.nic.tel", "ns4.dns.nic.tel", "ns5.dns.nic.tel", "ns6.dns.nic.tel", "ns7.dns.nic.tel", "ns8.dns.nic.tel"}, n, n, "whois.nic.tel", e, e, 0x1040, t},
1470 {"telecity", r, x, n, n, n, "whois.nic.telecity", e, "https://newgtlds.icann.org/", 0x42, f},
1471 {"telefonica", r, x, n, n, n, "whois-fe.telefonica.tango.knipp.de", e, "https://newgtlds.icann.org/", 0x42, f},
1472 {"temasek", r, x, s{"a0.nic.temasek", "a2.nic.temasek", "b0.nic.temasek", "c0.nic.temasek"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
1473 {"tennis", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tennis", e, "https://newgtlds.icann.org/", 0x40, t},
1474 {"terra", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1475 {"teva", r, x, s{"ns1.dns.nic.teva", "ns2.dns.nic.teva", "ns3.dns.nic.teva", "ns4.dns.nic.teva", "ns5.dns.nic.teva", "ns6.dns.nic.teva"}, n, n, "whois.nic.teva", e, "https://newgtlds.icann.org/", 0x42, f},
1476 {"tf", r, z[4424:4438], s{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.tf", e, e, 0xa0, t},
1477 {"tg", r, x, s{"ns1.admin.net", "ns1.nic.tg", "ns2.admin.net", "ns2.nic.tg", "ns3.admin.net", "ns4.admin.net", "ns5.admin.net", "tld.cafe.tg"}, n, n, "whois.nic.tg", "http://www.nic.tg/", e, 0xa0, f},
1478 {"th", r, z[4438:4445], s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, "whois.thnic.co.th", e, "http://www.thnic.co.th/", 0xa8, t},
1479 {"thai", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1480 {"thd", r, x, s{"a0.nic.thd", "a2.nic.thd", "b0.nic.thd", "c0.nic.thd"}, n, n, "whois.nic.thd", e, "https://newgtlds.icann.org/", 0x42, f},
1481 {"theater", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.theater", e, "https://newgtlds.icann.org/", 0x40, t},
1482 {"theatre", r, x, s{"a.nic.theatre", "b.nic.theatre", "c.nic.theatre", "d.nic.theatre"}, n, n, "whois.nic.theatre", e, "https://newgtlds.icann.org/", 0x40, t},
1483 {"theguardian", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1484 {"thehartford", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1485 {"tiaa", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.tiaa", e, "https://newgtlds.icann.org/", 0x42, f},
1486 {"tickets", r, x, s{"a.nic.tickets", "b.nic.tickets", "c.nic.tickets", "d.nic.tickets"}, n, n, "whois.nic.tickets", e, "https://newgtlds.icann.org/", 0x40, t},
1487 {"tienda", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tienda", e, e, 0x40, t},
1488 {"tiffany", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.tiffany", e, "https://newgtlds.icann.org/", 0x42, t},
1489 {"tiffay", r, x, n, n, n, "whois.nic.tiffany", e, e, 0x0, t},
1490 {"tiia", r, x, n, n, n, e, e, e, 0x0, t},
1491 {"tips", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tips", e, e, 0x40, t},
1492 {"tires", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tires", e, "https://newgtlds.icann.org/", 0x40, t},
1493 {"tirol", r, x, s{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, s{"AT-7"}, "whois.nic.tirol", e, "https://newgtlds.icann.org/", 0x440, t},
1494 {"tj", r, z[4445:4466], s{"ns1.nic.tj", "ns2.tojikiston.com", "phloem.uoregon.edu", "tj.cctld.authdns.ripe.net"}, n, n, e, "http://www.nic.tj/whois.html", e, 0xa0, f},
1495 {"tjmaxx", r, x, s{"ns1.dns.nic.tjmaxx", "ns2.dns.nic.tjmaxx", "ns3.dns.nic.tjmaxx", "ns4.dns.nic.tjmaxx", "ns5.dns.nic.tjmaxx", "ns6.dns.nic.tjmaxx"}, n, n, "whois.nic.tjmaxx", e, "https://newgtlds.icann.org/", 0x42, f},
1496 {"tjx", r, x, s{"ns1.dns.nic.tjx", "ns2.dns.nic.tjx", "ns3.dns.nic.tjx", "ns4.dns.nic.tjx", "ns5.dns.nic.tjx", "ns6.dns.nic.tjx"}, n, n, "whois.nic.tjx", e, "https://newgtlds.icann.org/", 0x42, f},
1497 {"tk", r, x, s{"a.ns.tk", "b.ns.tk", "c.ns.tk", "d.ns.tk"}, n, n, "whois.dot.tk", e, e, 0xa0, t},
1498 {"tkmaxx", r, x, s{"ns1.dns.nic.tkmaxx", "ns2.dns.nic.tkmaxx", "ns3.dns.nic.tkmaxx", "ns4.dns.nic.tkmaxx", "ns5.dns.nic.tkmaxx", "ns6.dns.nic.tkmaxx"}, n, n, "whois.nic.tkmaxx", e, "https://newgtlds.icann.org/", 0x42, f},
1499 {"tl", r, z[4466:4473], s{"ns.anycast.nic.tl", "ns.cocca.fr"}, n, n, "whois.nic.tl", e, e, 0xa0, f},
1500 {"tm", r, z[4473:4481], s{"ns-a1.tm", "ns-a2.tm", "ns-a3.tm", "ns-a4.tm", "ns-d1.tm", "ns-l1.tm", "ns-y1.tm"}, n, n, "whois.nic.tm", e, "http://nic.tm/", 0xa0, t},
1501 {"tmall", r, x, s{"ns1.dns.nic.tmall", "ns2.dns.nic.tmall", "ns3.dns.nic.tmall", "ns4.dns.nic.tmall", "ns5.dns.nic.tmall", "ns6.dns.nic.tmall"}, n, n, "whois.nic.tmall", e, "https://newgtlds.icann.org/", 0x42, f},
1502 {"tn", r, z[4481:4500], s{"ns-tn.afrinic.net", "ns1.ati.tn", "ns2.ati.tn", "ns2.nic.fr", "pch.ati.tn", "rip.psg.com"}, n, n, "whois.ati.tn", e, e, 0xa0, f},
1503 {"to", r, x, s{"colo.tonic.to", "frankfurt.tonic.to", "helsinki.tonic.to", "newyork.tonic.to", "singapore.tonic.to", "sydney.tonic.to", "tonic.to"}, n, n, "whois.tonic.to", e, "http://www.tonic.to/", 0xa0, t},
1504 {"today", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.today", e, e, 0x40, t},
1505 {"tokyo", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, s{"Tokyo", "JP-13"}, "whois.nic.tokyo", e, e, 0xc4, t},
1506 {"tools", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tools", e, e, 0x40, t},
1507 {"top", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.top", e, "http://www.nic.top/", 0x40, t},
1508 {"toray", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.toray", e, "https://newgtlds.icann.org/", 0x42, f},
1509 {"toshiba", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.toshiba", e, "https://newgtlds.icann.org/", 0x42, t},
1510 {"total", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.total", e, "https://newgtlds.icann.org/", 0x42, f},
1511 {"tour", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1512 {"tours", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.tours", e, "https://newgtlds.icann.org/", 0x40, t},
1513 {"town", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.town", e, e, 0x40, t},
1514 {"toyota", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.toyota", e, "https://newgtlds.icann.org/", 0x42, f},
1515 {"toys", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.toys", e, e, 0x40, t},
1516 {"tp", r, z[4500:4503], n, n, n, e, e, e, 0x8a0, f},
1517 {"tr", r, z[4503:4524], s{"ns21.nic.tr", "ns22.nic.tr", "ns31.nic.tr", "ns41.nic.tr", "ns42.nic.tr", "ns61.nic.tr"}, n, n, "whois.nic.tr", e, "https://www.nic.tr/", 0xa8, t},
1518 {"trade", r, x, s{"ns1.dns.nic.trade", "ns2.dns.nic.trade", "ns3.dns.nic.trade", "ns4.dns.nic.trade", "ns5.dns.nic.trade", "ns6.dns.nic.trade"}, n, n, "whois.nic.trade", e, "https://www.famousfourmedia.com/", 0x40, t},
1519 {"tradershotels", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1520 {"trading", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.trading", e, "https://bostonivy.co/", 0x40, f},
1521 {"training", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.training", e, e, 0x40, t},
1522 {"transformers", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1523 {"translations", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1524 {"transunion", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1525 {"travel", r, x, s{"a.gtld.travel", "b.gtld.travel", "c.gtld.travel", "d.gtld.travel", "e.gtld.travel", "f.gtld.travel"}, n, n, "whois.nic.travel", e, "http://www.travel.travel/", 0x1040, f},
1526 {"travelchannel", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.travelchannel", e, "https://newgtlds.icann.org/", 0x42, f},
1527 {"travelers", r, x, s{"a0.nic.travelers", "a2.nic.travelers", "b0.nic.travelers", "c0.nic.travelers"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1528 {"travelersinsurance", r, x, s{"a0.nic.travelersinsurance", "a2.nic.travelersinsurance", "b0.nic.travelersinsurance", "c0.nic.travelersinsurance"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1529 {"travelguard", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1530 {"trust", r, x, s{"a.nic.trust", "b.nic.trust", "c.nic.trust", "d.nic.trust"}, n, n, "whois.nic.trust", e, "https://newgtlds.icann.org/", 0x40, f},
1531 {"trv", r, x, s{"a0.nic.trv", "a2.nic.trv", "b0.nic.trv", "c0.nic.trv"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1532 {"tt", r, z[4524:4556], s{"a.lactld.org", "ns3.nic.mx", "pch.nic.tt", "ripe.nic.tt"}, n, n, e, "http://www.nic.tt/cgi-bin/search.pl", e, 0xa0, f},
1533 {"tube", r, x, s{"ns1.dns.nic.tube", "ns2.dns.nic.tube", "ns3.dns.nic.tube", "ns4.dns.nic.tube", "ns5.dns.nic.tube", "ns6.dns.nic.tube"}, n, n, "whois.nic.tube", e, "https://newgtlds.icann.org/", 0x40, f},
1534 {"tui", r, x, s{"a.nic.tui", "b.nic.tui", "c.nic.tui", "d.nic.tui"}, n, n, "whois.nic.tui", e, "https://newgtlds.icann.org/", 0x42, f},
1535 {"tunes", r, x, s{"dns1.nic.tunes", "dns2.nic.tunes", "dns3.nic.tunes", "dns4.nic.tunes", "dnsa.nic.tunes", "dnsb.nic.tunes", "dnsc.nic.tunes", "dnsd.nic.tunes"}, n, n, "whois.nic.tunes", e, "https://newgtlds.icann.org/", 0x48, t},
1536 {"tushu", r, x, s{"dns1.nic.tushu", "dns2.nic.tushu", "dns3.nic.tushu", "dns4.nic.tushu", "dnsa.nic.tushu", "dnsb.nic.tushu", "dnsc.nic.tushu", "dnsd.nic.tushu"}, n, n, "whois.nic.tushu", e, "https://newgtlds.icann.org/", 0x42, t},
1537 {"tv", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "tvwhois.verisign-grs.com", e, e, 0xe0, t},
1538 {"tvs", r, x, s{"a0.nic.tvs", "a2.nic.tvs", "b0.nic.tvs", "c0.nic.tvs"}, n, n, "whois.nic.tvs", e, "https://newgtlds.icann.org/", 0x42, f},
1539 {"tw", r, z[4556:4569], s{"a.dns.tw", "anytld.apnic.net", "b.dns.tw", "c.dns.tw", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw", "ns.twnic.net"}, n, n, "whois.twnic.net.tw", e, e, 0xa0, t},
1540 {"tz", r, z[4569:4581], s{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns-tz.afrinic.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, "whois.tznic.or.tz", e, e, 0xa8, f},
1541 {"ua", r, z[4581:4647], s{"cd1.ns.ua", "ho1.ns.ua", "in1.ns.ua", "pch.ns.ua"}, n, n, "whois.ua", e, "http://www.nic.net.ua/", 0xa0, t},
1542 {"ubank", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.ubank", e, "https://newgtlds.icann.org/", 0x42, f},
1543 {"ubs", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.ubs", e, "https://newgtlds.icann.org/", 0x42, f},
1544 {"uconnect", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1545 {"ug", r, z[4647:4656], s{"anycast.eahd.or.ug", "ns-ug.afrinic.net", "ns.icann.org", "root.eahd.or.ug", "ug.cctld.authdns.ripe.net"}, n, n, "whois.co.ug", e, e, 0xa0, f},
1546 {"uk", r, z[4656:4666], s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, "whois.nic.uk", e, "https://www.nominet.uk/", 0xa0, f},
1547 {"ultrabook", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1548 {"um", r, x, n, n, n, e, e, e, 0x8a0, f},
1549 {"ummah", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
1550 {"unicom", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.unicom", e, "https://newgtlds.icann.org/", 0x42, f},
1551 {"unicorn", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1552 {"university", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.university", e, e, 0x40, t},
1553 {"uno", r, x, s{"a.nic.uno", "b.nic.uno", "c.nic.uno", "d.nic.uno"}, n, n, "whois.nic.uno", e, e, 0x40, f},
1554 {"uol", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x42, t},
1555 {"ups", r, x, s{"a0.nic.ups", "a2.nic.ups", "b0.nic.ups", "c0.nic.ups"}, n, n, "whois.nic.ups", e, "https://newgtlds.icann.org/", 0x42, f},
1556 {"us", r, z[4666:4726], s{"a.cctld.us", "b.cctld.us", "c.cctld.us", "e.cctld.us", "f.cctld.us", "k.cctld.us"}, n, n, "whois.nic.us", e, e, 0xa0, f},
1557 {"uy", r, z[4726:4732], s{"a.lactld.org", "a.nic.uy", "b.nic.uy", "d.nic.uy", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx"}, n, n, "whois.nic.org.uy", e, e, 0xa0, f},
1558 {"uz", r, z[4732:4746], s{"ns.uz", "ns2.uz", "ns3.uz", "ns4.uz", "ns5.uz", "ns6.uz", "ns7.uz"}, n, n, "whois.cctld.uz", e, e, 0xa0, f},
1559 {"va", r, x, s{"dns.nic.it", "john.vatican.va", "michael.vatican.va", "osiris.namex.it", "seth.namex.it", "va.cctld.authdns.ripe.net"}, n, n, "whois.iana.org", e, e, 0xa0, f},
1560 {"vacations", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.vacations", e, e, 0x40, t},
1561 {"vana", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.vana", e, "https://newgtlds.icann.org/", 0x42, f},
1562 {"vanguard", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.vanguard", e, "https://newgtlds.icann.org/", 0x42, f},
1563 {"vanish", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1564 {"vc", r, z[4746:4749], s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, "whois2.afilias-grs.net", e, e, 0xe0, f},
1565 {"ve", r, z[4749:4760], s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, "whois.nic.ve", e, e, 0xa8, t},
1566 {"vegas", r, x, s{"a0.nic.vegas", "a2.nic.vegas", "b0.nic.vegas", "c0.nic.vegas"}, n, s{"Las Vegas"}, "whois.afilias-srs.net", e, "http://www.nic.vegas/", 0xc4, f},
1567 {"ventures", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.ventures", e, e, 0x40, t},
1568 {"verisign", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.verisign", e, "https://newgtlds.icann.org/", 0x42, t},
1569 {"xn--vermgensberater-ctb" /* vermögensberater */, r, x, s{"a.nic.xn--vermgensberater-ctb", "b.nic.xn--vermgensberater-ctb", "c.nic.xn--vermgensberater-ctb", "d.nic.xn--vermgensberater-ctb"}, n, n, "whois.nic.xn--vermgensberater-ctb", e, "https://newgtlds.icann.org/", 0x48, f},
1570 {"xn--vermgensberatung-pwb" /* vermögensberatung */, r, x, s{"a.nic.xn--vermgensberatung-pwb", "b.nic.xn--vermgensberatung-pwb", "c.nic.xn--vermgensberatung-pwb", "d.nic.xn--vermgensberatung-pwb"}, n, n, "whois.nic.xn--vermgensberatung-pwb", e, "https://newgtlds.icann.org/", 0x48, f},
1571 {"versicherung", r, x, s{"a.dns.nic.versicherung", "m.dns.nic.versicherung", "n.dns.nic.versicherung"}, n, n, "whois.nic.versicherung", e, e, 0x40, t},
1572 {"vet", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.vet", e, e, 0x40, t},
1573 {"vg", r, z[4760:4761], s{"a.nic.vg", "b.nic.vg", "c.nic.vg", "d.nic.vg"}, s{"88.198.29.97"}, n, "whois.nic.vg", e, e, 0xa0, f},
1574 {"vi", r, z[4761:4767], s{"auth100.ns.uu.net", "auth110.ns.uu.net", "ns3.nic.vi", "pch.nic.vi"}, n, n, e, "https://secure.nic.vi/whois-lookup/", "http://www.nic.vi/", 0xa8, f},
1575 {"viajes", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.viajes", e, e, 0x40, t},
1576 {"video", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.video", e, "https://newgtlds.icann.org/", 0x40, t},
1577 {"vig", r, x, s{"a0.nic.vig", "a2.nic.vig", "b0.nic.vig", "c0.nic.vig"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1578 {"viking", r, x, s{"a0.nic.viking", "a2.nic.viking", "b0.nic.viking", "c0.nic.viking"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1579 {"villas", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.villas", e, e, 0x40, t},
1580 {"vin", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.vin", e, "https://newgtlds.icann.org/", 0x40, t},
1581 {"vip", r, x, s{"dns1.nic.vip", "dns2.nic.vip", "dns3.nic.vip", "dns4.nic.vip", "dnsa.nic.vip", "dnsb.nic.vip", "dnsc.nic.vip", "dnsd.nic.vip"}, n, n, "whois.nic.vip", e, "http://nic.vip/", 0x40, t},
1582 {"virgin", r, x, s{"dns1.nic.virgin", "dns2.nic.virgin", "dns3.nic.virgin", "dns4.nic.virgin", "dnsa.nic.virgin", "dnsb.nic.virgin", "dnsc.nic.virgin", "dnsd.nic.virgin"}, n, n, "whois.nic.virgin", e, "https://newgtlds.icann.org/", 0x42, f},
1583 {"visa", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.visa", e, "https://newgtlds.icann.org/", 0x42, t},
1584 {"vision", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.vision", e, e, 0x40, t},
1585 {"vista", r, x, n, n, n, "whois.nic.vista", e, "https://newgtlds.icann.org/", 0x42, f},
1586 {"vistaprint", r, x, n, n, n, "whois.nic.vistaprint", e, "https://newgtlds.icann.org/", 0x42, f},
1587 {"viva", r, x, s{"a.nic.viva", "b.nic.viva", "c.nic.viva", "d.nic.viva"}, n, n, "whois.nic.viva", e, "https://newgtlds.icann.org/", 0x42, f},
1588 {"vivo", r, x, s{"ns1.dns.nic.vivo", "ns2.dns.nic.vivo", "ns3.dns.nic.vivo", "ns4.dns.nic.vivo", "ns5.dns.nic.vivo", "ns6.dns.nic.vivo"}, n, n, "whois.nic.vivo", e, "https://newgtlds.icann.org/", 0x42, f},
1589 {"vlaanderen", r, x, s{"a.nic.vlaanderen", "b.nic.vlaanderen", "c.ns.dns.be", "d.ns.dns.be", "y.ns.dns.be", "z.nsset.vlaanderen"}, n, s{"BE-VLG"}, "whois.nic.vlaanderen", e, "https://newgtlds.icann.org/", 0x440, t},
1590 {"vn", r, z[4767:4779], s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, "http://www.vnnic.vn/en/domain", e, 0xa0, t},
1591 {"vodka", r, x, s{"dns1.nic.vodka", "dns2.nic.vodka", "dns3.nic.vodka", "dns4.nic.vodka", "dnsa.nic.vodka", "dnsb.nic.vodka", "dnsc.nic.vodka", "dnsd.nic.vodka"}, n, n, "whois.nic.vodka", e, "http://nic.vodka/", 0x40, t},
1592 {"volkswagen", r, x, s{"a0.nic.volkswagen", "a2.nic.volkswagen", "b0.nic.volkswagen", "c0.nic.volkswagen"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
1593 {"volvo", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.volvo", e, "https://newgtlds.icann.org/", 0x42, f},
1594 {"vons", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1595 {"vote", r, x, s{"a0.nic.vote", "a2.nic.vote", "b0.nic.vote", "c0.nic.vote"}, n, n, "whois.afilias.net", e, "http://nic.vote/", 0x40, f},
1596 {"voting", r, x, s{"a.nic.voting", "b.nic.voting", "c.nic.voting", "d.nic.voting"}, n, n, "whois.nic.voting", e, e, 0x40, t},
1597 {"voto", r, x, s{"a0.nic.voto", "a2.nic.voto", "b0.nic.voto", "c0.nic.voto"}, n, n, "whois.afilias.net", e, "http://nic.voto/", 0x40, f},
1598 {"voyage", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.voyage", e, e, 0x40, t},
1599 {"vu", r, z[4779:4784], s{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, "whois.dnrs.neustar", e, e, 0xa0, f},
1600 {"vuelos", r, x, s{"ns1.dns.nic.vuelos", "ns2.dns.nic.vuelos", "ns3.dns.nic.vuelos", "ns4.dns.nic.vuelos", "ns5.dns.nic.vuelos", "ns6.dns.nic.vuelos"}, n, n, "whois.nic.vuelos", e, "https://newgtlds.icann.org/", 0x40, f},
1601 {"wales", r, x, s{"dns1.nic.wales", "dns2.nic.wales", "dns3.nic.wales", "dns4.nic.wales", "dnsa.nic.wales", "dnsb.nic.wales", "dnsc.nic.wales", "dnsd.nic.wales"}, n, s{"GB-WLS"}, "whois.nic.wales", e, "http://nic.wales/", 0x4c0, t},
1602 {"walmart", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.walmart", e, "https://newgtlds.icann.org/", 0x42, f},
1603 {"walter", r, x, s{"a.nic.walter", "b.nic.walter", "c.nic.walter", "d.nic.walter"}, n, n, "whois.nic.walter", e, "https://newgtlds.icann.org/", 0x42, f},
1604 {"wang", r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, e, 0x40, t},
1605 {"wanggou", r, x, s{"dns1.nic.wanggou", "dns2.nic.wanggou", "dns3.nic.wanggou", "dns4.nic.wanggou", "dnsa.nic.wanggou", "dnsb.nic.wanggou", "dnsc.nic.wanggou", "dnsd.nic.wanggou"}, n, n, "whois.nic.wanggou", e, "https://newgtlds.icann.org/", 0x48, t},
1606 {"warman", r, x, n, n, n, "whois.nic.warman", e, "https://newgtlds.icann.org/", 0x42, f},
1607 {"watch", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.watch", e, e, 0x40, t},
1608 {"watches", r, x, s{"ns1.dns.nic.watches", "ns2.dns.nic.watches", "ns3.dns.nic.watches", "ns4.dns.nic.watches", "ns5.dns.nic.watches", "ns6.dns.nic.watches"}, n, n, "whois.nic.watches", e, "https://newgtlds.icann.org/", 0x40, f},
1609 {"weather", r, x, s{"ns1.dns.nic.weather", "ns2.dns.nic.weather", "ns3.dns.nic.weather", "ns4.dns.nic.weather", "ns5.dns.nic.weather", "ns6.dns.nic.weather"}, n, n, "whois.nic.weather", e, "https://newgtlds.icann.org/", 0x40, f},
1610 {"weatherchannel", r, x, s{"ns1.dns.nic.weatherchannel", "ns2.dns.nic.weatherchannel", "ns3.dns.nic.weatherchannel", "ns4.dns.nic.weatherchannel", "ns5.dns.nic.weatherchannel", "ns6.dns.nic.weatherchannel"}, n, n, "whois.nic.weatherchannel", e, "https://newgtlds.icann.org/", 0x42, f},
1611 {"web", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1612 {"webcam", r, x, s{"ns1.dns.nic.webcam", "ns2.dns.nic.webcam", "ns3.dns.nic.webcam", "ns4.dns.nic.webcam", "ns5.dns.nic.webcam", "ns6.dns.nic.webcam"}, n, n, "whois.nic.webcam", e, "https://www.famousfourmedia.com/", 0x40, t},
1613 {"weber", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.weber", e, "https://newgtlds.icann.org/", 0x42, t},
1614 {"webjet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1615 {"webs", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1616 {"website", r, x, s{"a.nic.website", "b.nic.website", "e.nic.website", "f.nic.website"}, n, n, "whois.nic.website", e, e, 0x40, t},
1617 {"wed", r, x, s{"dns1.emdns.uk", "dns2.emdns.uk", "dns3.emdns.uk", "dns4.emdns.uk", "dnsa.emdns.uk", "dnsb.emdns.uk", "dnsc.emdns.uk", "dnsd.emdns.uk"}, n, n, "whois.nic.wed", e, "https://newgtlds.icann.org/", 0x40, f},
1618 {"wedding", r, x, s{"dns1.nic.wedding", "dns2.nic.wedding", "dns3.nic.wedding", "dns4.nic.wedding", "dnsa.nic.wedding", "dnsb.nic.wedding", "dnsc.nic.wedding", "dnsd.nic.wedding"}, n, n, "whois.nic.wedding", e, "http://nic.wedding/", 0x40, t},
1619 {"weibo", r, x, s{"a0.nic.weibo", "a2.nic.weibo", "b0.nic.weibo", "c0.nic.weibo"}, n, n, "whois.nic.weibo", e, "https://newgtlds.icann.org/", 0x40, f},
1620 {"weir", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1621 {"wf", r, x, s{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.wf", e, e, 0xa0, t},
1622 {"whoswho", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.whoswho", e, "https://newgtlds.icann.org/", 0x40, t},
1623 {"wien", r, x, s{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, s{"Vienna", "AT-9"}, "whois.nic.wien", e, e, 0xc4, t},
1624 {"wiki", r, x, s{"a.nic.wiki", "b.nic.wiki", "c.nic.wiki", "d.nic.wiki"}, n, n, "whois.nic.wiki", e, e, 0x40, t},
1625 {"williamhill", r, x, s{"ns1.dns.nic.williamhill", "ns2.dns.nic.williamhill", "ns3.dns.nic.williamhill", "ns4.dns.nic.williamhill", "ns5.dns.nic.williamhill", "ns6.dns.nic.williamhill"}, n, n, "whois.nic.williamhill", e, "https://newgtlds.icann.org/", 0x42, f},
1626 {"wilmar", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
1627 {"win", r, x, s{"ns1.dns.nic.win", "ns2.dns.nic.win", "ns3.dns.nic.win", "ns4.dns.nic.win", "ns5.dns.nic.win", "ns6.dns.nic.win"}, n, n, "whois.nic.win", e, "https://www.famousfourmedia.com/", 0x40, t},
1628 {"windows", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
1629 {"wine", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.wine", e, "https://newgtlds.icann.org/", 0x40, t},
1630 {"winners", r, x, s{"ns1.dns.nic.winners", "ns2.dns.nic.winners", "ns3.dns.nic.winners", "ns4.dns.nic.winners", "ns5.dns.nic.winners", "ns6.dns.nic.winners"}, n, n, "whois.nic.winners", e, "https://newgtlds.icann.org/", 0x40, f},
1631 {"wme", r, x, s{"a.nic.wme", "b.nic.wme", "c.nic.wme", "d.nic.wme"}, n, n, "whois.nic.wme", e, "https://newgtlds.icann.org/", 0x42, t},
1632 {"wolterskluwer", r, x, s{"a0.nic.wolterskluwer", "a2.nic.wolterskluwer", "b0.nic.wolterskluwer", "c0.nic.wolterskluwer"}, n, n, "whois.nic.wolterskluwer", e, "https://newgtlds.icann.org/", 0x42, f},
1633 {"woodside", r, x, s{"a.nic.woodside", "b.nic.woodside", "c.nic.woodside", "d.nic.woodside"}, n, n, "whois.nic.woodside", e, "https://newgtlds.icann.org/", 0x42, f},
1634 {"work", r, x, s{"dns1.nic.work", "dns2.nic.work", "dns3.nic.work", "dns4.nic.work", "dnsa.nic.work", "dnsb.nic.work", "dnsc.nic.work", "dnsd.nic.work"}, n, n, "whois.nic.work", e, "http://nic.work/", 0x40, t},
1635 {"works", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.works", e, e, 0x40, t},
1636 {"world", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.world", e, "https://newgtlds.icann.org/", 0x40, t},
1637 {"wow", r, x, s{"dns1.nic.wow", "dns2.nic.wow", "dns3.nic.wow", "dns4.nic.wow", "dnsa.nic.wow", "dnsb.nic.wow", "dnsc.nic.wow", "dnsd.nic.wow"}, n, n, "whois.nic.wow", e, "https://newgtlds.icann.org/", 0x40, t},
1638 {"ws", r, z[4784:4789], s{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, s{"64.70.19.203"}, n, "whois.website.ws", e, "http://nic.ws/", 0xe0, t},
1639 {"wtc", r, x, s{"a.nic.wtc", "b.nic.wtc", "c.nic.wtc", "d.nic.wtc"}, n, n, "whois.nic.wtc", e, "https://newgtlds.icann.org/", 0x42, f},
1640 {"wtf", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.wtf", e, e, 0x40, t},
1641 {"xbox", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
1642 {"xerox", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xerox", e, "https://newgtlds.icann.org/", 0x42, f},
1643 {"xfinity", r, x, s{"dns1.nic.xfinity", "dns2.nic.xfinity", "dns3.nic.xfinity", "dns4.nic.xfinity", "dnsa.nic.xfinity", "dnsb.nic.xfinity", "dnsc.nic.xfinity", "dnsd.nic.xfinity"}, n, n, "whois.nic.xfinity", e, "https://newgtlds.icann.org/", 0x42, f},
1644 {"xihuan", r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, "https://newgtlds.icann.org/", 0x40, f},
1645 {"xin", r, x, s{"a0.nic.xin", "a2.nic.xin", "b0.nic.xin", "c0.nic.xin"}, n, n, "whois.nic.xin", e, "https://newgtlds.icann.org/", 0x40, f},
1646 {"xperia", r, x, n, n, n, "whois.nic.xperia", e, "https://newgtlds.icann.org/", 0x42, f},
1647 {"xxx", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, "whois.registrar.adult", e, "http://nic.xxx/", 0x41, t},
1648 {"xyz", r, x, s{"generationxyz.nic.xyz", "x.nic.xyz", "y.nic.xyz", "z.nic.xyz"}, n, n, "whois.nic.xyz", e, e, 0x40, t},
1649 {"yachts", r, x, s{"a0.nic.yachts", "a2.nic.yachts", "b0.nic.yachts", "c0.nic.yachts"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, f},
1650 {"yahoo", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.yahoo", e, "https://newgtlds.icann.org/", 0x42, t},
1651 {"yamaxun", r, x, s{"dns1.nic.yamaxun", "dns2.nic.yamaxun", "dns3.nic.yamaxun", "dns4.nic.yamaxun", "dnsa.nic.yamaxun", "dnsb.nic.yamaxun", "dnsc.nic.yamaxun", "dnsd.nic.yamaxun"}, n, n, "whois.nic.yamaxun", e, "https://newgtlds.icann.org/", 0x42, t},
1652 {"yandex", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.nic.yandex", e, "https://newgtlds.icann.org/", 0x42, f},
1653 {"ye", r, z[4789:4797], s{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "sah1.ye", "sah2.ye"}, n, n, e, e, e, 0xa8, f},
1654 {"yellowpages", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x48, f},
1655 {"yodobashi", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
1656 {"yoga", r, x, s{"dns1.nic.yoga", "dns2.nic.yoga", "dns3.nic.yoga", "dns4.nic.yoga", "dnsa.nic.yoga", "dnsb.nic.yoga", "dnsc.nic.yoga", "dnsd.nic.yoga"}, n, n, "whois.nic.yoga", e, "http://nic.yoga/", 0x40, t},
1657 {"yokohama", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, s{"Yokohama"}, "whois.nic.yokohama", e, e, 0xc4, t},
1658 {"you", r, x, s{"dns1.nic.you", "dns2.nic.you", "dns3.nic.you", "dns4.nic.you", "dnsa.nic.you", "dnsb.nic.you", "dnsc.nic.you", "dnsd.nic.you"}, n, n, "whois.nic.you", e, "https://newgtlds.icann.org/", 0x40, t},
1659 {"youtube", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
1660 {"yt", r, x, s{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.yt", e, e, 0xa0, t},
1661 {"yu", r, z[4797:4803], n, n, n, e, e, e, 0x8a0, f},
1662 {"yun", r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, "https://newgtlds.icann.org/", 0x40, f},
1663 {"za", r, z[4803:4830], s{"nsza.is.co.za", "za-ns.anycast.pch.net", "za1.dnsnode.net"}, n, n, "whois.nic.za", e, e, 0xa8, f},
1664 {"zappos", r, x, s{"dns1.nic.zappos", "dns2.nic.zappos", "dns3.nic.zappos", "dns4.nic.zappos", "dnsa.nic.zappos", "dnsb.nic.zappos", "dnsc.nic.zappos", "dnsd.nic.zappos"}, n, n, "whois.nic.zappos", e, "https://newgtlds.icann.org/", 0x42, t},
1665 {"zara", r, x, s{"a0.nic.zara", "a2.nic.zara", "b0.nic.zara", "c0.nic.zara"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1666 {"zero", r, x, s{"ns1.dns.nic.zero", "ns2.dns.nic.zero", "ns3.dns.nic.zero", "ns4.dns.nic.zero", "ns5.dns.nic.zero", "ns6.dns.nic.zero"}, n, n, "whois.nic.zero", e, "https://newgtlds.icann.org/", 0x40, t},
1667 {"zip", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1668 {"zippo", r, x, n, n, n, "whois.nic.zippo", e, "https://newgtlds.icann.org/", 0x42, f},
1669 {"zm", r, z[4830:4838], s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, "whois.zicta.zm", e, e, 0xa0, f},
1670 {"zone", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.zone", e, e, 0x40, t},
1671 {"zuerich", r, x, s{"a.nic.zuerich", "b.nic.zuerich", "c.nic.zuerich", "d.nic.zuerich"}, n, s{"Zurich", "CH-ZH"}, "whois.nic.zuerich", e, "https://newgtlds.icann.org/", 0xc4, f},
1672 {"zulu", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
1673 {"zw", r, z[4838:4842], s{"ns1.liquidtelecom.net", "ns1.telone.co.zw", "ns1zim.telone.co.zw", "ns2.liquidtelecom.net", "ns2.telone.co.zw", "ns2zim.telone.co.zw", "zw-ns.anycast.pch.net"}, n, n, e, "http://www.zispa.org.zw", e, 0xa0, f},
1674 {"xn--jxalpdlp" /* δοκιμή */, r, x, n, n, n, e, e, e, 0x40, t},
1675 {"xn--qxam" /* ελ */, r, x, s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, "https://grweb.ics.forth.gr/public/whois.jsp?lang=en", e, 0x0, t},
1676 {"xn--qxa6a" /* ευ */, r, x, s{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, "whois.eu", e, e, 0x0, t},
1677 {"xn--90ae" /* бг */, r, x, s{"a.nic.bg", "b.nic.bg", "c.nic.bg", "d.nic.bg", "e.nic.bg", "p.nic.bg"}, n, n, "whois.imena.bg", e, e, 0x0, t},
1678 {"xn--90ais" /* бел */, r, x, s{"dns1.tld.tutby.com", "dns2.tld.tutby.com", "dns3.tld.tutby.com", "dns4.tld.tutby.com", "dns5.tld.tutby.com"}, n, n, "whois.cctld.by", e, e, 0x40, t},
1679 {"xn--d1acj3b" /* дети */, r, x, s{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, "whois.nic.xn--d1acj3b", e, e, 0x40, t},
1680 {"xn--e1a4c" /* ею */, r, x, s{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, "whois.eu", e, e, 0x0, t},
1681 {"xn--80akhbyknj4f" /* испытание */, r, x, n, n, n, e, e, e, 0x40, t},
1682 {"xn--80aqecdr1a" /* католик */, r, x, s{"a.nic.xn--80aqecdr1a", "b.nic.xn--80aqecdr1a", "c.nic.xn--80aqecdr1a", "d.nic.xn--80aqecdr1a"}, n, n, "whois.nic.xn--80aqecdr1a", e, "https://newgtlds.icann.org/", 0x40, t},
1683 {"xn--j1aef" /* ком */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--j1aef", e, "https://newgtlds.icann.org/", 0x40, t},
1684 {"xn--d1alf" /* мкд */, r, x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, "whois.marnet.mk", e, "https://newgtlds.icann.org/", 0x40, t},
1685 {"xn--l1acc" /* мон */, r, x, s{"ns1.idn.mn", "ns2.idn.mn", "ns3.idn.mn"}, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1686 {"xn--80adxhks" /* москва */, r, x, s{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, s{"Moscow"}, "whois.nic.xn--80adxhks", e, e, 0xc4, t},
1687 {"xn--80asehdb" /* онлайн */, r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.xn--80asehdb", e, e, 0x40, t},
1688 {"xn--c1avg" /* орг */, r, x, s{"a0.nic.xn--c1avg", "a2.nic.xn--c1avg", "b0.nic.xn--c1avg", "c0.nic.xn--c1avg"}, n, n, "whois.publicinterestregistry.net", e, "https://pir.org/products/opr-domain/", 0x40, t},
1689 {"xn--p1acf" /* рус */, r, z[4842:5042], s{"ns.cocca.fr", "ns1.nic.xn--p1acf", "ns2.nic.xn--p1acf"}, n, n, "whois.nic.xn--p1acf", e, "https://newgtlds.icann.org/", 0x40, t},
1690 {"xn--p1ai" /* рф */, r, z[5042:5045], s{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, "whois.tcinet.ru", e, "https://cctld.ru/", 0x0, t},
1691 {"xn--80aswg" /* сайт */, r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.xn--80aswg", e, e, 0x40, t},
1692 {"xn--90a3ac" /* срб */, r, z[5045:5050], s{"a.nic.rs", "b.nic.rs", "f.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, "whois.rnids.rs", e, e, 0x40, t},
1693 {"xn--j1amh" /* укр */, r, x, s{"dns1.u-registry.com", "dns2.u-registry.net", "dns3.dotukr.com", "nsi.uanic.net", "tier1.num.net.ua"}, n, n, "whois.dotukr.com", e, e, 0x40, t},
1694 {"xn--80ao21a" /* қаз */, r, x, s{"ns.nic.kz", "ns1.nic.kz"}, n, n, "whois.nic.kz", e, e, 0x40, t},
1695 {"xn--y9a3aq" /* հայ */, r, x, s{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am"}, n, n, "whois.amnic.net", e, e, 0x40, t},
1696 {"xn--deba0ad" /* טעסט */, r, x, n, n, n, e, e, e, 0x40, t},
1697 {"xn--9dbq2a" /* קום */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--9dbq2a", e, e, 0x0, t},
1698 {"xn--hgbk6aj7f53bba" /* آزمایشی */, r, x, n, n, n, e, e, e, 0x40, t},
1699 {"xn--kgbechtv" /* إختبار */, r, x, n, n, n, e, e, e, 0x40, t},
1700 {"xn--mgbca7dzdo" /* ابوظبي */, r, x, s{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, "whois.nic.xn--mgbca7dzdo", e, "https://newgtlds.icann.org/", 0x40, t},
1701 {"xn--mgbaakc7dvf" /* اتصالات */, r, x, s{"a.nic.xn--mgbaakc7dvf", "b.nic.xn--mgbaakc7dvf", "c.nic.xn--mgbaakc7dvf", "d.nic.xn--mgbaakc7dvf"}, n, n, "whois.centralnic.com", e, "https://newgtlds.icann.org/", 0x40, t},
1702 {"xn--mgba3a3ejt" /* ارامكو */, r, x, s{"ns1.dns.nic.xn--mgba3a3ejt", "ns2.dns.nic.xn--mgba3a3ejt", "ns3.dns.nic.xn--mgba3a3ejt", "ns4.dns.nic.xn--mgba3a3ejt", "ns5.dns.nic.xn--mgba3a3ejt", "ns6.dns.nic.xn--mgba3a3ejt"}, n, n, "whois.nic.xn--mgba3a3ejt", e, "https://newgtlds.icann.org/", 0x40, t},
1703 {"xn--mgbayh7gpa" /* الاردن */, r, x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, "http://idn.jo/whois_a.aspx", e, 0x40, t},
1704 {"xn--mgbcpq6gpa1a" /* البحرين */, r, x, s{"a.nic.xn--mgbcpq6gpa1a", "b.nic.xn--mgbcpq6gpa1a", "c.nic.xn--mgbcpq6gpa1a", "d.nic.xn--mgbcpq6gpa1a"}, n, n, e, e, e, 0x0, t},
1705 {"xn--lgbbat1ad8j" /* الجزائر */, r, x, s{"idn1.nic.dz", "idn2.nic.dz"}, n, n, "whois.nic.dz", e, "https://newgtlds.icann.org/", 0x40, t},
1706 {"xn--mgberp4a5d4ar" /* السعودية */, r, x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, "whois.nic.net.sa", e, e, 0x40, t},
1707 {"xn--mgba7c0bbn0a" /* العليان */, r, x, s{"a.nic.xn--mgba7c0bbn0a", "b.nic.xn--mgba7c0bbn0a", "c.nic.xn--mgba7c0bbn0a", "d.nic.xn--mgba7c0bbn0a"}, n, n, "whois.nic.xn--mgba7c0bbn0a", e, "https://newgtlds.icann.org/", 0x40, t},
1708 {"xn--mgbc0a9azcg" /* المغرب */, r, x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, "whois.iam.net.ma", e, "https://newgtlds.icann.org/", 0x40, t},
1709 {"xn--mgbaam7a8h" /* امارات */, r, x, s{"ns1.aedns.ae", "ns2.aedns.ae", "nsext-pch.aedns.ae"}, n, n, "whois.aeda.net.ae", e, e, 0x40, t},
1710 {"xn--mgba3a4f16a" /* ایران */, r, x, s{"a.nic.ir", "ns.irnic.ir"}, n, n, "whois.nic.ir", e, e, 0x40, t},
1711 {"xn--mgbbh1a" /* بارت */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1712 {"xn--mgbab2bd" /* بازار */, r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.xn--mgbab2bd", e, e, 0x40, t},
1713 {"xn--ngbe9e0a" /* بيتك */, r, x, s{"a.nic.xn--ngbe9e0a", "b.nic.xn--ngbe9e0a", "c.nic.xn--ngbe9e0a", "d.nic.xn--ngbe9e0a"}, n, n, "whois.nic.xn--ngbe9e0a", e, "https://newgtlds.icann.org/", 0x40, t},
1714 {"xn--mgbbh1a71e" /* بھارت */, r, z[5050:5051], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, "https://newgtlds.icann.org/", 0x40, t},
1715 {"xn--pgbs0dh" /* تونس */, r, x, s{"ns-tn.afrinic.net", "ns1.ati.tn", "ns2.ati.tn", "ns2.nic.fr", "pch.ati.tn", "rip.psg.com"}, n, n, "whois.ati.tn", e, e, 0x40, t},
1716 {"xn--mgbpl2fh" /* سودان */, r, x, s{"ans1.sis.sd", "pch.sis.sd"}, n, n, e, e, e, 0x40, t},
1717 {"xn--ogbpf8fl" /* سورية */, r, x, s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, "whois.tld.sy", e, e, 0x40, t},
1718 {"xn--ngbc5azd" /* شبكة */, r, x, s{"a.nic.xn--ngbc5azd", "b.nic.xn--ngbc5azd", "c.nic.xn--ngbc5azd", "d.nic.xn--ngbc5azd"}, n, n, "whois.nic.xn--ngbc5azd", e, "http://www.dotshabaka.com/", 0x40, t},
1719 {"xn--mgbtx2b" /* عراق */, r, x, s{"dyn1.cmc.iq", "dyn2.cmc.iq", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, "whois.cmc.iq", e, e, 0x0, t},
1720 {"xn--ngbrx" /* عرب */, r, x, s{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, "whois.nic.xn--ngbrx", e, "https://newgtlds.icann.org/", 0x40, t},
1721 {"xn--mgb9awbf" /* عمان */, r, x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, "whois.registry.om", e, "https://newgtlds.icann.org/", 0x40, t},
1722 {"xn--ygbi2ammx" /* فلسطين */, r, x, s{"dns1.gov.ps", "dns3.gov.ps", "idn.pnina.ps", "ns1.pnina.ps"}, n, n, "whois.pnina.ps", e, e, 0x40, t},
1723 {"xn--wgbl6a" /* قطر */, r, x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, "whois.registry.qa", e, e, 0x40, t},
1724 {"xn--mgbi4ecexp" /* كاثوليك */, r, x, s{"a.nic.xn--mgbi4ecexp", "b.nic.xn--mgbi4ecexp", "c.nic.xn--mgbi4ecexp", "d.nic.xn--mgbi4ecexp"}, n, n, "whois.nic.xn--mgbi4ecexp", e, "https://newgtlds.icann.org/", 0x40, t},
1725 {"xn--fhbei" /* كوم */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--fhbei", e, "https://newgtlds.icann.org/", 0x40, t},
1726 {"xn--pgb3ceoj" /* كيوتل */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1727 {"xn--wgbh1c" /* مصر */, r, x, s{"ns1.dotmasr.eg", "ns2.dotmasr.eg", "ns3.dotmasr.eg"}, n, n, "whois.dotmasr.eg", e, e, 0x40, t},
1728 {"xn--mgbx4cd0ab" /* مليسيا */, r, x, s{"a.mynic.centralnic-dns.com", "a.nic.my", "a1.nic.my", "b.mynic.centralnic-dns.com", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, "whois.mynic.my", e, e, 0x40, t},
1729 {"xn--mgbb9fbpob" /* موبايلي */, r, x, n, n, n, "whois.nic.xn--mgbb9fbpob", e, "https://newgtlds.icann.org/", 0x40, t},
1730 {"xn--mgbah1a3hjkrd" /* موريتانيا */, r, x, s{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, "whois.nic.mr", e, e, 0x0, t},
1731 {"xn--mgbv6cfpo" /* موزايك */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1732 {"xn--4gbrim" /* موقع */, r, x, s{"a0.nic.xn--4gbrim", "a2.nic.xn--4gbrim", "b0.nic.xn--4gbrim", "c0.nic.xn--4gbrim"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, t},
1733 {"xn--mgbt3dhd" /* همراه */, r, x, s{"a.ns.nic.xn--mgbt3dhd", "b.ns.nic.xn--mgbt3dhd", "ns.cocca.fr"}, n, s{"Iran"}, "whois.nic.xn--mgbt3dhd", e, "https://newgtlds.icann.org/", 0x40, t},
1734 {"xn--mgbai9azgqp6j" /* پاکستان */, r, x, s{"ns.ntc.net.pk", "ns1.ntc.net.pk", "ns2.ntc.net.pk"}, n, n, e, e, e, 0x0, t},
1735 {"xn--mgbgu82a" /* ڀارت */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1736 {"xn--11b4c3d" /* कॉम */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--11b4c3d", e, "https://newgtlds.icann.org/", 0x40, t},
1737 {"xn--c2br7g" /* नेट */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--c2br7g", e, "https://newgtlds.icann.org/", 0x40, t},
1738 {"xn--11b5bs3a9aj6g" /* परीक्षा */, r, x, n, n, n, e, e, e, 0x40, t},
1739 {"xn--h2brj9c" /* भारत */, r, z[5051:5052], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x40, t},
1740 {"xn--h2breg3eve" /* भारतम् */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1741 {"xn--h2brj9c8c" /* भारोत */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1742 {"xn--i1b6b1a6a2e" /* संगठन */, r, x, s{"a0.nic.xn--i1b6b1a6a2e", "a2.nic.xn--i1b6b1a6a2e", "b0.nic.xn--i1b6b1a6a2e", "c0.nic.xn--i1b6b1a6a2e"}, n, n, "whois.publicinterestregistry.net", e, "https://pir.org/products/hindi-domain/", 0x40, t},
1743 {"xn--54b7fta0cc" /* বাংলা */, r, x, s{"bayanno.btcl.net.bd", "bd-ns.anycast.pch.net", "ekushey.btcl.net.bd"}, n, n, e, e, e, 0x0, t},
1744 {"xn--45brj9c" /* ভারত */, r, z[5052:5054], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, "https://newgtlds.icann.org/", 0x40, t},
1745 {"xn--45br5cyl" /* ভাৰত */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1746 {"xn--s9brj9c" /* ਭਾਰਤ */, r, z[5054:5055], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, "https://newgtlds.icann.org/", 0x40, t},
1747 {"xn--gecrj9c" /* ભારત */, r, z[5055:5056], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, "https://newgtlds.icann.org/", 0x40, t},
1748 {"xn--3hcrj9c" /* ଭାରତ */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1749 {"xn--xkc2dl3a5ee0h" /* இந்தியா */, r, z[5056:5057], s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, "https://newgtlds.icann.org/", 0x40, t},
1750 {"xn--xkc2al3hye2a" /* இலங்கை */, r, x, s{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk", "ns3.ac.lk"}, n, n, "whois.nic.lk", e, "https://newgtlds.icann.org/", 0x40, t},
1751 {"xn--clchc0ea0b2g2a9gcd" /* சிங்கப்பூர் */, r, x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, "whois.sgnic.sg", e, e, 0x40, t},
1752 {"xn--hlcj6aya9esc7a" /* பரிட்சை */, r, x, n, n, n, e, e, e, 0x40, t},
1753 {"xn--fpcrj9c3d" /* భారత్ */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, "https://newgtlds.icann.org/", 0x40, t},
1754 {"xn--2scrj9c" /* ಭಾರತ */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1755 {"xn--rvc1e0am3e" /* ഭാരതം */, r, x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.registry.in", e, e, 0x0, t},
1756 {"xn--fzc2c9e2c" /* ලංකා */, r, x, s{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk", "ns3.ac.lk"}, n, n, "whois.nic.lk", e, e, 0x40, t},
1757 {"xn--42c2d9a" /* คอม */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--42c2d9a", e, "https://newgtlds.icann.org/", 0x40, t},
1758 {"xn--o3cw4h" /* ไทย */, r, z[5057:5058], s{"a.thains.co.th", "b.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, "whois.thnic.co.th", e, e, 0x40, t},
1759 {"xn--q7ce6a" /* ລາວ */, r, x, s{"a.xn--q7ce6a.centralnic-dns.com", "b.xn--q7ce6a.centralnic-dns.com", "c.xn--q7ce6a.centralnic-dns.com", "d.xn--q7ce6a.centralnic-dns.com"}, n, n, "whois.nic.la", e, e, 0x0, t},
1760 {"xn--node" /* გე */, r, x, s{"a.xn--node.globalanycastcloud.freenom.net", "b.xn--node.globalanycastcloud.freenom.net", "c.xn--node.globalanycastcloud.freenom.net", "d.xn--node.globalanycastcloud.freenom.net", "xn--node.ns.anycast.pch.net"}, s{"188.93.95.11"}, n, "whois.itdc.ge", e, "https://newgtlds.icann.org/", 0x0, t},
1761 {"xn--q9jyb4c" /* みんな */, r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
1762 {"xn--cckwcxetd" /* アマゾン */, r, x, s{"dns1.nic.xn--cckwcxetd", "dns2.nic.xn--cckwcxetd", "dns3.nic.xn--cckwcxetd", "dns4.nic.xn--cckwcxetd", "dnsa.nic.xn--cckwcxetd", "dnsb.nic.xn--cckwcxetd", "dnsc.nic.xn--cckwcxetd", "dnsd.nic.xn--cckwcxetd"}, n, n, "whois.nic.xn--cckwcxetd", e, "https://newgtlds.icann.org/", 0x2040, t},
1763 {"xn--gckr3f0f" /* クラウド */, r, x, s{"ns1.dns.nic.xn--gckr3f0f", "ns2.dns.nic.xn--gckr3f0f", "ns3.dns.nic.xn--gckr3f0f", "ns4.dns.nic.xn--gckr3f0f", "ns5.dns.nic.xn--gckr3f0f", "ns6.dns.nic.xn--gckr3f0f"}, n, n, "whois.nic.xn--gckr3f0f", e, "https://newgtlds.icann.org/", 0x40, t},
1764 {"xn--qcka1pmc" /* グーグル */, r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
1765 {"xn--tckwe" /* コム */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--tckwe", e, e, 0x0, t},
1766 {"xn--cck2b3b" /* ストア */, r, x, s{"ns1.dns.nic.xn--cck2b3b", "ns2.dns.nic.xn--cck2b3b", "ns3.dns.nic.xn--cck2b3b", "ns4.dns.nic.xn--cck2b3b", "ns5.dns.nic.xn--cck2b3b", "ns6.dns.nic.xn--cck2b3b"}, n, n, "whois.nic.xn--cck2b3b", e, "https://newgtlds.icann.org/", 0x40, t},
1767 {"xn--1ck2e1b" /* セール */, r, x, s{"ns1.dns.nic.xn--1ck2e1b", "ns2.dns.nic.xn--1ck2e1b", "ns3.dns.nic.xn--1ck2e1b", "ns4.dns.nic.xn--1ck2e1b", "ns5.dns.nic.xn--1ck2e1b", "ns6.dns.nic.xn--1ck2e1b"}, n, n, "whois.nic.xn--1ck2e1b", e, "https://newgtlds.icann.org/", 0x40, t},
1768 {"xn--zckzah" /* テスト */, r, x, n, n, n, e, e, e, 0x40, t},
1769 {"xn--bck1b9a5dre4c" /* ファッション */, r, x, s{"ns1.dns.nic.xn--bck1b9a5dre4c", "ns2.dns.nic.xn--bck1b9a5dre4c", "ns3.dns.nic.xn--bck1b9a5dre4c", "ns4.dns.nic.xn--bck1b9a5dre4c", "ns5.dns.nic.xn--bck1b9a5dre4c", "ns6.dns.nic.xn--bck1b9a5dre4c"}, n, n, "whois.nic.xn--bck1b9a5dre4c", e, "https://newgtlds.icann.org/", 0x40, t},
1770 {"xn--eckvdtc9d" /* ポイント */, r, x, s{"ns1.dns.nic.xn--eckvdtc9d", "ns2.dns.nic.xn--eckvdtc9d", "ns3.dns.nic.xn--eckvdtc9d", "ns4.dns.nic.xn--eckvdtc9d", "ns5.dns.nic.xn--eckvdtc9d", "ns6.dns.nic.xn--eckvdtc9d"}, n, n, "whois.nic.xn--eckvdtc9d", e, "https://newgtlds.icann.org/", 0x40, t},
1771 {"xn--4gq48lf9j" /* 一号店 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1772 {"xn--rhqv96g" /* 世界 */, r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.nic.xn--rhqv96g", e, e, 0x0, t},
1773 {"xn--fiq64b" /* 中信 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, "https://newgtlds.icann.org/", 0x42, t},
1774 {"xn--fiqs8s" /* 中国 */, r, x, s{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, s{"218.241.116.40"}, n, "cwhois.cnnic.cn", e, e, 0x0, t},
1775 {"xn--fiqz9s" /* 中國 */, r, x, s{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, s{"218.241.116.40"}, n, "cwhois.cnnic.cn", e, e, 0x80, t},
1776 {"xn--fiq228c5hs" /* 中文网 */, r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, e, 0x40, t},
1777 {"xn--jlq480n2rg" /* 亚马逊 */, r, x, s{"dns1.nic.xn--jlq480n2rg", "dns2.nic.xn--jlq480n2rg", "dns3.nic.xn--jlq480n2rg", "dns4.nic.xn--jlq480n2rg", "dnsa.nic.xn--jlq480n2rg", "dnsb.nic.xn--jlq480n2rg", "dnsc.nic.xn--jlq480n2rg", "dnsd.nic.xn--jlq480n2rg"}, n, n, "whois.nic.xn--jlq480n2rg", e, "https://newgtlds.icann.org/", 0x2040, t},
1778 {"xn--vhquv" /* 企业 */, r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.xn--vhquv", e, "https://newgtlds.icann.org/", 0x0, t},
1779 {"xn--1qqw23a" /* 佛山 */, r, x, s{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, s{"Foshan"}, "whois.ngtld.cn", e, "https://newgtlds.icann.org/", 0xc4, t},
1780 {"xn--vuq861b" /* 信息 */, r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1781 {"xn--nyqy26a" /* 健康 */, r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.nic.xn--nyqy26a", e, "https://newgtlds.icann.org/", 0x0, t},
1782 {"xn--45q11c" /* 八卦 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.xn--45q11c", e, "https://newgtlds.icann.org/", 0x0, t},
1783 {"xn--55qx5d" /* 公司 */, r, x, s{"a.ngtld.cn", "b.ngtld.cn", "c.ngtld.cn", "d.ngtld.cn", "e.ngtld.cn"}, n, n, "whois.ngtld.cn", e, e, 0x0, t},
1784 {"xn--55qw42g" /* 公益 */, r, x, s{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, "whois.conac.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1785 {"xn--kprw13d" /* 台湾 */, r, x, s{"anytld.apnic.net", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw"}, n, n, "whois.twnic.net.tw", e, e, 0x0, t},
1786 {"xn--kpry57d" /* 台灣 */, r, x, s{"anytld.apnic.net", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw"}, n, n, "whois.twnic.net.tw", e, e, 0x0, t},
1787 {"xn--czru2d" /* 商城 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, e, 0x0, t},
1788 {"xn--czrs0t" /* 商店 */, r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.xn--czrs0t", e, "https://newgtlds.icann.org/", 0x0, t},
1789 {"xn--czr694b" /* 商标 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x0, t},
1790 {"xn--w4rs40l" /* 嘉里 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--w4rs40l", e, "https://newgtlds.icann.org/", 0x0, t},
1791 {"xn--w4r85el8fhu5dnra" /* 嘉里大酒店 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--w4r85el8fhu5dnra", e, "https://newgtlds.icann.org/", 0x40, t},
1792 {"xn--3ds443g" /* 在线 */, r, x, s{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, "whois.teleinfo.cn", e, e, 0x0, t},
1793 {"xn--3oq18vl8pn36a" /* 大众汽车 */, r, x, s{"a0.nic.xn--3oq18vl8pn36a", "a2.nic.xn--3oq18vl8pn36a", "b0.nic.xn--3oq18vl8pn36a", "c0.nic.xn--3oq18vl8pn36a"}, n, n, "whois.nic.xn--3oq18vl8pn36a", e, "https://newgtlds.icann.org/", 0x40, t},
1794 {"xn--pssy2u" /* 大拿 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--pssy2u", e, "https://newgtlds.icann.org/", 0x0, t},
1795 {"xn--tiq49xqyj" /* 天主教 */, r, x, s{"a.nic.xn--tiq49xqyj", "b.nic.xn--tiq49xqyj", "c.nic.xn--tiq49xqyj", "d.nic.xn--tiq49xqyj"}, n, n, "whois.nic.xn--tiq49xqyj", e, "https://newgtlds.icann.org/", 0x40, t},
1796 {"xn--fjq720a" /* 娱乐 */, r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.xn--fjq720a", e, "https://newgtlds.icann.org/", 0x0, t},
1797 {"xn--fct429k" /* 家電 */, r, x, s{"ns1.dns.nic.xn--fct429k", "ns2.dns.nic.xn--fct429k", "ns3.dns.nic.xn--fct429k", "ns4.dns.nic.xn--fct429k", "ns5.dns.nic.xn--fct429k", "ns6.dns.nic.xn--fct429k"}, n, n, "whois.nic.xn--fct429k", e, "https://newgtlds.icann.org/", 0x0, t},
1798 {"xn--estv75g" /* 工行 */, r, x, n, n, n, "whois.nic.xn--estv75g", e, "https://newgtlds.icann.org/", 0x0, t},
1799 {"xn--xhq521b" /* 广东 */, r, x, s{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, n, "whois.ngtld.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1800 {"xn--6rtwn" /* 广州 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2000, t},
1801 {"xn--9krt00a" /* 微博 */, r, x, s{"a0.nic.xn--9krt00a", "a2.nic.xn--9krt00a", "b0.nic.xn--9krt00a", "c0.nic.xn--9krt00a"}, n, n, "whois.nic.xn--9krt00a", e, "https://newgtlds.icann.org/", 0x0, t},
1802 {"xn--30rr7y" /* 慈善 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1803 {"xn--6qq986b3xl" /* 我爱你 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, "https://newgtlds.icann.org/", 0x40, t},
1804 {"xn--kput3i" /* 手机 */, r, x, s{"a0.nic.xn--kput3i", "a2.nic.xn--kput3i", "b0.nic.xn--kput3i", "c0.nic.xn--kput3i"}, n, n, "whois.nic.xn--kput3i", e, "https://newgtlds.icann.org/", 0x0, t},
1805 {"xn--kpu716f" /* 手表 */, r, x, n, n, n, "whois.nic.xn--kpu716f", e, "https://newgtlds.icann.org/", 0x0, t},
1806 {"xn--otu796d" /* 招聘 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x0, t},
1807 {"xn--zfr164b" /* 政务 */, r, x, s{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, "whois.conac.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1808 {"xn--mxtq1m" /* 政府 */, r, x, s{"a.nic.xn--mxtq1m", "b.nic.xn--mxtq1m", "c.nic.xn--mxtq1m", "d.nic.xn--mxtq1m"}, n, n, "whois.nic.xn--mxtq1m", e, "https://newgtlds.icann.org/", 0x0, t},
1809 {"xn--yfro4i67o" /* 新加坡 */, r, x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, "whois.sgnic.sg", e, e, 0x40, t},
1810 {"xn--efvy88h" /* 新闻 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.xn--efvy88h", e, "https://newgtlds.icann.org/", 0x0, t},
1811 {"xn--9et52u" /* 时尚 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1812 {"xn--kcrx7bb75ajk3b" /* 普利司通 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, t},
1813 {"xn--rovu88b" /* 書籍 */, r, x, s{"ns1.dns.nic.xn--rovu88b", "ns2.dns.nic.xn--rovu88b", "ns3.dns.nic.xn--rovu88b", "ns4.dns.nic.xn--rovu88b", "ns5.dns.nic.xn--rovu88b", "ns6.dns.nic.xn--rovu88b"}, n, n, "whois.nic.xn--rovu88b", e, "https://newgtlds.icann.org/", 0x0, t},
1814 {"xn--nqv7f" /* 机构 */, r, x, s{"a0.nic.xn--nqv7f", "a2.nic.xn--nqv7f", "b0.nic.xn--nqv7f", "c0.nic.xn--nqv7f"}, n, n, "whois.publicinterestregistry.net", e, "https://pir.org/products/chinese2char-domain/", 0x40, t},
1815 {"xn--tqq33ed31aqia" /* 机构体制 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1816 {"xn--dkwm73cwpn" /* 欧莱雅 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, t},
1817 {"xn--0zwm56d" /* 测试 */, r, x, n, n, n, e, e, e, 0x0, t},
1818 {"xn--b4w605ferd" /* 淡马锡 */, r, x, s{"a0.nic.xn--b4w605ferd", "a2.nic.xn--b4w605ferd", "b0.nic.xn--b4w605ferd", "c0.nic.xn--b4w605ferd"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, t},
1819 {"xn--fes124c" /* 深圳 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2000, t},
1820 {"xn--g6w251d" /* 測試 */, r, x, n, n, n, e, e, e, 0x0, t},
1821 {"xn--unup4y" /* 游戏 */, r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.xn--unup4y", e, "https://newgtlds.icann.org/", 0x0, t},
1822 {"xn--mix891f" /* 澳門 */, r, x, s{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, "whois.monic.mo", e, e, 0x0, t},
1823 {"xn--3pxu8k" /* 点看 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--3pxu8k", e, "https://newgtlds.icann.org/", 0x0, t},
1824 {"xn--pbt977c" /* 珠宝 */, r, x, n, n, n, "whois.nic.xn--pbt977c", e, "https://newgtlds.icann.org/", 0x0, t},
1825 {"xn--hxt035cmppuel" /* 盛貿飯店 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1826 {"xn--6frz82g" /* 移动 */, r, x, s{"a0.nic.xn--6frz82g", "a2.nic.xn--6frz82g", "b0.nic.xn--6frz82g", "c0.nic.xn--6frz82g"}, n, n, "whois.afilias.net", e, e, 0x0, t},
1827 {"xn--nqv7fs00ema" /* 组织机构 */, r, x, s{"a0.nic.xn--nqv7fs00ema", "a2.nic.xn--nqv7fs00ema", "b0.nic.xn--nqv7fs00ema", "c0.nic.xn--nqv7fs00ema"}, n, n, "whois.nic.xn--nqv7fs00ema", e, "https://newgtlds.icann.org/", 0x40, t},
1828 {"xn--ses554g" /* 网址 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.xn--ses554g", e, "https://newgtlds.icann.org/", 0x0, t},
1829 {"xn--hxt814e" /* 网店 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.xn--hxt814e", e, "https://newgtlds.icann.org/", 0x0, t},
1830 {"xn--5tzm5g" /* 网站 */, r, x, s{"a0.nic.xn--5tzm5g", "a2.nic.xn--5tzm5g", "b0.nic.xn--5tzm5g", "c0.nic.xn--5tzm5g"}, n, n, "whois.nic.xn--5tzm5g", e, "https://nic.xn--/-1e5cp6j", 0x0, t},
1831 {"xn--io0a7i" /* 网络 */, r, x, s{"a.ngtld.cn", "b.ngtld.cn", "c.ngtld.cn", "d.ngtld.cn", "e.ngtld.cn"}, n, n, "whois.ngtld.cn", e, e, 0x0, t},
1832 {"xn--8y0a063a" /* 联通 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.nic.xn--8y0a063a", e, "https://newgtlds.icann.org/", 0x0, t},
1833 {"xn--jlq61u9w7b" /* 诺基亚 */, r, x, s{"a0.nic.xn--jlq61u9w7b", "a2.nic.xn--jlq61u9w7b", "b0.nic.xn--jlq61u9w7b", "c0.nic.xn--jlq61u9w7b"}, n, n, "whois.nic.xn--jlq61u9w7b", e, "https://newgtlds.icann.org/", 0x40, t},
1834 {"xn--flw351e" /* 谷歌 */, r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
1835 {"xn--g2xx48c" /* 购物 */, r, x, s{"ns1.dns.nic.xn--g2xx48c", "ns2.dns.nic.xn--g2xx48c", "ns3.dns.nic.xn--g2xx48c", "ns4.dns.nic.xn--g2xx48c", "ns5.dns.nic.xn--g2xx48c", "ns6.dns.nic.xn--g2xx48c"}, n, n, "whois.nic.xn--g2xx48c", e, "https://newgtlds.icann.org/", 0x0, t},
1836 {"xn--55qx5d8y0buji4b870u" /* 通用电气公司 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
1837 {"xn--gk3at1e" /* 通販 */, r, x, s{"ns1.dns.nic.xn--gk3at1e", "ns2.dns.nic.xn--gk3at1e", "ns3.dns.nic.xn--gk3at1e", "ns4.dns.nic.xn--gk3at1e", "ns5.dns.nic.xn--gk3at1e", "ns6.dns.nic.xn--gk3at1e"}, n, n, "whois.nic.xn--gk3at1e", e, "https://newgtlds.icann.org/", 0x0, t},
1838 {"xn--3bst00m" /* 集团 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, "whois.gtld.knet.cn", e, "https://newgtlds.icann.org/", 0x0, t},
1839 {"xn--fzys8d69uvgm" /* 電訊盈科 */, r, x, s{"a0.nic.xn--fzys8d69uvgm", "a2.nic.xn--fzys8d69uvgm", "b0.nic.xn--fzys8d69uvgm", "c0.nic.xn--fzys8d69uvgm"}, n, n, "whois.nic.xn--fzys8d69uvgm", e, "https://newgtlds.icann.org/", 0x40, t},
1840 {"xn--kcrx77d1x4a" /* 飞利浦 */, r, x, s{"a.nic.xn--kcrx77d1x4a", "b.nic.xn--kcrx77d1x4a", "c.nic.xn--kcrx77d1x4a", "d.nic.xn--kcrx77d1x4a"}, n, n, "whois.nic.xn--kcrx77d1x4a", e, "https://newgtlds.icann.org/", 0x40, t},
1841 {"xn--jvr189m" /* 食品 */, r, x, s{"ns1.dns.nic.xn--jvr189m", "ns2.dns.nic.xn--jvr189m", "ns3.dns.nic.xn--jvr189m", "ns4.dns.nic.xn--jvr189m", "ns5.dns.nic.xn--jvr189m", "ns6.dns.nic.xn--jvr189m"}, n, n, "whois.nic.xn--jvr189m", e, "https://newgtlds.icann.org/", 0x0, t},
1842 {"xn--imr513n" /* 餐厅 */, r, x, s{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x0, t},
1843 {"xn--5su34j936bgsg" /* 香格里拉 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--5su34j936bgsg", e, "https://newgtlds.icann.org/", 0x40, t},
1844 {"xn--j6w193g" /* 香港 */, r, z[5058:5064], s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, "whois.hkirc.hk", e, e, 0x0, t},
1845 {"xn--j6w470d71issc" /* 香港電訊 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, t},
1846 {"xn--c1yn36f" /* 點看 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x0, t},
1847 {"xn--t60b56a" /* 닷넷 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--t60b56a", e, "https://newgtlds.icann.org/", 0x0, t},
1848 {"xn--mk1bu44c" /* 닷컴 */, r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.xn--mk1bu44c", e, "https://newgtlds.icann.org/", 0x0, t},
1849 {"xn--cg4bki" /* 삼성 */, r, x, s{"ns1.xn--cg4bki.centralnic-dns.com", "ns2.xn--cg4bki.centralnic-dns.com", "ns3.xn--cg4bki.centralnic-dns.com", "ns4.xn--cg4bki.centralnic-dns.com"}, n, n, "whois.kr", e, "https://newgtlds.icann.org/", 0x42, t},
1850 {"xn--9t4b11yi5a" /* 테스트 */, r, x, n, n, n, e, e, e, 0x40, t},
1851 {"xn--3e0b707e" /* 한국 */, r, x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, "whois.kr", e, e, 0x0, t},
1852 {"com.ac", &z[10], x, n, n, n, e, e, e, 0x800, f},
1853 {"gov.ac", &z[10], x, n, n, n, e, e, e, 0x800, f},
1854 {"mil.ac", &z[10], x, n, n, n, e, e, e, 0x0, f},
1855 {"net.ac", &z[10], x, n, n, n, e, e, e, 0x800, f},
1856 {"org.ac", &z[10], x, n, n, n, e, e, e, 0x800, f},
1857 {"nom.ad", &z[19], x, s{"dnsc.ad", "dnsm.ad"}, n, n, e, e, e, 0x0, f},
1858 {"ac.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, f},
1859 {"co.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, t},
1860 {"gov.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, f},
1861 {"mil.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, f},
1862 {"name.ae", &z[23], x, n, n, n, e, e, e, 0x0, f},
1863 {"net.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, f},
1864 {"org.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, f},
1865 {"pro.ae", &z[23], x, n, n, n, e, e, e, 0x0, f},
1866 {"sch.ae", &z[23], x, s{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, e, e, e, 0x0, f},
1867 {"airport.aero", &z[25], x, n, n, n, e, e, e, 0x0, t},
1868 {"cargo.aero", &z[25], x, n, n, n, e, e, e, 0x0, t},
1869 {"charter.aero", &z[25], x, n, n, n, e, e, e, 0x0, t},
1870 {"bank.af", &z[27], x, s{"ns-us.1and1-dns.com", "ns-us.1and1-dns.us"}, n, n, e, e, e, 0x0, f},
1871 {"com.af", &z[27], x, s{"ns.anycast.nic.af", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
1872 {"edu.af", &z[27], x, s{"ns.anycast.nic.af", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
1873 {"gov.af", &z[27], x, s{"ns.anycast.nic.af", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
1874 {"hotel.af", &z[27], x, n, n, n, e, e, e, 0x0, f},
1875 {"law.af", &z[27], x, n, n, n, e, e, e, 0x0, f},
1876 {"music.af", &z[27], x, s{"josh.ns.cloudflare.com", "lady.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
1877 {"net.af", &z[27], x, s{"ns.anycast.nic.af", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
1878 {"org.af", &z[27], x, s{"ns.anycast.nic.af", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
1879 {"tv.af", &z[27], x, s{"ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
1880 {"co.ag", &z[32], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
1881 {"com.ag", &z[32], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
1882 {"net.ag", &z[32], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
1883 {"nom.ag", &z[32], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
1884 {"ok.ag", &z[32], x, s{"ns1.domainname.at", "ns3.domainname.at", "ns4.domainname.at"}, n, n, e, e, e, 0x0, t},
1885 {"org.ag", &z[32], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
1886 {"com.ai", &z[35], x, s{"ns.cocca.fr", "pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1887 {"net.ai", &z[35], x, s{"ns.cocca.fr", "pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1888 {"off.ai", &z[35], x, s{"ns.cocca.fr", "pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1889 {"org.ai", &z[35], x, s{"ns.cocca.fr", "pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1890 {"com.al", &z[42], x, s{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
1891 {"edu.al", &z[42], x, s{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
1892 {"gov.al", &z[42], x, s{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
1893 {"inima.al", &z[42], x, s{"ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"}, n, n, e, e, e, 0x0, f},
1894 {"net.al", &z[42], x, s{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
1895 {"org.al", &z[42], x, s{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
1896 {"soros.al", &z[42], x, s{"ns1.hostmonster.com", "ns2.hostmonster.com"}, n, n, e, e, e, 0x0, f},
1897 {"tirana.al", &z[42], x, s{"ns3.albtelecom.net", "ns4.albtelecom.net"}, n, n, e, e, e, 0x0, f},
1898 {"uniti.al", &z[42], x, n, n, n, e, e, e, 0x0, f},
1899 {"upt.al", &z[42], x, s{"abcom.abcom.com.al", "smtphub.abcom.com.al"}, n, n, e, e, e, 0x0, f},
1900 {"co.am", &z[54], x, n, n, n, e, e, e, 0x0, f},
1901 {"com.am", &z[54], x, n, n, n, e, e, e, 0x0, f},
1902 {"net.am", &z[54], x, n, n, n, e, e, e, 0x0, f},
1903 {"north.am", &z[54], x, s{"ns1.instradns.com", "ns2.instradns.com"}, n, n, e, e, e, 0x0, f},
1904 {"org.am", &z[54], x, n, n, n, e, e, e, 0x0, f},
1905 {"radio.am", &z[54], x, s{"a.nic.fm", "b.nic.fm"}, n, n, e, e, e, 0x0, t},
1906 {"south.am", &z[54], x, s{"ns1.instradns.com", "ns2.instradns.com"}, n, n, e, e, e, 0x0, f},
1907 {"com.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
1908 {"edu.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
1909 {"net.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
1910 {"org.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
1911 {"co.ao", &z[71], z[5064:5066], s{"fred.nic.ao", "ns-ext.nic.cz", "ns0.nic.ao", "ns02.fccn.pt", "ns2.reg.it.ao"}, n, n, e, e, e, 0x0, f},
1912 {"ed.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
1913 {"gv.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
1914 {"it.ao", &z[71], x, s{"fred.nic.ao", "ns-ext.nic.cz", "ns0.nic.ao", "ns02.fccn.pt", "ns2.reg.it.ao"}, n, n, e, e, e, 0x0, f},
1915 {"og.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
1916 {"pb.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
1917 {"com.aq", &z[76], x, s{"ns1.internet.com.pe", "ns2.internet.com.pe"}, n, n, e, e, e, 0x0, f},
1918 {"com.ar", &z[79], x, s{"a.dns.ar", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, t},
1919 {"edu.ar", &z[79], z[5066:5067], s{"a.riu.edu.ar", "b.riu.edu.ar", "noc.uncu.edu.ar", "ns1.uba.ar", "ns2.switch.ch", "unlp.unlp.edu.ar"}, n, n, e, e, e, 0x0, f},
1920 {"gob.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, f},
1921 {"gov.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, f},
1922 {"int.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, t},
1923 {"mil.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, t},
1924 {"net.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, t},
1925 {"org.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, t},
1926 {"tur.ar", &z[79], x, s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, e, e, e, 0x0, t},
1927 {"e164.arpa", &z[85], x, s{"ns3.afrinic.net", "ns3.lacnic.net", "ns4.apnic.net", "pri.authdns.ripe.net", "tinnie.arin.net"}, n, n, "whois.ripe.net", e, e, 0x8, f},
1928 {"in-addr.arpa", &z[85], x, s{"a.in-addr-servers.arpa", "b.in-addr-servers.arpa", "c.in-addr-servers.arpa", "d.in-addr-servers.arpa", "e.in-addr-servers.arpa", "f.in-addr-servers.arpa"}, n, n, e, e, e, 0x8, f},
1929 {"ip6.arpa", &z[85], x, s{"a.ip6-servers.arpa", "b.ip6-servers.arpa", "c.ip6-servers.arpa", "d.ip6-servers.arpa", "e.ip6-servers.arpa", "f.ip6-servers.arpa"}, n, n, e, e, e, 0x8, f},
1930 {"iris.arpa", &z[85], x, s{"a.iana-servers.net", "b.iana-servers.net", "c.iana-servers.net", "ns3.lacnic.net", "ns4.apnic.net"}, n, n, e, e, e, 0x8, f},
1931 {"uri.arpa", &z[85], x, s{"a.iana-servers.net", "b.iana-servers.net", "c.iana-servers.net", "ns3.lacnic.net", "ns4.apnic.net"}, n, n, e, e, e, 0x8, f},
1932 {"urn.arpa", &z[85], x, s{"a.iana-servers.net", "b.iana-servers.net", "c.iana-servers.net", "ns3.lacnic.net", "ns4.apnic.net"}, n, n, e, e, e, 0x8, f},
1933 {"ac.at", &z[93], x, s{"d.ns.at", "n.ns.at", "ns1.univie.ac.at", "ns2.univie.ac.at"}, n, n, e, e, e, 0x0, f},
1934 {"co.at", &z[93], x, n, n, n, e, e, e, 0x0, f},
1935 {"gv.at", &z[93], x, s{"dns1.statistik.gv.at", "ns12.govix.at", "ns3.wien.at", "ns4.wien.gv.at", "ns7.univie.ac.at", "ns8.univie.ac.at"}, n, n, e, e, e, 0x0, f},
1936 {"or.at", &z[93], x, n, n, n, e, e, e, 0x0, f},
1937 {"priv.at", &z[93], x, s{"adns3.utanet.at", "mosthamster.nic.priv.at", "ns2.inode.at", "ns2.nextlayer.at", "ns5.univie.ac.at", "priv-ns.sil.at", "sec1.rcode0.net"}, n, n, "whois.nic.priv.at", e, e, 0x0, t},
1938 {"act.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1939 {"asn.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
1940 {"com.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
1941 {"conf.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1942 {"csiro.au", &z[96], x, s{"ns1.aarnet.net.au", "ns1.csiro.au", "ns2.aarnet.net.au", "ns2.csiro.au", "ns3.aarnet.net.au", "ns3.csiro.au"}, n, n, e, e, e, 0x0, f},
1943 {"edu.au", &z[96], z[5067:5075], s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, "http://www.domainname.edu.au/", 0x0, f},
1944 {"gov.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1945 {"id.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1946 {"info.au", &z[96], x, n, n, n, e, e, "http://www.aunic.net/", 0x800, f},
1947 {"net.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, "eleanba.connect.com.au", e, e, 0x0, t},
1948 {"nsw.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, s{"AU-NSW"}, e, e, e, 0x80, f},
1949 {"nt.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1950 {"org.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
1951 {"oz.au", &z[96], x, s{"munnari.oz.au", "ns.sw.oz.au", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
1952 {"qld.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1953 {"sa.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1954 {"tas.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1955 {"telememo.au", &z[96], x, n, n, n, e, e, e, 0x800, f},
1956 {"vic.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, "http://www.aucd.org.au/", 0x0, f},
1957 {"wa.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
1958 {"com.aw", &z[108], x, s{"ns1.setarnet.aw", "ns2.setarnet.aw"}, n, n, e, e, e, 0x0, f},
1959 {"bilesuvar.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1960 {"biz.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1961 {"co.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1962 {"com.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1963 {"edu.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1964 {"ganja.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1965 {"gov.az", &z[113], x, s{"ns1.gov.az", "ns2.gov.az", "ns3.gov.az", "ns4.gov.az"}, n, n, e, e, e, 0x0, f},
1966 {"imishli.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1967 {"info.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1968 {"int.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1969 {"mil.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1970 {"name.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1971 {"net.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1972 {"org.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1973 {"pp.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1974 {"pro.az", &z[113], x, n, n, n, e, e, e, 0x0, f},
1975 {"samux.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1976 {"shamaxi.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1977 {"shusha.az", &z[113], x, s{"ns1.gov.az", "ns2.gov.az"}, n, n, e, e, e, 0x0, t},
1978 {"sumgait.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1979 {"zaqatala.az", &z[113], x, n, n, n, e, e, e, 0x0, t},
1980 {"co.ba", &z[115], x, s{"ns1.co.ba", "ns2.co.ba", "ns3.co.ba"}, s{"176.9.45.78"}, n, e, e, e, 0x0, t},
1981 {"com.ba", &z[115], x, s{"ns1.hosting.bhtelecom.ba", "ns2.hosting.bhtelecom.ba", "ns3.hosting.bhtelecom.ba"}, s{"195.222.33.180"}, n, e, e, e, 0x0, f},
1982 {"edu.ba", &z[115], x, s{"bosna.utic.net.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1983 {"gov.ba", &z[115], x, s{"bosna.utic.net.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1984 {"mil.ba", &z[115], x, s{"bosna.utic.net.ba", "sava.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1985 {"net.ba", &z[115], x, s{"bosna.utic.net.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1986 {"org.ba", &z[115], x, s{"bosna.utic.net.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1987 {"rs.ba", &z[115], x, s{"a.ns.rs.ba", "b.ns.rs.ba", "c.ns.rs.ba"}, n, n, e, e, e, 0x0, f},
1988 {"unbi.ba", &z[115], x, s{"linhost01.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1989 {"unmo.ba", &z[115], x, s{"dns2019.unmo.ba", "pdc2019.unmo.ba", "web2019.unmo.ba"}, n, n, e, e, e, 0x0, f},
1990 {"unsa.ba", &z[115], x, s{"bosna.utic.net.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, e, e, e, 0x0, f},
1991 {"untz.ba", &z[115], x, s{"gradina.untz.ba", "slatina.untz.ba"}, n, n, e, e, e, 0x0, f},
1992 {"unze.ba", &z[115], x, s{"ns1.first-ns.de", "pi.unze.ba", "robotns2.second-ns.de", "robotns3.second-ns.com"}, n, n, e, e, e, 0x0, f},
1993 {"biz.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
1994 {"co.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
1995 {"com.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
1996 {"gov.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
1997 {"info.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
1998 {"net.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
1999 {"org.bb", &z[133], x, s{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, e, e, e, 0x0, f},
2000 {"store.bb", &z[133], x, n, n, n, e, e, e, 0x0, f},
2001 {"tv.bb", &z[133], x, n, n, n, e, e, e, 0x0, f},
2002 {"ac.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2003 {"com.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2004 {"edu.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2005 {"gov.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2006 {"mil.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2007 {"net.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2008 {"org.bd", &z[140], x, s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, e, e, 0x0, f},
2009 {"gov.bf", &z[151], x, s{"ntoo.gov.bf", "oubri.gov.bf"}, n, n, e, e, e, 0x0, f},
2010 {"0.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2011 {"1.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2012 {"2.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2013 {"3.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2014 {"4.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2015 {"5.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2016 {"6.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2017 {"7.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2018 {"8.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2019 {"9.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2020 {"a.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2021 {"b.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2022 {"c.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2023 {"d.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2024 {"e.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2025 {"f.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2026 {"g.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2027 {"h.bg", &z[152], x, n, n, n, e, e, "https://www.register.bg/user/", 0x0, f},
2028 {"i.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2029 {"j.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2030 {"k.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2031 {"l.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2032 {"m.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2033 {"n.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2034 {"o.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2035 {"p.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2036 {"q.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2037 {"r.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2038 {"s.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2039 {"t.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2040 {"u.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2041 {"v.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2042 {"w.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2043 {"x.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2044 {"y.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2045 {"z.bg", &z[152], x, n, n, n, e, e, e, 0x0, f},
2046 {"biz.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2047 {"cc.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2048 {"com.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2049 {"edu.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2050 {"gov.bh", &z[153], x, s{"ns1.gov.bh", "ns2.gov.bh"}, n, n, e, e, e, 0x0, f},
2051 {"info.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2052 {"net.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2053 {"org.bh", &z[153], x, s{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
2054 {"co.bi", &z[155], x, s{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, f},
2055 {"com.bi", &z[155], x, s{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, f},
2056 {"edu.bi", &z[155], x, s{"bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, f},
2057 {"gov.bi", &z[155], x, s{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, t},
2058 {"info.bi", &z[155], x, s{"bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns-bi.ripe.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, t},
2059 {"mo.bi", &z[155], x, s{"ns1.hostinger.com", "ns2.hostinger.com", "ns3.hostinger.com", "ns4.hostinger.com"}, n, n, e, e, e, 0x0, t},
2060 {"net.bi", &z[155], x, n, n, n, e, e, e, 0x0, t},
2061 {"or.bi", &z[155], x, s{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, f},
2062 {"org.bi", &z[155], x, s{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, e, e, e, 0x0, f},
2063 {"ote.bi", &z[155], x, n, n, n, e, e, e, 0x0, t},
2064 {"1x.biz", &z[162], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "1x.biz"}, n, e, e, e, 0x200, t},
2065 {"auz.biz", &z[162], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x0, f},
2066 {"asso.bj", &z[163], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, f},
2067 {"barreau.bj", &z[163], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, f},
2068 {"com.bj", &z[163], x, s{"ns.cocca.fr", "ns1.nic.bj", "pch.nic.bj"}, n, n, e, e, e, 0x0, f},
2069 {"edu.bj", &z[163], x, s{"ns.cocca.fr", "ns1.nic.bj", "pch.nic.fr"}, n, n, e, e, e, 0x0, f},
2070 {"gouv.bj", &z[163], x, s{"ns01.gouv.bj", "ns02.gouv.bj"}, n, n, e, e, e, 0x0, f},
2071 {"gov.bj", &z[163], x, s{"nakayo.leland.bj", "ns1.intnet.bj"}, n, n, e, e, e, 0x0, f},
2072 {"mil.bj", &z[163], x, s{"ns01.gouv.bj", "ns1.jenysas.bj"}, n, n, e, e, e, 0x0, f},
2073 {"art.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "art.blog"}, n, e, e, e, 0x0, t},
2074 {"business.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "business.blog"}, n, e, e, e, 0x0, t},
2075 {"car.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "car.blog"}, n, e, e, e, 0x0, t},
2076 {"code.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "code.blog"}, n, e, e, e, 0x0, t},
2077 {"family.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "family.blog"}, n, e, e, e, 0x0, t},
2078 {"fashion.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "fashion.blog"}, n, e, e, e, 0x0, t},
2079 {"finance.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "finance.blog"}, n, e, e, e, 0x0, t},
2080 {"fitness.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "fitness.blog"}, n, e, e, e, 0x0, t},
2081 {"food.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "food.blog"}, n, e, e, e, 0x0, t},
2082 {"game.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "game.blog"}, n, e, e, e, 0x0, t},
2083 {"health.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "health.blog"}, n, e, e, e, 0x0, t},
2084 {"home.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "home.blog"}, n, e, e, e, 0x0, t},
2085 {"law.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "law.blog"}, n, e, e, e, 0x0, t},
2086 {"movie.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "movie.blog"}, n, e, e, e, 0x0, t},
2087 {"music.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "music.blog"}, n, e, e, e, 0x0, t},
2088 {"news.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "news.blog"}, n, e, e, e, 0x0, t},
2089 {"photo.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "photo.blog"}, n, e, e, e, 0x0, t},
2090 {"poetry.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "poetry.blog"}, n, e, e, e, 0x0, t},
2091 {"politics.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "politics.blog"}, n, e, e, e, 0x0, t},
2092 {"school.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "school.blog"}, n, e, e, e, 0x0, t},
2093 {"science.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "science.blog"}, n, e, e, e, 0x0, t},
2094 {"sport.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "sport.blog"}, n, e, e, e, 0x0, t},
2095 {"tech.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "tech.blog"}, n, e, e, e, 0x0, t},
2096 {"travel.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "travel.blog"}, n, e, e, e, 0x0, t},
2097 {"video.blog", &z[168], x, s{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, s{"192.0.78.30", "192.0.78.31", "video.blog"}, n, e, e, e, 0x0, t},
2098 {"water.blog", &z[168], x, s{"ns1.wordpress.com", "ns2.wordpress.com", "ns3.wordpress.com"}, s{"192.0.78.24", "192.0.78.25", "water.blog"}, n, e, e, e, 0x0, t},
2099 {"com.bm", &z[172], x, n, n, n, e, e, e, 0x0, f},
2100 {"edu.bm", &z[172], x, n, n, n, e, e, e, 0x0, f},
2101 {"gov.bm", &z[172], x, s{"dns1.gov.bm", "dns2.gov.bm", "dns3.gov.bm"}, n, n, e, e, e, 0x0, f},
2102 {"net.bm", &z[172], x, n, n, n, e, e, e, 0x0, f},
2103 {"org.bm", &z[172], x, n, n, n, e, e, e, 0x0, f},
2104 {"com.bn", &z[175], x, s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2105 {"edu.bn", &z[175], x, s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2106 {"gov.bn", &z[175], x, s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, e, e, e, 0x0, t},
2107 {"net.bn", &z[175], x, s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2108 {"org.bn", &z[175], x, s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2109 {"com.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2110 {"edu.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2111 {"gob.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2112 {"gov.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2113 {"int.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2114 {"mil.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2115 {"net.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2116 {"org.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2117 {"tv.bo", &z[178], x, n, n, n, e, e, e, 0x0, f},
2118 {"abc.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2119 {"adm.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2120 {"adv.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2121 {"agr.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2122 {"am.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2123 {"aparecida.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2124 {"arq.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2125 {"art.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2126 {"ato.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2127 {"b.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2128 {"belem.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2129 {"bhz.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2130 {"bio.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2131 {"blog.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2132 {"bmd.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2133 {"boavista.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2134 {"bsb.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2135 {"campinas.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2136 {"caxias.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2137 {"cim.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2138 {"cng.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2139 {"cnt.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2140 {"com.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2141 {"coop.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2142 {"curitiba.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2143 {"ecn.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2144 {"eco.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2145 {"edu.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2146 {"emp.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2147 {"eng.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2148 {"esp.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2149 {"etc.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2150 {"eti.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2151 {"far.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2152 {"flog.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2153 {"floripa.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2154 {"fm.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2155 {"fnd.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2156 {"fortal.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2157 {"fot.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2158 {"foz.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2159 {"fst.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2160 {"g12.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2161 {"ggf.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2162 {"gov.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2163 {"gru.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2164 {"imb.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2165 {"ind.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2166 {"inf.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2167 {"jampa.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2168 {"jor.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2169 {"jus.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2170 {"lel.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2171 {"macapa.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2172 {"maceio.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2173 {"manaus.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2174 {"mat.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2175 {"med.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2176 {"mil.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2177 {"mus.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2178 {"natal.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2179 {"net.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2180 {"nom.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2181 {"not.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2182 {"ntr.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2183 {"odo.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2184 {"org.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2185 {"palmas.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2186 {"poa.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2187 {"ppg.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2188 {"pro.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2189 {"psc.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2190 {"psi.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2191 {"qsl.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2192 {"radio.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2193 {"rec.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2194 {"recife.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2195 {"rep.br", &z[194], z[5075:5076], s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2196 {"rio.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2197 {"salvador.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2198 {"sec3.br", &z[194], x, n, n, n, e, e, e, 0x0, t},
2199 {"sjc.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2200 {"slg.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2201 {"srv.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2202 {"taxi.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2203 {"teo.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2204 {"tmp.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2205 {"trd.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2206 {"tur.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2207 {"tv.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2208 {"vet.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2209 {"vix.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2210 {"vlog.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2211 {"wiki.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2212 {"zlg.br", &z[194], x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, e, e, e, 0x0, t},
2213 {"com.bs", &z[201], x, n, n, n, e, e, e, 0x0, f},
2214 {"edu.bs", &z[201], x, n, n, n, e, e, e, 0x0, f},
2215 {"gov.bs", &z[201], x, s{"ib-ext1.gov.bs", "ib-ext2.gov.bs", "ibgb-ext1.gov.bs", "ibgb-ext2.gov.bs"}, n, n, e, e, e, 0x0, f},
2216 {"net.bs", &z[201], x, n, n, n, e, e, e, 0x0, f},
2217 {"org.bs", &z[201], x, n, n, n, e, e, e, 0x0, f},
2218 {"we.bs", &z[201], x, s{"ns1.nic.we.bs", "ns2.nic.we.bs"}, n, n, e, e, e, 0x0, t},
2219 {"com.bt", &z[202], x, s{"ns1.druknet.bt", "ns2.druknet.bt", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2220 {"edu.bt", &z[202], x, s{"ns1.druknet.bt", "ns2.druknet.bt", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2221 {"gov.bt", &z[202], x, s{"ns1.druknet.bt", "ns2.druknet.bt"}, n, n, e, e, e, 0x0, t},
2222 {"net.bt", &z[202], x, s{"ns1.druknet.bt", "ns2.druknet.bt"}, n, n, e, e, e, 0x0, t},
2223 {"org.bt", &z[202], x, s{"ns1.druknet.bt", "ns2.druknet.bt", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2224 {"ac.bw", &z[212], x, s{"dns1.nic.net.bw", "dns2.nic.net.bw", "master.btc.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, e, e, e, 0x0, t},
2225 {"co.bw", &z[212], x, s{"dns1.nic.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, e, e, e, 0x0, f},
2226 {"net.bw", &z[212], x, s{"dns1.nic.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, e, e, e, 0x0, f},
2227 {"org.bw", &z[212], x, s{"dns1.nic.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, e, e, e, 0x0, f},
2228 {"com.by", &z[214], x, s{"a1.domain.by", "a2.domain.by"}, n, n, e, e, e, 0x0, f},
2229 {"gov.by", &z[214], x, s{"u1.hoster.by", "u2.hoster.by"}, n, n, e, e, e, 0x0, f},
2230 {"mil.by", &z[214], x, s{"ns1.oac.gov.by", "u1.hoster.by", "u2.hoster.by"}, n, n, e, e, e, 0x0, f},
2231 {"minsk.by", &z[214], x, s{"a1.domain.by", "a2.domain.by"}, n, n, e, e, e, 0x0, f},
2232 {"net.by", &z[214], x, s{"a1.domain.by", "a2.domain.by"}, n, n, e, e, e, 0x0, f},
2233 {"co.bz", &z[215], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2234 {"com.bz", &z[215], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2235 {"edu.bz", &z[215], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2236 {"gov.bz", &z[215], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2237 {"net.bz", &z[215], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2238 {"org.bz", &z[215], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2239 {"za.bz", &z[215], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net", "ns5.centralnic.net"}, n, n, "whois.centralnic.com", e, e, 0x0, t},
2240 {"ab.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2241 {"bc.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2242 {"co.ca", &z[217], x, s{"primary.relay.co.ca", "quaternary.relay.co.ca", "quinary.relay.co.ca", "secondary.relay.co.ca", "senary.relay.co.ca", "tertiary.relay.co.ca"}, n, n, "whois.co.ca", e, e, 0x200, t},
2243 {"gc.ca", &z[217], x, s{"dns1.nrc.ca", "dns2.nrc.ca", "ns1.d-zone.ca", "ns2.d-zone.ca"}, n, n, e, e, e, 0x0, f},
2244 {"mb.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2245 {"nb.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2246 {"nf.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2247 {"nl.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2248 {"ns.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2249 {"nt.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2250 {"nu.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2251 {"on.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2252 {"pe.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2253 {"qc.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2254 {"sk.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2255 {"yk.ca", &z[217], x, n, n, n, e, e, e, 0x0, f},
2256 {"com.cc", &z[256], x, s{"ns-1287.awsdns-32.org", "ns-1613.awsdns-09.co.uk", "ns-472.awsdns-59.com", "ns-680.awsdns-21.net"}, n, n, e, e, e, 0x0, t},
2257 {"edu.cc", &z[256], x, s{"ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, t},
2258 {"net.cc", &z[256], x, s{"ns-1028.awsdns-00.org", "ns-1980.awsdns-55.co.uk", "ns-218.awsdns-27.com", "ns-779.awsdns-33.net"}, n, n, e, e, e, 0x0, t},
2259 {"org.cc", &z[256], x, s{"ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, t},
2260 {"ac.cd", &z[257], x, s{"igubu.saix.net", "ns-root-1.scpt-network.com", "ns-root-2.scpt-network.com", "ns-root-4.scpt-network.com", "ns-root-5.scpt-network.com", "sabela.saix.net", "sangoma.saix.net"}, n, n, e, e, e, 0x0, t},
2261 {"com.cd", &z[257], x, s{"igubu.saix.net", "ns-root-1.scpt-network.com", "ns-root-2.scpt-network.com", "ns-root-5.scpt-network.com", "sabela.saix.net", "sangoma.saix.net"}, n, n, e, e, e, 0x0, t},
2262 {"edu.cd", &z[257], x, s{"igubu.saix.net", "ns-root-1.scpt-network.com", "ns-root-2.scpt-network.com", "ns-root-5.scpt-network.com", "sabela.saix.net", "sangoma.saix.net"}, n, n, e, e, e, 0x0, t},
2263 {"gouv.cd", &z[257], x, s{"igubu.saix.net", "ns-root-1.scpt-network.net", "ns-root-2.scpt-network.net", "ns-root-5.scpt-network.net", "sabela.saix.net", "sangoma.saix.net"}, n, n, e, e, e, 0x0, t},
2264 {"net.cd", &z[257], x, s{"igubu.saix.net", "ns-root-1.scpt-network.com", "ns-root-2.scpt-network.com", "ns-root-5.scpt-network.com", "sabela.saix.net", "sangoma.saix.net"}, n, n, e, e, e, 0x0, f},
2265 {"org.cd", &z[257], x, s{"igubu.saix.net", "ns-root-1.scpt-network.com", "ns-root-2.scpt-network.com", "ns-root-5.scpt-network.com", "sabela.saix.net", "sangoma.saix.net"}, n, n, e, e, e, 0x0, f},
2266 {"ac.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2267 {"aeroport.ci", &z[285], x, n, n, n, e, e, e, 0x0, f},
2268 {"asso.ci", &z[285], x, s{"f1g1ns1.dnspod.net", "f1g1ns2.dnspod.net"}, n, n, e, e, "http://www.nic.ci/", 0x0, t},
2269 {"assoc.ci", &z[285], x, n, n, n, e, e, e, 0x0, t},
2270 {"co.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2271 {"com.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.cctld.authdns.ripe.net", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2272 {"ed.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.cctld.authdns.ripe.net", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2273 {"edu.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2274 {"go.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2275 {"gov.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2276 {"in.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2277 {"int.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2278 {"net.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2279 {"nom.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.cctld.authdns.ripe.net", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2280 {"or.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2281 {"org.ci", &z[285], x, s{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2282 {"presse.ci", &z[285], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, f},
2283 {"biz.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2284 {"co.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2285 {"edu.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2286 {"gen.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2287 {"gov.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2288 {"info.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2289 {"net.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2290 {"org.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
2291 {"co.cm", &z[306], x, s{"a.cm.dyntld.net", "b.cm.dyntld.net", "ns1.nic.cm", "ns2.nic.cm"}, s{"85.25.140.105"}, n, e, e, e, 0x0, f},
2292 {"com.cm", &z[306], x, s{"a.cm.dyntld.net", "b.cm.dyntld.net", "ns1.nic.cm", "ns2.nic.cm"}, n, n, e, e, e, 0x0, f},
2293 {"edu.cm", &z[306], x, s{"ns1.nic.cm", "ns2.nic.cm"}, s{"85.25.140.105"}, n, e, e, e, 0x0, t},
2294 {"net.cm", &z[306], x, s{"a.cm.dyntld.net", "b.cm.dyntld.net", "ns1.nic.cm", "ns2.nic.cm"}, s{"85.25.140.105"}, n, e, e, e, 0x0, f},
2295 {"ac.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2296 {"ah.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, "http://www.belizenic.bz/", 0x0, f},
2297 {"bj.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2298 {"com.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2299 {"cq.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2300 {"edu.cn", &z[307], x, s{"deneb.dfn.de", "dns.edu.cn", "dns2.edu.cn", "ns2.cernet.net", "ns2.cuhk.hk"}, n, n, "whois.edu.cn", e, e, 0x0, f},
2301 {"fj.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2302 {"gd.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2303 {"gov.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2304 {"gs.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2305 {"gx.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2306 {"gz.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2307 {"ha.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2308 {"hb.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2309 {"he.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2310 {"hi.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2311 {"hk.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2312 {"hl.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2313 {"hn.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2314 {"jl.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2315 {"js.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2316 {"jx.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2317 {"keyword.cn", &z[307], z[5076:5077], s{"ns11.xincache.com", "ns12.xincache.com"}, n, n, e, e, e, 0x0, t},
2318 {"ln.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2319 {"mil.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn", "ns3.mil.cn", "ns4.mil.cn"}, n, n, e, e, e, 0x0, t},
2320 {"mo.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2321 {"net.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2322 {"nm.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2323 {"nx.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2324 {"org.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2325 {"qh.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2326 {"sc.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2327 {"sd.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2328 {"sh.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2329 {"sn.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2330 {"sx.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2331 {"tj.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2332 {"tw.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2333 {"xj.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2334 {"xz.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2335 {"yn.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2336 {"zj.cn", &z[307], x, s{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, e, e, e, 0x0, f},
2337 {"com.co", &z[308], x, n, n, n, e, e, e, 0x0, f},
2338 {"edu.co", &z[308], x, n, n, n, e, e, e, 0x0, f},
2339 {"gov.co", &z[308], x, s{"ns-1462.awsdns-54.org", "ns-1823.awsdns-35.co.uk", "ns-479.awsdns-59.com", "ns-943.awsdns-53.net"}, n, n, e, e, e, 0x0, f},
2340 {"mil.co", &z[308], x, n, n, n, e, e, e, 0x0, f},
2341 {"net.co", &z[308], x, n, n, n, e, e, e, 0x0, f},
2342 {"nom.co", &z[308], x, n, n, n, e, e, e, 0x0, f},
2343 {"org.co", &z[308], x, n, n, n, e, e, e, 0x0, f},
2344 {"4u.com", &z[314], x, s{"ns1.registry-servers.4u.com", "ns2.registry-servers.4u.com", "ns3.registry-servers.4u.com", "ns4.registry-servers.4u.com", "ns5.registry-servers.4u.com", "ns6.registry-servers.4u.com"}, n, n, e, e, e, 0x200, t},
2345 {"ae.com", &z[314], x, s{"asia3.akam.net", "eur2.akam.net", "eur5.akam.net", "ns1-161.akam.net", "ns1-163.akam.net", "usc3.akam.net", "use4.akam.net", "usw1.akam.net"}, n, n, e, e, e, 0x200, t},
2346 {"africa.com", &z[314], x, s{"ns2.dns.business", "ns3.dns.business", "ns4.dns.business"}, n, n, "whois.centralnic.com", e, e, 0x200, f},
2347 {"ar.com", &z[314], x, s{"ns69.domaincontrol.com", "ns70.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2348 {"asia.com", &z[314], x, s{"pdns1.ultradns.net", "pdns2.ultradns.net", "pdns3.ultradns.org", "pdns4.ultradns.org", "pdns5.ultradns.info", "pdns6.ultradns.co.uk"}, s{"72.55.150.59"}, n, e, e, e, 0x200, f},
2349 {"au.com", &z[314], x, s{"dns103.kddi.ne.jp", "dns104.kddi.ne.jp", "dnsa01.kddi.ne.jp", "dnsa02.kddi.ne.jp"}, n, n, e, e, e, 0x200, f},
2350 {"br.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "br.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2351 {"cn.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "cn.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2352 {"co.com", &z[314], x, s{"ns1.nic.co.com", "ns2.nic.co.com", "ns3.nic.co.com", "ns4.nic.co.com"}, s{"173.192.115.17"}, n, "whois.centralnic.net", e, "http://registry.co.com/", 0x200, t},
2353 {"de.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "de.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2354 {"eu.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "eu.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2355 {"gb.com", &z[314], x, s{"ns71.domaincontrol.com", "ns72.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2356 {"gr.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"72.34.38.11"}, n, "whois.centralnic.com", e, e, 0x200, f},
2357 {"hk.com", &z[314], x, s{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, "whois.registry.hk.com", e, e, 0x200, f},
2358 {"hu.com", &z[314], x, s{"ns3.dns.com", "ns4.dns.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2359 {"jpn.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "jpn.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2360 {"kr.com", &z[314], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2361 {"mex.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "mex.com"}, n, e, e, e, 0x200, f},
2362 {"no.com", &z[314], x, s{"ns29.domaincontrol.com", "ns30.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2363 {"nv.com", &z[314], x, s{"a.root-servers.nv.com", "b.root-servers.nv.com", "c.root-servers.nv.com", "d.root-servers.nv.com", "e.root-servers.nv.com", "f.root-servers.nv.com", "g.root-servers.nv.com"}, s{"205.159.223.111", "hosting.gi.net"}, n, e, e, e, 0x200, f},
2364 {"pty-ltd.com", &z[314], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x200, f},
2365 {"qb.com", &z[314], x, s{"f1g1ns1.dnspod.net", "f1g1ns2.dnspod.net"}, n, n, e, e, e, 0x200, f},
2366 {"qc.com", &z[314], x, s{"ns71.domaincontrol.com", "ns72.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2367 {"ru.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"141.8.226.34"}, n, "whois.centralnic.com", e, e, 0x200, t},
2368 {"sa.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"141.8.226.34"}, n, "whois.centralnic.com", e, e, 0x200, t},
2369 {"se.com", &z[314], x, s{"ns1.perf1.com", "ns2.perf1.fr", "ns3.perf1.eu", "ns4.perf1.de", "ns5.perf1.asia"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2370 {"uk.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "uk.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2371 {"us.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "us.com"}, n, "whois.centralnic.com", e, e, 0x200, t},
2372 {"uy.com", &z[314], x, s{"ns49.domaincontrol.com", "ns50.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
2373 {"za.com", &z[314], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"141.8.226.34"}, n, "whois.centralnic.com", e, e, 0x200, t},
2374 {"de.cool", &z[330], x, s{"jake.ns.cloudflare.com", "jill.ns.cloudflare.com"}, s{"2a00:f48:2000:affe::50", "91.216.248.20", "91.216.248.21", "91.216.248.22"}, n, e, e, e, 0x0, t},
2375 {"ac.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, f},
2376 {"co.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, f},
2377 {"ed.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, t},
2378 {"eu.cr", &z[339], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "eu.cr"}, n, e, e, e, 0x200, t},
2379 {"fi.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, f},
2380 {"go.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, f},
2381 {"or.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, f},
2382 {"sa.cr", &z[339], x, s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, e, e, e, 0x0, f},
2383 {"co.cu", &z[349], x, s{"ns3.etecsa.net", "ns3.etecsa.net.cu", "ns4.etecsa.net", "ns4.etecsa.net.cu", "ns5.etecsa.net"}, n, n, e, e, e, 0x0, f},
2384 {"com.cu", &z[349], x, s{"canada.cuba.cu", "ns.ceniai.net.cu", "ns.citmatel.com.cu"}, n, n, e, e, e, 0x0, f},
2385 {"cuba.cu", &z[349], x, n, n, n, e, e, e, 0x0, f},
2386 {"cyt.cu", &z[349], x, s{"mail1.tur.cu", "mail2.tur.cu", "ns1.tur.cu"}, n, n, e, e, e, 0x0, f},
2387 {"edu.cu", &z[349], x, s{"canada.cuba.cu", "cu.cctld.authdns.ripe.net", "ns.ceniai.net.cu", "ns.citmatel.com.cu", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2388 {"get.cu", &z[349], x, s{"mail1.tur.cu", "mail2.tur.cu", "ns1.tur.cu"}, n, n, e, e, e, 0x0, f},
2389 {"gov.cu", &z[349], x, n, n, n, e, e, e, 0x0, f},
2390 {"inf.cu", &z[349], x, n, n, n, e, e, e, 0x0, f},
2391 {"net.cu", &z[349], x, n, n, n, e, e, e, 0x0, f},
2392 {"org.cu", &z[349], x, n, n, n, e, e, e, 0x0, f},
2393 {"tur.cu", &z[349], x, s{"ns.ceniai.net.cu", "ns1.g4its.com", "ns1.tur.cu", "ns2.g4its.com", "ns2.tur.cu", "ns3.tur.cu", "ns4.tur.cu", "ns5.tur.cu"}, n, n, e, e, e, 0x0, f},
2394 {"com.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
2395 {"edu.cv", &z[351], x, n, n, n, e, e, e, 0x0, t},
2396 {"gov.cv", &z[351], x, s{"ns1.gov.cv", "ns2.gov.cv"}, n, n, e, e, e, 0x0, f},
2397 {"int.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
2398 {"net.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
2399 {"nome.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
2400 {"org.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
2401 {"publ.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
2402 {"com.cw", &z[352], x, n, n, n, e, e, e, 0x0, f},
2403 {"net.cw", &z[352], x, n, n, n, e, e, e, 0x0, f},
2404 {"com.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, e, e, e, 0x0, t},
2405 {"edu.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, e, e, e, 0x0, t},
2406 {"gov.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
2407 {"net.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, e, e, e, 0x0, t},
2408 {"org.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, e, e, e, 0x0, t},
2409 {"ac.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2410 {"biz.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2411 {"com.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2412 {"ekloges.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2413 {"gov.cy", &z[354], x, s{"dns.cit.cornell.edu", "ns01.gov.cy", "ns02.gov.cy", "sns0.grnet.gr", "sns1.grnet.gr"}, n, n, e, e, e, 0x0, f},
2414 {"ltd.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2415 {"name.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2416 {"net.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2417 {"org.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2418 {"parliament.cy", &z[354], x, s{"ns01.gov.cy", "ns02.gov.cy"}, n, n, e, e, e, 0x0, f},
2419 {"press.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2420 {"pro.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2421 {"tm.cy", &z[354], x, s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
2422 {"co.cz", &z[357], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
2423 {"1x.de", &z[368], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "1x.de"}, n, e, e, e, 0x200, t},
2424 {"co.de", &z[368], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "co.de"}, n, "whois.co.de", e, e, 0x0, t},
2425 {"com.de", &z[368], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "com.de"}, n, "whois.centralnic.com", e, e, 0x0, f},
2426 {"biz.dk", &z[397], x, s{"dns2000.euro-isp.net", "dns2001.euro-isp.net", "mail.digitalmarketing.net", "ns.digitalmarketing.net", "ns1.dk.org", "post.digitalmarketing.net", "root-dns.euro-isp.net"}, n, n, e, e, e, 0x0, f},
2427 {"co.dk", &z[397], x, s{"dns2000.euro-isp.net", "dns2001.euro-isp.net", "mail.digitalmarketing.net", "ns.digitalmarketing.net", "ns1.dk.org", "post.digitalmarketing.net", "root-dns.euro-isp.net"}, n, n, e, e, e, 0x0, f},
2428 {"co.dm", &z[398], x, s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, e, e, e, 0x0, f},
2429 {"com.dm", &z[398], x, s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, e, e, e, 0x0, f},
2430 {"edu.dm", &z[398], x, s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, e, e, e, 0x0, f},
2431 {"gov.dm", &z[398], x, s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, e, e, e, 0x0, f},
2432 {"net.dm", &z[398], x, s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, e, e, e, 0x0, f},
2433 {"org.dm", &z[398], x, s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, e, e, e, 0x0, f},
2434 {"art.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2435 {"com.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2436 {"edu.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2437 {"gob.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2438 {"gov.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2439 {"mil.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2440 {"net.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2441 {"org.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2442 {"sid.do", &z[401], x, n, n, n, e, e, e, 0x0, t},
2443 {"sld.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2444 {"web.do", &z[401], x, s{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2445 {"art.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2446 {"asso.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2447 {"com.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2448 {"edu.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2449 {"gov.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2450 {"net.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2451 {"org.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2452 {"pol.dz", &z[425], x, s{"ns1.nic.dz", "ns2.nic.dz"}, n, n, e, e, e, 0x0, f},
2453 {"com.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2454 {"edu.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2455 {"fin.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2456 {"gob.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, t},
2457 {"gov.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2458 {"info.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2459 {"med.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2460 {"mil.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2461 {"net.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2462 {"org.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2463 {"pro.ec", &z[428], x, s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, e, e, e, 0x0, f},
2464 {"co.ee", &z[434], x, s{"ns.elkdata.ee", "ns2.elkdata.ee"}, n, n, e, e, e, 0x0, f},
2465 {"com.ee", &z[434], x, n, n, n, e, e, e, 0x0, f},
2466 {"edu.ee", &z[434], x, s{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, e, e, e, 0x0, f},
2467 {"fie.ee", &z[434], x, n, n, n, e, e, e, 0x0, f},
2468 {"gov.ee", &z[434], x, s{"ans2.aso.ee", "company.e-resident.gov.ee", "ns.gov.ee"}, n, n, e, e, e, 0x0, f},
2469 {"hiiumaa.ee", &z[434], x, s{"ns.zone.eu", "ns2.zone.ee", "ns3.zonedata.net"}, s{"217.146.69.46"}, n, e, e, e, 0x0, f},
2470 {"kul.ee", &z[434], x, s{"ans2.aso.ee", "ns1.rmit.ee", "ns2.rmit.ee"}, n, n, e, e, e, 0x0, f},
2471 {"med.ee", &z[434], x, n, n, n, e, e, e, 0x0, t},
2472 {"org.ee", &z[434], x, s{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, e, e, e, 0x0, f},
2473 {"parnu.ee", &z[434], x, s{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, e, e, e, 0x0, f},
2474 {"parnumaa.ee", &z[434], x, s{"ns.elkdata.ee", "ns2.elkdata.ee", "ns3.elkdata.net"}, n, n, e, e, e, 0x0, f},
2475 {"polvamaa.ee", &z[434], x, s{"ns.zone.eu", "ns2.zone.ee", "ns3.zonedata.net"}, n, n, e, e, e, 0x0, f},
2476 {"pri.ee", &z[434], x, n, n, n, e, e, e, 0x0, f},
2477 {"tartu.ee", &z[434], x, s{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, e, e, e, 0x0, f},
2478 {"com.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2479 {"edu.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2480 {"eun.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2481 {"gov.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2482 {"info.eg", &z[435], x, s{"frcu.eun.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2483 {"mil.eg", &z[435], x, s{"frcu.eun.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2484 {"name.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2485 {"net.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2486 {"org.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com", "www.frcu.eun.eg"}, n, n, e, e, e, 0x0, f},
2487 {"sci.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2488 {"sport.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, t},
2489 {"tv.eg", &z[435], x, s{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
2490 {"com.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0x0, t},
2491 {"edu.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0x0, f},
2492 {"gov.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0x0, f},
2493 {"ind.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "sawaold.noc.net.er", "zaranew.noc.net.er", "zaraold.noc.net.er"}, n, n, e, e, e, 0x0, f},
2494 {"mil.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "sawaold.noc.net.er", "zaranew.noc.net.er", "zaraold.noc.net.er"}, n, n, e, e, e, 0x0, f},
2495 {"net.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0x0, f},
2496 {"org.er", &z[446], x, s{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0x0, f},
2497 {"com.es", &z[449], x, s{"fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, e, e, e, 0x0, f},
2498 {"edu.es", &z[449], x, s{"fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, e, e, e, 0x0, f},
2499 {"gob.es", &z[449], x, s{"fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, e, e, e, 0x0, f},
2500 {"nom.es", &z[449], x, s{"fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, e, e, e, 0x0, f},
2501 {"org.es", &z[449], x, s{"fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, e, e, e, 0x0, f},
2502 {"biz.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2503 {"com.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2504 {"edu.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2505 {"gov.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2506 {"info.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2507 {"name.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2508 {"net.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2509 {"org.et", &z[453], x, s{"a.nic.et", "b.nic.et"}, n, n, e, e, e, 0x0, f},
2510 {"24.eu", &z[455], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.eu"}, n, e, e, e, 0x200, t},
2511 {"ecb.eu", &z[455], x, s{"auth02.ns.de.uu.net", "auth52.ns.de.uu.net", "ns1.de.colt.net", "ns8.colt.net"}, n, n, e, e, e, 0x0, f},
2512 {"europa.eu", &z[455], x, s{"ns1.bt.net", "ns1bru.europa.eu", "ns1lux.europa.eu", "ns2bru.europa.eu", "ns2eu.bt.net", "ns2lux.europa.eu", "ns3bru.europa.eu", "ns3lux.europa.eu", "ns4az1.europa.eu"}, n, n, e, e, e, 0x0, f},
2513 {"ac.fj", &z[497], x, n, n, n, e, e, e, 0x0, t},
2514 {"biz.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2515 {"com.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2516 {"gov.fj", &z[497], x, s{"dnssecondary.auth-servers.net", "itcns1.gov.fj", "itcns2.gov.fj", "ns-ext.vix.com", "tabua.tfl.com.fj"}, n, n, e, e, e, 0x0, t},
2517 {"info.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2518 {"mil.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2519 {"name.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2520 {"net.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2521 {"org.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2522 {"pro.fj", &z[497], x, n, n, n, e, e, e, 0x0, f},
2523 {"school.fj", &z[497], x, s{"drua.tfl.com.fj", "ns-ext.isc.org", "tabua.tfl.com.fj"}, n, n, e, e, e, 0x0, t},
2524 {"ac.fk", &z[498], x, n, n, n, e, e, e, 0x0, f},
2525 {"co.fk", &z[498], x, n, n, n, e, e, e, 0x0, f},
2526 {"gov.fk", &z[498], x, s{"ns1.horizon.net.fk", "ns2.horizon.net.fk"}, n, n, e, e, e, 0x0, f},
2527 {"net.fk", &z[498], x, n, n, n, e, e, e, 0x0, f},
2528 {"nom.fk", &z[498], x, n, n, n, e, e, e, 0x0, f},
2529 {"org.fk", &z[498], x, n, n, n, e, e, e, 0x0, f},
2530 {"0.fm", &z[507], x, s{"ns1.bb-online.net", "ns2.bb-online.net"}, s{"0.fm", "139.162.244.72"}, n, e, e, e, 0x0, t},
2531 {"2.fm", &z[507], x, s{"ns1.idnz.net", "ns2.idnz.net", "ns3.idnz.net"}, s{"93.190.235.135"}, n, e, e, e, 0x0, t},
2532 {"4.fm", &z[507], x, s{"ns1.bb-online.net", "ns2.bb-online.net"}, s{"139.162.244.72", "4.fm"}, n, e, e, e, 0x0, t},
2533 {"6.fm", &z[507], x, s{"ns1.bb-online.net", "ns2.bb-online.net"}, s{"139.162.244.72", "6.fm"}, n, e, e, e, 0x0, t},
2534 {"8.fm", &z[507], x, s{"ns1.bb-online.net", "ns2.bb-online.net"}, s{"139.162.244.72", "8.fm"}, n, e, e, e, 0x0, t},
2535 {"radio.fm", &z[507], x, s{"a.nic.fm", "b.nic.fm", "c.nic.fm", "d.nic.fm"}, n, n, e, e, e, 0x0, t},
2536 {"aero.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2537 {"biz.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2538 {"co.fo", &z[508], x, s{"ns1-07.azure-dns.com", "ns2-07.azure-dns.net"}, n, n, e, e, e, 0x0, f},
2539 {"com.fo", &z[508], x, s{"ns1-03.azure-dns.com", "ns2-03.azure-dns.net"}, n, n, e, e, e, 0x0, f},
2540 {"coop.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2541 {"edu.fo", &z[508], x, s{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, e, e, e, 0x0, f},
2542 {"flp.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2543 {"ftp.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2544 {"gov.fo", &z[508], x, s{"ns1.olivant.fo", "ns2.olivant.fo"}, n, n, e, e, e, 0x0, f},
2545 {"info.fo", &z[508], x, s{"ns1.voodoo.com", "ns2.voodoo.com"}, s{"192.64.147.231"}, n, e, e, e, 0x0, f},
2546 {"int.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2547 {"internet.fo", &z[508], x, s{"ns1.olivant.fo", "ns2.olivant.fo"}, n, n, e, e, e, 0x0, f},
2548 {"irc.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2549 {"mail.fo", &z[508], x, s{"ns1.olivant.fo", "ns2.olivant.fo"}, n, n, e, e, e, 0x0, f},
2550 {"mil.fo", &z[508], x, s{"ns1.afriregister.com", "ns3.afriregister.com"}, n, n, e, e, e, 0x0, f},
2551 {"museum.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2552 {"name.fo", &z[508], x, s{"ns1.gratisdns.dk", "ns2.gratisdns.dk"}, n, n, e, e, e, 0x0, f},
2553 {"org.fo", &z[508], x, s{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, e, e, e, 0x0, f},
2554 {"telenet.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2555 {"telnet.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
2556 {"web.fo", &z[508], x, s{"ns1.xn--kisnavn-p1a.fo", "ns2.xn--kisnavn-p1a.fo", "ns3.xn--kisnavn-p1a.fo"}, n, n, e, e, e, 0x0, f},
2557 {"www.fo", &z[508], x, s{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, e, e, e, 0x0, f},
2558 {"aeroport.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2559 {"asso.fr", &z[519], x, n, n, n, e, e, e, 0x800, f},
2560 {"avocat.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2561 {"chambagri.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2562 {"chirurgiens-dentistes.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2563 {"com.fr", &z[519], x, n, n, n, e, e, e, 0x800, f},
2564 {"experts-comptables.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2565 {"geometre-expert.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2566 {"gouv.fr", &z[519], x, n, n, n, e, e, e, 0x0, f},
2567 {"medecin.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2568 {"nom.fr", &z[519], x, n, n, n, e, e, e, 0x0, f},
2569 {"notaires.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2570 {"pharmacien.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2571 {"port.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2572 {"prd.fr", &z[519], x, s{"ns1.renater.fr", "ns2.renater.fr", "ns4.cnrs.fr"}, n, n, e, e, e, 0x0, f},
2573 {"presse.fr", &z[519], x, n, n, n, e, e, e, 0x0, f},
2574 {"tm.fr", &z[519], x, n, n, n, e, e, e, 0x800, f},
2575 {"veterinaire.fr", &z[519], x, s{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, "whois.smallregistry.net", e, e, 0x0, t},
2576 {"ac.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2577 {"aeroport.ga", &z[534], x, s{"ns81.rookdns.com", "ns82.rookdns.com"}, s{"141.8.224.221"}, n, e, e, e, 0x0, f},
2578 {"asso.ga", &z[534], x, s{"ns1.aninf.ga", "ns2.aninf.ga", "ns3.aninf.ga"}, n, n, e, e, e, 0x0, f},
2579 {"co.ga", &z[534], x, s{"isp1.ib.ga", "isp2.ib.ga", "ns.ripe.net", "nsi1.inet.ga", "nsi2.inet.ga"}, n, n, e, e, e, 0x0, f},
2580 {"com.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2581 {"ed.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2582 {"edu.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2583 {"go.ga", &z[534], x, s{"ns81.rookdns.com", "ns82.rookdns.com"}, s{"141.8.224.221"}, n, e, e, e, 0x0, f},
2584 {"int.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2585 {"net.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2586 {"or.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2587 {"org.ga", &z[534], x, s{"isp1.ib.ga", "isp2.ib.ga", "nsi1.inet.ga", "nsi2.inet.ga"}, n, n, e, e, e, 0x0, f},
2588 {"presse.ga", &z[534], x, n, n, n, e, e, e, 0x0, f},
2589 {"hmg.gb", &z[545], x, n, n, n, e, e, e, 0x800, f},
2590 {"com.gd", &z[548], x, n, n, n, e, e, e, 0x0, t},
2591 {"edu.gd", &z[548], x, s{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, e, e, e, 0x800, f},
2592 {"gov.gd", &z[548], x, s{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, e, e, e, 0x0, f},
2593 {"mlt.gd", &z[548], x, n, n, n, e, e, e, 0x0, f},
2594 {"net.gd", &z[548], x, n, n, n, e, e, e, 0x0, f},
2595 {"org.gd", &z[548], x, n, n, n, e, e, e, 0x0, f},
2596 {"sci.gd", &z[548], x, n, n, n, e, e, e, 0x0, f},
2597 {"com.ge", &z[550], x, s{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, e, e, e, 0x0, f},
2598 {"edu.ge", &z[550], x, s{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, e, e, e, 0x0, f},
2599 {"gov.ge", &z[550], x, s{"ns1.gov.ge", "ns2.gov.ge", "ns3.gov.ge"}, n, n, e, e, e, 0x0, f},
2600 {"mil.ge", &z[550], x, n, n, n, e, e, e, 0x0, f},
2601 {"net.ge", &z[550], x, s{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, e, e, e, 0x0, f},
2602 {"org.ge", &z[550], x, s{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, e, e, e, 0x0, f},
2603 {"pvt.ge", &z[550], x, s{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, e, e, e, 0x0, f},
2604 {"school.ge", &z[550], x, s{"ns.nic.ge", "ns2.nic.ge"}, n, n, e, e, e, 0x0, t},
2605 {"24.gg", &z[558], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.gg"}, n, e, e, e, 0x200, t},
2606 {"ac.gg", &z[558], x, s{"ns1.rapidswitch.com", "ns2.rapidswitch.com", "ns3.rapidswitch.com"}, n, n, e, e, e, 0x0, f},
2607 {"co.gg", &z[558], x, s{"b.ci-servers.com", "c.ci-servers.org", "dns1.nominetdns.uk", "f.ci-servers.je", "g.ci-servers.gg"}, n, n, e, e, e, 0x0, f},
2608 {"eu.gg", &z[558], x, s{"ns5.myhostadmin.net", "ns6.myhostadmin.net"}, n, n, e, e, e, 0x200, t},
2609 {"gov.gg", &z[558], x, s{"dns1.name-s.net", "dns2.name-s.net", "dns3.mtgsy.com", "dns4.mtgsy.com", "gsy1.ns.mtgsy.com"}, n, n, e, e, e, 0x0, f},
2610 {"net.gg", &z[558], x, s{"b.ci-servers.com", "c.ci-servers.org", "dns1.nominetdns.uk", "f.ci-servers.je", "g.ci-servers.gg"}, n, n, e, e, e, 0x0, f},
2611 {"org.gg", &z[558], x, s{"b.ci-servers.com", "c.ci-servers.org", "dns1.nominetdns.uk", "f.ci-servers.je", "g.ci-servers.gg"}, n, n, e, e, e, 0x0, f},
2612 {"sch.gg", &z[558], x, s{"dns1.name-s.net", "dns2.name-s.net", "dns3.mtgsy.com", "dns4.mtgsy.com", "gsy1.ns.mtgsy.com"}, n, n, e, e, e, 0x0, f},
2613 {"tr.gg", &z[558], x, s{"ns01.webme.com", "ns02.webme.com"}, s{"193.238.27.36"}, n, e, e, e, 0x0, f},
2614 {"tv.gg", &z[558], x, n, n, n, e, e, e, 0x200, t},
2615 {"web.gg", &z[558], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "web.gg"}, n, e, e, e, 0x200, t},
2616 {"com.gh", &z[560], x, s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, e, e, 0x0, f},
2617 {"edu.gh", &z[560], x, s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, e, e, 0x0, f},
2618 {"gov.gh", &z[560], x, s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, e, e, 0x0, f},
2619 {"mil.gh", &z[560], x, s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, e, e, 0x0, f},
2620 {"net.gh", &z[560], x, s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, e, e, 0x0, t},
2621 {"org.gh", &z[560], x, s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, e, e, 0x0, f},
2622 {"com.gi", &z[561], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2623 {"edu.gi", &z[561], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2624 {"gov.gi", &z[561], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2625 {"ltd.gi", &z[561], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2626 {"mod.gi", &z[561], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2627 {"org.gi", &z[561], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
2628 {"co.gl", &z[566], x, s{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, e, e, e, 0x0, f},
2629 {"com.gl", &z[566], x, s{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, e, e, e, 0x0, f},
2630 {"edu.gl", &z[566], x, s{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, e, e, e, 0x0, f},
2631 {"net.gl", &z[566], x, s{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, e, e, e, 0x0, f},
2632 {"org.gl", &z[566], x, s{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, e, e, e, 0x0, f},
2633 {"ac.gn", &z[579], x, n, n, n, e, e, e, 0x0, f},
2634 {"co.gn", &z[579], x, n, n, n, e, e, e, 0x0, f},
2635 {"com.gn", &z[579], x, n, n, n, e, e, e, 0x0, t},
2636 {"gov.gn", &z[579], x, n, n, n, e, e, e, 0x0, f},
2637 {"net.gn", &z[579], x, n, n, n, e, e, e, 0x0, f},
2638 {"org.gn", &z[579], x, n, n, n, e, e, e, 0x0, f},
2639 {"24.gp", &z[593], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.gp"}, n, e, e, e, 0x200, t},
2640 {"asia.gp", &z[593], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "asia.gp"}, n, e, e, e, 0x200, t},
2641 {"asso.gp", &z[593], x, s{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, e, e, e, 0x0, f},
2642 {"co.gp", &z[593], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "co.gp"}, n, e, e, e, 0x200, t},
2643 {"com.gp", &z[593], x, s{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, e, e, e, 0x0, f},
2644 {"edu.gp", &z[593], x, s{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, e, e, e, 0x0, t},
2645 {"eu.gp", &z[593], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "eu.gp"}, n, e, e, e, 0x200, t},
2646 {"mobi.gp", &z[593], x, s{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, e, e, e, 0x0, f},
2647 {"net.gp", &z[593], x, s{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, e, e, e, 0x0, f},
2648 {"online.gp", &z[593], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "online.gp"}, n, e, e, e, 0x200, t},
2649 {"org.gp", &z[593], x, s{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, e, e, e, 0x0, f},
2650 {"com.gr", &z[595], x, s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, e, e, 0x0, f},
2651 {"edu.gr", &z[595], x, s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, e, e, 0x0, f},
2652 {"gov.gr", &z[595], x, s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, e, e, 0x0, f},
2653 {"net.gr", &z[595], x, s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, e, e, 0x0, f},
2654 {"org.gr", &z[595], x, s{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, e, e, e, 0x0, f},
2655 {"com.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2656 {"edu.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2657 {"gob.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2658 {"ind.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2659 {"mil.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2660 {"net.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2661 {"org.gt", &z[605], x, s{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
2662 {"com.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2663 {"edu.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2664 {"gov.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2665 {"guam.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2666 {"net.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2667 {"org.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
2668 {"web.gu", &z[606], x, s{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, t},
2669 {"co.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
2670 {"com.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
2671 {"net.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
2672 {"org.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, e, e, e, 0x0, t},
2673 {"com.hk", &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, f},
2674 {"edu.hk", &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, f},
2675 {"gov.hk", &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, f},
2676 {"idv.hk", &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, f},
2677 {"inc.hk", &z[639], x, s{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, "whois.registry.hk.com", e, e, 0x0, f},
2678 {"ltd.hk", &z[639], x, s{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, "whois.registry.hk.com", e, e, 0x0, f},
2679 {"net.hk", &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, f},
2680 {"org.hk", &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, f},
2681 {"xn--55qx5d.hk" /* 公司.hk */, &z[639], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
2682 {"com.hn", &z[642], x, s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, e, e, e, 0x0, f},
2683 {"edu.hn", &z[642], x, s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, e, e, e, 0x0, t},
2684 {"gob.hn", &z[642], x, s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, e, e, e, 0x0, t},
2685 {"mil.hn", &z[642], x, s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, e, e, e, 0x0, t},
2686 {"net.hn", &z[642], x, s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, e, e, e, 0x0, f},
2687 {"org.hn", &z[642], x, s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, e, e, e, 0x0, f},
2688 {"com.hr", &z[665], x, s{"dns-ez-1.carnet.hr", "dns1.com.hr", "dns2.com.hr"}, n, n, e, e, e, 0x0, f},
2689 {"from.hr", &z[665], x, s{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns2.from.hr"}, n, n, e, e, e, 0x0, f},
2690 {"iz.hr", &z[665], x, s{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns1.iz.hr", "dns2.from.hr", "dns2.iz.hr"}, n, n, e, e, e, 0x0, f},
2691 {"name.hr", &z[665], x, s{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns1.name.hr", "dns2.from.hr", "dns2.name.hr"}, n, n, e, e, e, 0x0, f},
2692 {"adult.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x1, f},
2693 {"art.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2694 {"asso.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2695 {"com.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2696 {"coop.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2697 {"edu.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2698 {"firm.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2699 {"gouv.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2700 {"info.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2701 {"med.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2702 {"net.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2703 {"org.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2704 {"perso.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2705 {"pol.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2706 {"pro.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2707 {"rel.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2708 {"shop.ht", &z[667], x, s{"ns.cocca.fr", "ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2709 {"2000.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2710 {"ac.hu", &z[669], x, n, n, n, e, e, e, 0x0, f},
2711 {"agrar.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2712 {"bolt.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2713 {"casino.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2714 {"city.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2715 {"co.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu", "ns12.communitydns.net"}, n, n, e, e, e, 0x0, f},
2716 {"edu.hu", &z[669], x, s{"ns2.iif.hu", "ns2.sztaki.hbone.hu"}, n, n, e, e, e, 0x0, f},
2717 {"erotica.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2718 {"erotika.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2719 {"film.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2720 {"forum.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2721 {"games.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2722 {"gov.hu", &z[669], x, s{"adns0.gov.hu", "adns1.gov.hu", "adns2.gov.hu"}, n, n, e, e, e, 0x0, f},
2723 {"hotel.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2724 {"info.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2725 {"ingatlan.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2726 {"jogasz.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2727 {"konyvelo.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2728 {"lakas.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2729 {"media.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2730 {"news.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2731 {"org.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2732 {"priv.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2733 {"reklam.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2734 {"sex.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x1, f},
2735 {"shop.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2736 {"sport.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2737 {"suli.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2738 {"szex.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2739 {"tm.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2740 {"tozsde.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2741 {"utazas.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2742 {"video.hu", &z[669], x, s{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, e, e, e, 0x0, f},
2743 {"ac.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2744 {"biz.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2745 {"co.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2746 {"desa.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, t},
2747 {"go.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2748 {"mi.id", &z[677], x, n, n, n, e, e, e, 0x0, t},
2749 {"mil.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2750 {"my.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2751 {"net.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2752 {"or.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2753 {"sch.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2754 {"web.id", &z[677], x, s{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, e, e, e, 0x0, f},
2755 {"com.ie", &z[679], x, n, n, n, e, e, e, 0x800, f},
2756 {"gov.ie", &z[679], x, s{"cwext.gn.gov.ie", "ext3.gn.gov.ie", "gbext.gn.gov.ie"}, n, n, e, e, e, 0x0, f},
2757 {"net.ie", &z[679], x, n, n, n, e, e, e, 0x800, f},
2758 {"nli.ie", &z[679], x, s{"ns.heanet.ie", "vax1.baker.ie"}, n, n, e, e, e, 0x0, f},
2759 {"org.ie", &z[679], x, n, n, n, e, e, e, 0x800, f},
2760 {"ac.il", &z[684], x, s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, e, 0x0, f},
2761 {"co.il", &z[684], x, s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, "http://www.isoc.org.il/domains/", 0x0, f},
2762 {"gov.il", &z[684], x, s{"dns3.gov.il", "ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, e, 0x0, f},
2763 {"idf.il", &z[684], x, s{"asia3.akam.net", "asia4.akam.net", "dns3.gov.il", "eur2.akam.net", "eur6.akam.net", "ns1-111.akam.net", "ns1-69.akam.net", "use4.akam.net", "usw2.akam.net"}, n, n, e, e, e, 0x0, f},
2764 {"k12.il", &z[684], x, s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, e, 0x0, f},
2765 {"muni.il", &z[684], x, s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, e, 0x0, f},
2766 {"net.il", &z[684], x, s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, "http://www.isoc.org.il/domains/", 0x0, f},
2767 {"org.il", &z[684], x, s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, e, e, "http://www.isoc.org.il/domains/", 0x0, f},
2768 {"ac.im", &z[685], x, n, n, n, e, e, e, 0x0, f},
2769 {"co.im", &z[685], z[5077:5079], n, n, n, e, e, e, 0x0, f},
2770 {"com.im", &z[685], x, n, n, n, e, e, e, 0x0, f},
2771 {"gov.im", &z[685], x, s{"barney.advsys.co.uk", "hoppy.iom.com", "pebbles.iom.com"}, n, n, e, e, e, 0x0, f},
2772 {"net.im", &z[685], x, n, n, n, e, e, e, 0x0, f},
2773 {"org.im", &z[685], x, n, n, n, e, e, e, 0x0, f},
2774 {"ac.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.ncst.ernet.in", e, e, 0x0, f},
2775 {"co.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.inregistry.net", e, e, 0x0, f},
2776 {"edu.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.ncst.ernet.in", e, e, 0x0, f},
2777 {"ernet.in", &z[690], x, s{"dns.ernet.in", "dns1.ernet.in", "dns2.ernet.in", "dns3.ernet.in", "dns4.ernet.in", "e-eihq01.eis.ernet.in", "e-eihq02.eis.ernet.in"}, n, n, e, e, e, 0x0, t},
2778 {"firm.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.inregistry.net", e, e, 0x0, f},
2779 {"gen.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.inregistry.net", e, e, 0x0, f},
2780 {"gov.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.ncst.ernet.in", e, e, 0x0, f},
2781 {"ind.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, e, e, e, 0x0, f},
2782 {"mil.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.ncst.ernet.in", e, e, 0x0, f},
2783 {"net.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.inregistry.net", e, e, 0x0, f},
2784 {"org.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.inregistry.net", e, e, 0x0, f},
2785 {"res.in", &z[690], x, s{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, "whois.ncst.ernet.in", e, e, 0x0, f},
2786 {"auz.info", &z[695], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x0, f},
2787 {"eu.int", &z[703], x, s{"ns1.be.colt.net", "ns1.bt.net", "ns1bru.europa.eu", "ns1lux.europa.eu", "ns2bru.europa.eu", "ns2eu.bt.net", "ns2lux.europa.eu"}, n, n, e, e, e, 0x0, f},
2788 {"com.io", &z[708], x, n, n, n, e, e, e, 0x800, t},
2789 {"org.io", &z[708], x, n, n, n, e, e, e, 0x800, t},
2790 {"biz.iq", &z[710], x, s{"dyn1.cmc.iq", "dyn2.cmc.iq", "ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, t},
2791 {"com.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, f},
2792 {"edu.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, f},
2793 {"gov.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, f},
2794 {"info.iq", &z[710], x, s{"ns23.cmc.iq", "ns24.cmc.iq"}, n, n, e, e, e, 0x0, t},
2795 {"mil.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, f},
2796 {"name.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, e, e, e, 0x0, t},
2797 {"net.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, t},
2798 {"org.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, f},
2799 {"tv.iq", &z[710], x, s{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, e, e, e, 0x0, t},
2800 {"ac.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2801 {"co.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2802 {"gov.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2803 {"id.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2804 {"net.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2805 {"org.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2806 {"sch.ir", &z[711], x, s{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, e, e, e, 0x0, f},
2807 {"abr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2808 {"abruzzo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2809 {"ag.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2810 {"agrigento.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2811 {"al.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2812 {"alessandria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2813 {"alto-adige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2814 {"altoadige.it", &z[720], x, s{"guy.ns.cloudflare.com", "rita.ns.cloudflare.com"}, n, n, e, e, e, 0x0, t},
2815 {"an.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2816 {"ancona.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2817 {"andria-barletta-trani.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2818 {"andria-trani-barletta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2819 {"andriabarlettatrani.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2820 {"andriatranibarletta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2821 {"ao.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2822 {"aosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2823 {"aoste.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2824 {"ap.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2825 {"aq.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2826 {"aquila.it", &z[720], x, s{"ns1.parkingcrew.net", "ns2.parkingcrew.net"}, s{"104.247.82.54"}, n, e, e, e, 0x0, t},
2827 {"ar.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2828 {"arezzo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2829 {"ascoli-piceno.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2830 {"ascolipiceno.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2831 {"asti.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2832 {"at.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2833 {"av.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2834 {"avellino.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2835 {"ba.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2836 {"balsan.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2837 {"bari.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2838 {"barletta-trani-andria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2839 {"barlettatraniandria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2840 {"bas.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2841 {"basilicata.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2842 {"belluno.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2843 {"benevento.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2844 {"bergamo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2845 {"bg.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2846 {"bi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2847 {"biella.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2848 {"bl.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2849 {"bn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2850 {"bo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2851 {"bologna.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2852 {"bolzano.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2853 {"bozen.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2854 {"br.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2855 {"brescia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2856 {"brindisi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2857 {"bs.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2858 {"bt.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2859 {"bz.it", &z[720], x, n, n, n, e, e, e, 0x0, f},
2860 {"ca.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2861 {"cagliari.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2862 {"cal.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2863 {"calabria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2864 {"caltanissetta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2865 {"cam.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2866 {"campania.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2867 {"campidano-medio.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2868 {"campidanomedio.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2869 {"campobasso.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2870 {"carbonia-iglesias.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2871 {"carboniaiglesias.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2872 {"carrara-massa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2873 {"carraramassa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2874 {"caserta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2875 {"catania.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2876 {"catanzaro.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2877 {"cb.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2878 {"ce.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2879 {"cesena-forli.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2880 {"cesenaforli.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2881 {"ch.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2882 {"chieti.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2883 {"ci.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2884 {"cl.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2885 {"cn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2886 {"co.it", &z[720], x, n, n, n, e, e, e, 0x0, f},
2887 {"como.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2888 {"cosenza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2889 {"cr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2890 {"cremona.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2891 {"crotone.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2892 {"cs.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2893 {"ct.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2894 {"cuneo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2895 {"cz.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2896 {"dell-ogliastra.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2897 {"dellogliastra.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2898 {"edu.it", &z[720], x, s{"a.dns.it", "dns.edu.it", "m.dns.it", "r.dns.it"}, n, n, e, e, e, 0x0, f},
2899 {"emilia-romagna.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2900 {"emiliaromagna.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2901 {"emr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2902 {"en.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2903 {"enna.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2904 {"fc.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2905 {"fe.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2906 {"fermo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2907 {"ferrara.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2908 {"fg.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2909 {"fi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2910 {"firenze.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2911 {"florence.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2912 {"fm.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2913 {"foggia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2914 {"forli-cesena.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2915 {"forlicesena.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2916 {"fr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2917 {"friuli-v-giulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2918 {"friuli-ve-giulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2919 {"friuli-vegiulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2920 {"friuli-venezia-giulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2921 {"friuli-veneziagiulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2922 {"friuli-vgiulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2923 {"friuliv-giulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2924 {"friulive-giulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2925 {"friulivegiulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2926 {"friulivenezia-giulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2927 {"friuliveneziagiulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2928 {"friulivgiulia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2929 {"frosinone.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2930 {"fvg.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2931 {"ge.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2932 {"genoa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2933 {"genova.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2934 {"go.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2935 {"gorizia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2936 {"gov.it", &z[720], x, s{"dns1.fweds-spc.it", "dns2.fweds-spc.it"}, n, n, e, e, e, 0x0, f},
2937 {"gr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2938 {"grosseto.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2939 {"iglesias-carbonia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2940 {"iglesiascarbonia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2941 {"im.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2942 {"imperia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2943 {"is.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2944 {"isernia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2945 {"kr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2946 {"la-spezia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2947 {"laquila.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2948 {"laspezia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2949 {"latina.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2950 {"laz.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2951 {"lazio.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2952 {"lc.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2953 {"le.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2954 {"lecce.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2955 {"lecco.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2956 {"li.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2957 {"lig.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2958 {"liguria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2959 {"livorno.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2960 {"lo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2961 {"lodi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2962 {"lom.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2963 {"lombardia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2964 {"lombardy.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2965 {"lt.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2966 {"lu.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2967 {"lucania.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2968 {"lucca.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2969 {"macerata.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2970 {"mantova.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2971 {"mar.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2972 {"marche.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2973 {"massa-carrara.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2974 {"massacarrara.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2975 {"matera.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2976 {"mb.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2977 {"mc.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2978 {"me.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2979 {"medio-campidano.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2980 {"mediocampidano.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2981 {"messina.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2982 {"mi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2983 {"milan.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2984 {"milano.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2985 {"mn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2986 {"mo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2987 {"modena.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2988 {"mol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2989 {"molise.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2990 {"monza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2991 {"monza-brianza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2992 {"monza-e-della-brianza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2993 {"monzabrianza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2994 {"monzaebrianza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2995 {"monzaedellabrianza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2996 {"ms.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2997 {"mt.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2998 {"na.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
2999 {"naples.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3000 {"napoli.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3001 {"no.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3002 {"novara.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3003 {"nu.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3004 {"nuoro.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3005 {"og.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3006 {"ogliastra.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3007 {"olbia-tempio.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3008 {"olbiatempio.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3009 {"or.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3010 {"oristano.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3011 {"ot.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3012 {"pa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3013 {"padova.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3014 {"padua.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3015 {"palermo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3016 {"parma.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3017 {"pavia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3018 {"pc.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3019 {"pd.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3020 {"pe.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3021 {"perugia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3022 {"pesaro-urbino.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3023 {"pesarourbino.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3024 {"pescara.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3025 {"pg.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3026 {"pi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3027 {"piacenza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3028 {"piedmont.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3029 {"piemonte.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3030 {"pisa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3031 {"pistoia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3032 {"pmn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3033 {"pn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3034 {"po.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3035 {"pordenone.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3036 {"potenza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3037 {"pr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3038 {"prato.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3039 {"pt.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3040 {"pu.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3041 {"pug.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3042 {"puglia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3043 {"pv.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3044 {"pz.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3045 {"ra.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3046 {"ragusa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3047 {"ravenna.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3048 {"rc.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3049 {"re.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3050 {"reggio-calabria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3051 {"reggio-emilia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3052 {"reggiocalabria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3053 {"reggioemilia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3054 {"rg.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3055 {"ri.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3056 {"rieti.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3057 {"rimini.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3058 {"rm.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3059 {"rn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3060 {"ro.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3061 {"roma.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3062 {"rome.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3063 {"rovigo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3064 {"sa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3065 {"salerno.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3066 {"sar.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3067 {"sardegna.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3068 {"sardinia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3069 {"sassari.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3070 {"savona.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3071 {"si.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3072 {"sic.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3073 {"sicilia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3074 {"sicily.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3075 {"siena.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3076 {"siracusa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3077 {"so.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3078 {"sondrio.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3079 {"sp.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3080 {"sr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3081 {"ss.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3082 {"suedtirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3083 {"sv.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3084 {"ta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3085 {"taa.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3086 {"taranto.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3087 {"te.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3088 {"tempio-olbia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3089 {"tempioolbia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3090 {"teramo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3091 {"terni.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3092 {"tn.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3093 {"to.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3094 {"torino.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3095 {"tos.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3096 {"toscana.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3097 {"tp.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3098 {"tr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3099 {"trani-andria-barletta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3100 {"trani-barletta-andria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3101 {"traniandriabarletta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3102 {"tranibarlettaandria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3103 {"trapani.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3104 {"trentino.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3105 {"trentino-a-adige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3106 {"trentino-aadige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3107 {"trentino-alto-adige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3108 {"trentino-altoadige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3109 {"trentino-s-tirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3110 {"trentino-stirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3111 {"trentino-sud-tirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3112 {"trentino-sudtirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3113 {"trentino-sued-tirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3114 {"trentino-suedtirol.it", &z[720], x, s{"dns3.aknet.it", "dns4.aknet.it"}, n, n, e, e, e, 0x0, t},
3115 {"trentinoa-adige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3116 {"trentinoaadige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3117 {"trentinoalto-adige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3118 {"trentinoaltoadige.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3119 {"trentinos-tirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3120 {"trentinosud-tirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3121 {"trentinosudtirol.it", &z[720], x, s{"dns.widhost.net", "dns2.widhost.net"}, n, n, e, e, e, 0x0, t},
3122 {"trentinosued-tirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3123 {"trentinosuedtirol.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3124 {"trento.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3125 {"treviso.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3126 {"trieste.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3127 {"ts.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3128 {"turin.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3129 {"tuscany.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3130 {"tv.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3131 {"ud.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3132 {"udine.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3133 {"umb.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3134 {"umbria.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3135 {"urbino-pesaro.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3136 {"urbinopesaro.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3137 {"va.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3138 {"val-d-aosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3139 {"val-daosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3140 {"vald-aosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3141 {"valdaosta.it", &z[720], x, s{"dns2.alsitech.it", "dns4.alsitech.it"}, n, n, e, e, e, 0x0, t},
3142 {"valle-d-aosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3143 {"valle-daosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3144 {"valled-aosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3145 {"valledaosta.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3146 {"vao.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3147 {"varese.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3148 {"vb.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3149 {"vc.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3150 {"vda.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3151 {"ve.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3152 {"ven.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3153 {"veneto.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3154 {"venezia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3155 {"venice.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3156 {"verbania.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3157 {"vercelli.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3158 {"verona.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3159 {"vi.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3160 {"vibo-valentia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3161 {"vibovalentia.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3162 {"vicenza.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3163 {"viterbo.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3164 {"vr.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3165 {"vs.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3166 {"vt.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3167 {"vv.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
3168 {"24.je", &z[729], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.je"}, n, e, e, e, 0x200, t},
3169 {"co.je", &z[729], x, s{"b.ci-servers.com", "c.ci-servers.org", "dns1.nominetdns.uk", "f.ci-servers.je", "g.ci-servers.gg"}, n, n, e, e, e, 0x0, f},
3170 {"gov.je", &z[729], x, s{"ns1.gov.je", "ns2.gov.je"}, n, n, e, e, e, 0x0, f},
3171 {"net.je", &z[729], x, s{"b.ci-servers.com", "c.ci-servers.org", "dns1.nominetdns.uk", "f.ci-servers.je", "g.ci-servers.gg"}, n, n, e, e, e, 0x0, f},
3172 {"org.je", &z[729], x, s{"b.ci-servers.com", "c.ci-servers.org", "dns1.nominetdns.uk", "f.ci-servers.je", "g.ci-servers.gg"}, n, n, e, e, e, 0x0, f},
3173 {"sch.je", &z[729], x, s{"ns1.gov.je", "ns2.gov.je"}, n, n, e, e, e, 0x0, f},
3174 {"com.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
3175 {"edu.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
3176 {"gov.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
3177 {"mil.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
3178 {"net.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
3179 {"org.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
3180 {"com.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3181 {"edu.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, e, e, 0x0, t},
3182 {"gov.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, s{"193.188.66.238"}, n, e, e, e, 0x0, f},
3183 {"mil.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3184 {"name.jo", &z[739], x, n, n, n, e, e, e, 0x0, f},
3185 {"net.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3186 {"org.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3187 {"sch.jo", &z[739], x, s{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3188 {"ac.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3189 {"ad.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3190 {"aichi.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3191 {"akita.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3192 {"aomori.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3193 {"chiba.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3194 {"co.jp", &z[744], x, n, n, n, e, e, e, 0x0, t},
3195 {"ed.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3196 {"ehime.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3197 {"fukui.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3198 {"fukuoka.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3199 {"fukushima.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3200 {"gifu.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3201 {"go.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3202 {"gr.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3203 {"gunma.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3204 {"hiroshima.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3205 {"hokkaido.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3206 {"hyogo.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3207 {"ibaraki.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3208 {"ishikawa.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3209 {"iwate.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3210 {"kagawa.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3211 {"kagoshima.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3212 {"kanagawa.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3213 {"kochi.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3214 {"kumamoto.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3215 {"kyoto.jp", &z[744], x, n, n, s{"Kyoto"}, e, e, e, 0x84, f},
3216 {"lg.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3217 {"mie.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3218 {"miyagi.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3219 {"miyazaki.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3220 {"nagano.jp", &z[744], x, n, n, s{"Nagano", "JP-20"}, e, e, e, 0x84, f},
3221 {"nagasaki.jp", &z[744], x, n, n, s{"Nagasaki"}, e, e, e, 0x84, f},
3222 {"nara.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3223 {"ne.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3224 {"niigata.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3225 {"oita.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3226 {"okayama.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3227 {"okinawa.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3228 {"or.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3229 {"osaka.jp", &z[744], x, n, n, s{"Osaka"}, e, e, e, 0x84, f},
3230 {"saga.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3231 {"saitama.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3232 {"shiga.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3233 {"shimane.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3234 {"shizuoka.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3235 {"tochigi.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3236 {"tokushima.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3237 {"tokyo.jp", &z[744], x, n, n, s{"Tokyo"}, e, e, e, 0x84, f},
3238 {"tottori.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3239 {"toyama.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3240 {"wakayama.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3241 {"yamagata.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3242 {"yamaguchi.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3243 {"yamanashi.jp", &z[744], x, n, n, n, e, e, e, 0x0, f},
3244 {"xn--ehqz56n.jp" /* 三重.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3245 {"xn--1lqs03n.jp" /* 京都.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3246 {"xn--qqqt11m.jp" /* 佐賀.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3247 {"xn--f6qx53a.jp" /* 兵庫.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3248 {"xn--djrs72d6uy.jp" /* 北海道.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3249 {"xn--mkru45i.jp" /* 千葉.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3250 {"xn--0trq7p7nn.jp" /* 和歌山.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3251 {"xn--5js045d.jp" /* 埼玉.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3252 {"xn--kbrq7o.jp" /* 大分.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3253 {"xn--pssu33l.jp" /* 大阪.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3254 {"xn--ntsq17g.jp" /* 奈良.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3255 {"xn--uisz3g.jp" /* 宮城.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3256 {"xn--6btw5a.jp" /* 宮崎.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3257 {"xn--1ctwo.jp" /* 富山.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3258 {"xn--6orx2r.jp" /* 山口.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3259 {"xn--rht61e.jp" /* 山形.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3260 {"xn--rht27z.jp" /* 山梨.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3261 {"xn--nit225k.jp" /* 岐阜.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3262 {"xn--rht3d.jp" /* 岡山.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3263 {"xn--djty4k.jp" /* 岩手.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3264 {"xn--klty5x.jp" /* 島根.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3265 {"xn--kltx9a.jp" /* 広島.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3266 {"xn--kltp7d.jp" /* 徳島.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3267 {"xn--c3s14m.jp" /* 愛媛.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3268 {"xn--vgu402c.jp" /* 愛知.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3269 {"xn--efvn9s.jp" /* 新潟.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3270 {"xn--1lqs71d.jp" /* 東京.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3271 {"xn--4pvxs.jp" /* 栃木.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3272 {"xn--uuwu58a.jp" /* 沖縄.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3273 {"xn--zbx025d.jp" /* 滋賀.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3274 {"xn--8pvr4u.jp" /* 熊本.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3275 {"xn--5rtp49c.jp" /* 石川.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3276 {"xn--ntso0iqx3a.jp" /* 神奈川.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3277 {"xn--elqq16h.jp" /* 福井.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3278 {"xn--4it168d.jp" /* 福岡.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3279 {"xn--klt787d.jp" /* 福島.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3280 {"xn--rny31h.jp" /* 秋田.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3281 {"xn--7t0a264c.jp" /* 群馬.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3282 {"xn--uist22h.jp" /* 茨城.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3283 {"xn--8ltr62k.jp" /* 長崎.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3284 {"xn--2m4a15e.jp" /* 長野.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3285 {"xn--32vp30h.jp" /* 青森.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3286 {"xn--4it797k.jp" /* 静岡.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3287 {"xn--5rtq34k.jp" /* 香川.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3288 {"xn--k7yn95e.jp" /* 高知.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3289 {"xn--tor131o.jp" /* 鳥取.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3290 {"xn--d5qv7z876c.jp" /* 鹿児島.jp */, &z[744], x, n, n, n, e, e, e, 0x0, t},
3291 {"ac.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3292 {"co.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3293 {"go.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3294 {"info.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3295 {"me.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3296 {"mobi.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3297 {"ne.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3298 {"or.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3299 {"sc.ke", &z[753], x, s{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, e, e, e, 0x0, f},
3300 {"com.kg", &z[761], x, s{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, e, e, e, 0x0, f},
3301 {"edu.kg", &z[761], x, s{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, e, e, e, 0x0, t},
3302 {"gov.kg", &z[761], x, s{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, e, e, e, 0x0, f},
3303 {"mil.kg", &z[761], x, s{"as.asiainfo.kg", "ns.kg", "ns.ripe.net"}, n, n, e, e, e, 0x0, f},
3304 {"net.kg", &z[761], x, s{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, e, e, e, 0x0, f},
3305 {"org.kg", &z[761], x, s{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, e, e, e, 0x0, f},
3306 {"com.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3307 {"edu.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3308 {"gov.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3309 {"mil.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3310 {"net.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3311 {"org.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3312 {"per.kh", &z[762], x, s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0x0, f},
3313 {"biz.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3314 {"com.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3315 {"edu.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3316 {"eu.ki", &z[763], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "eu.ki"}, n, e, e, e, 0x200, t},
3317 {"gov.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3318 {"info.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3319 {"mob.ki", &z[763], x, n, n, n, e, e, e, 0x0, f},
3320 {"mobi.ki", &z[763], x, n, n, n, e, e, e, 0x0, f},
3321 {"net.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3322 {"org.ki", &z[763], x, s{"ns.cocca.fr", "pch.nic.ki"}, n, n, e, e, e, 0x0, f},
3323 {"phone.ki", &z[763], x, n, n, n, e, e, e, 0x0, f},
3324 {"tel.ki", &z[763], x, n, n, n, e, e, e, 0x0, f},
3325 {"asso.km", &z[773], x, n, n, n, e, e, e, 0x800, f},
3326 {"com.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3327 {"coop.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3328 {"edu.km", &z[773], x, s{"dns1.nic.km", "dns2.nic.km"}, n, n, e, e, e, 0x0, f},
3329 {"gouv.km", &z[773], x, s{"dns1.nic.km", "dns2.nic.km"}, n, n, e, e, e, 0x0, f},
3330 {"medecin.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3331 {"mil.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3332 {"nom.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3333 {"notaires.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3334 {"org.km", &z[773], x, s{"dns1.nic.km", "dns2.nic.km"}, n, n, e, e, e, 0x0, t},
3335 {"pharmaciens.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3336 {"presse.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3337 {"tm.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3338 {"veterinaire.km", &z[773], x, n, n, n, e, e, e, 0x0, f},
3339 {"co.kn", &z[774], x, s{"ns.cocca.fr", "pch.nic.kn"}, n, n, e, e, e, 0x0, t},
3340 {"com.kn", &z[774], x, s{"ns.cocca.fr", "pch.nic.kn"}, n, n, e, e, e, 0x0, f},
3341 {"edu.kn", &z[774], x, s{"ns.cocca.fr", "pch.nic.kn"}, n, n, e, e, e, 0x0, f},
3342 {"gov.kn", &z[774], x, s{"ns.cocca.fr", "pch.nic.kn"}, n, n, e, e, e, 0x0, f},
3343 {"net.kn", &z[774], x, s{"ns.cocca.fr", "ns.coccaregistry.org", "pch.nic.kn"}, n, n, e, e, e, 0x0, f},
3344 {"org.kn", &z[774], x, s{"ns.cocca.fr", "ns.coccaregistry.org", "pch.nic.kn"}, n, n, e, e, e, 0x0, f},
3345 {"com.kp", &z[780], x, s{"ns1.com.kp", "ns2.com.kp"}, n, n, e, e, e, 0x0, f},
3346 {"net.kp", &z[780], x, s{"ns1.net.kp", "ns2.net.kp"}, n, n, e, e, e, 0x0, f},
3347 {"org.kp", &z[780], x, s{"ns1.org.kp", "ns2.org.kp"}, n, n, e, e, e, 0x0, f},
3348 {"rep.kp", &z[780], x, s{"ns1.rep.kp", "ns2.rep.kp"}, n, n, e, e, e, 0x0, f},
3349 {"ac.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3350 {"busan.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3351 {"chungbuk.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3352 {"chungnam.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3353 {"co.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3354 {"daegu.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3355 {"daejeon.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3356 {"es.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3357 {"gangwon.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3358 {"go.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3359 {"gwangju.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3360 {"gyeongbuk.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3361 {"gyeonggi.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3362 {"gyeongnam.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3363 {"hs.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3364 {"incheon.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3365 {"jeju.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3366 {"jeonbuk.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3367 {"jeonnam.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3368 {"kg.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3369 {"mil.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3370 {"ms.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3371 {"ne.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3372 {"or.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3373 {"pe.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3374 {"re.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3375 {"sc.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3376 {"seoul.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3377 {"ulsan.kr", &z[783], x, s{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, e, e, e, 0x0, f},
3378 {"com.kw", &z[787], x, s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, e, e, e, 0x0, f},
3379 {"edu.kw", &z[787], x, s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, e, e, e, 0x0, f},
3380 {"gov.kw", &z[787], x, s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, e, e, e, 0x0, f},
3381 {"net.kw", &z[787], x, s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, e, e, e, 0x0, f},
3382 {"org.kw", &z[787], x, s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, e, e, e, 0x0, f},
3383 {"com.ky", &z[788], x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, e, e, e, 0x0, f},
3384 {"edu.ky", &z[788], x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, e, e, e, 0x0, f},
3385 {"gov.ky", &z[788], x, s{"ns.gov.ky", "ns2.gov.ky"}, n, n, e, e, e, 0x0, f},
3386 {"net.ky", &z[788], x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, e, e, e, 0x0, f},
3387 {"org.ky", &z[788], x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, e, e, e, 0x0, f},
3388 {"com.kz", &z[791], x, s{"ns.nic.kz", "ns2.nic.kz"}, n, n, e, e, e, 0x0, f},
3389 {"edu.kz", &z[791], x, s{"ns.nic.kz", "ns2.nic.kz"}, n, n, e, e, e, 0x0, f},
3390 {"gov.kz", &z[791], x, s{"ns.nic.kz", "ns2.nic.kz"}, n, n, e, e, e, 0x0, f},
3391 {"mil.kz", &z[791], x, s{"ns.nic.kz", "ns2.nic.kz"}, n, n, e, e, e, 0x0, f},
3392 {"net.kz", &z[791], x, s{"ns.nic.kz", "ns2.nic.kz"}, n, n, e, e, e, 0x0, f},
3393 {"org.kz", &z[791], x, s{"ns.nic.kz", "ns2.nic.kz"}, n, n, e, e, e, 0x0, f},
3394 {"com.lb", &z[809], x, s{"magma.aub.edu.lb", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, e, e, 0x0, f},
3395 {"edu.lb", &z[809], x, s{"magma.aub.edu.lb", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, e, e, 0x0, f},
3396 {"gov.lb", &z[809], x, s{"magma.aub.edu.lb", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, e, e, 0x0, f},
3397 {"net.lb", &z[809], x, s{"magma.aub.edu.lb", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, e, e, 0x0, f},
3398 {"org.lb", &z[809], x, s{"magma.aub.edu.lb", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, e, e, 0x0, f},
3399 {"24.lc", &z[810], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.lc"}, n, e, e, e, 0x200, t},
3400 {"co.lc", &z[810], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
3401 {"com.lc", &z[810], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
3402 {"edu.lc", &z[810], x, s{"dns2.server.ag", "ns2.dnsserver.ag"}, n, n, e, e, e, 0x0, f},
3403 {"gov.lc", &z[810], x, s{"dns2.server.ag", "ns2.dnsserver.ag"}, n, n, e, e, e, 0x0, f},
3404 {"l.lc", &z[810], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
3405 {"net.lc", &z[810], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
3406 {"org.lc", &z[810], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
3407 {"p.lc", &z[810], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, e, e, e, 0x0, f},
3408 {"assn.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3409 {"com.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3410 {"edu.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3411 {"gov.lk", &z[838], x, s{"c.nic.lk", "d.nic.lk", "m.nic.lk", "ns1.gov.lk", "ns2.gov.lk"}, n, n, e, e, e, 0x0, f},
3412 {"grp.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3413 {"hotel.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3414 {"int.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3415 {"ltd.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3416 {"net.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3417 {"ngo.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3418 {"org.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3419 {"sch.lk", &z[838], x, s{"ns1.sch.lk"}, n, n, e, e, e, 0x0, f},
3420 {"soc.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3421 {"web.lk", &z[838], x, n, n, n, e, e, e, 0x0, f},
3422 {"com.lr", &z[854], x, n, n, n, e, e, e, 0x0, f},
3423 {"edu.lr", &z[854], x, n, n, n, e, e, e, 0x0, f},
3424 {"gov.lr", &z[854], x, n, n, n, e, e, e, 0x0, f},
3425 {"net.lr", &z[854], x, n, n, n, e, e, e, 0x0, f},
3426 {"org.lr", &z[854], x, n, n, n, e, e, e, 0x0, f},
3427 {"vcom.lr", &z[854], x, n, n, n, e, e, e, 0x0, f},
3428 {"ac.ls", &z[855], x, s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls", "thaba.nul.ls"}, n, n, e, e, e, 0x0, t},
3429 {"co.ls", &z[855], x, s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, e, e, e, 0x0, f},
3430 {"gov.ls", &z[855], x, s{"acst23ns01.gov.ls", "afdp23ns01.gov.ls", "secdns1.posix.co.za", "thaba.nul.ls"}, n, n, e, e, e, 0x0, t},
3431 {"net.ls", &z[855], x, s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.leo.co.ls", "ns1.nic.ls", "sas.leo.co.ls"}, n, n, e, e, e, 0x0, t},
3432 {"org.ls", &z[855], x, s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, e, e, e, 0x0, f},
3433 {"parliament.ls", &z[855], x, s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.leo.co.ls", "sas.leo.co.ls"}, n, n, e, e, e, 0x0, t},
3434 {"gov.lt", &z[856], x, s{"ns2.domreg.lt", "ns3.domreg.lt", "ns3.is.lt", "ns4.is.lt"}, n, n, e, e, e, 0x0, f},
3435 {"asn.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3436 {"com.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3437 {"conf.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3438 {"edu.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3439 {"gov.lv", &z[864], x, s{"a.gov.lv", "b.gov.lv"}, n, n, e, e, e, 0x0, f},
3440 {"id.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3441 {"mil.lv", &z[864], x, s{"ns1.mil.lv", "ns2.mil.lv"}, n, n, e, e, e, 0x0, f},
3442 {"net.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3443 {"org.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
3444 {"com.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3445 {"edu.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3446 {"gov.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3447 {"id.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3448 {"med.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3449 {"net.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3450 {"org.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3451 {"plc.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3452 {"sch.ly", &z[865], x, n, n, n, e, e, e, 0x0, f},
3453 {"ac.ma", &z[866], x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, e, e, e, 0x0, f},
3454 {"co.ma", &z[866], x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, e, e, e, 0x0, f},
3455 {"gov.ma", &z[866], x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, e, e, e, 0x0, f},
3456 {"net.ma", &z[866], x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, e, e, e, 0x0, f},
3457 {"org.ma", &z[866], x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, e, e, e, 0x0, f},
3458 {"press.ma", &z[866], x, s{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, e, e, e, 0x0, f},
3459 {"asso.mc", &z[887], x, s{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, e, e, e, 0x0, f},
3460 {"tm.mc", &z[887], x, s{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, e, e, e, 0x0, f},
3461 {"ac.me", &z[892], x, s{"ns.ac.me", "ns2.ac.me"}, n, n, e, e, e, 0x0, f},
3462 {"co.me", &z[892], x, s{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, e, e, e, 0x0, f},
3463 {"edu.me", &z[892], x, s{"ns.edu.me", "ns2.edu.me"}, n, n, e, e, e, 0x0, f},
3464 {"gov.me", &z[892], x, s{"ns.gov.me", "ns1.gov.me"}, n, n, e, e, e, 0x0, f},
3465 {"its.me", &z[892], x, s{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, e, e, e, 0x0, f},
3466 {"net.me", &z[892], x, s{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, e, e, e, 0x0, f},
3467 {"org.me", &z[892], x, s{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, e, e, e, 0x0, f},
3468 {"priv.me", &z[892], x, s{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, e, e, e, 0x0, f},
3469 {"co.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3470 {"com.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3471 {"edu.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3472 {"gov.mg", &z[907], x, s{"ns.gov.mg", "ns2.gov.mg"}, n, n, e, e, e, 0x0, f},
3473 {"in.mg", &z[907], x, s{"ns1.in.mg", "ns2.in.mg"}, n, n, e, e, e, 0x0, t},
3474 {"mil.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3475 {"net.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3476 {"nom.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3477 {"org.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3478 {"prd.mg", &z[907], x, s{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, e, e, e, 0x0, f},
3479 {"tm.mg", &z[907], x, n, n, n, e, e, e, 0x0, f},
3480 {"com.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3481 {"edu.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3482 {"gov.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3483 {"inf.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3484 {"name.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3485 {"net.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3486 {"org.mk", &z[919], x, s{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, e, e, e, 0x0, f},
3487 {"pro.mk", &z[919], x, s{"ns1.pro.mk", "ns2.pro.mk", "ns3.pro.mk", "ns4.pro.mk"}, s{"162.218.232.95"}, n, e, e, e, 0x0, t},
3488 {"com.ml", &z[920], x, s{"djamako.nic.ml", "dns.gouv.ml"}, n, n, e, e, e, 0x0, f},
3489 {"edu.ml", &z[920], x, s{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, e, e, e, 0x0, t},
3490 {"gov.ml", &z[920], x, s{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, e, e, e, 0x0, f},
3491 {"net.ml", &z[920], x, s{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, e, e, e, 0x0, f},
3492 {"org.ml", &z[920], x, s{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, e, e, e, 0x0, f},
3493 {"presse.ml", &z[920], x, s{"ns1.nicdumali.presse.ml", "ns2.nicdumali.presse.ml", "ns3.nicdumali.presse.ml"}, n, n, e, e, e, 0x0, f},
3494 {"biz.mm", &z[923], x, s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, e, e, e, 0x0, f},
3495 {"com.mm", &z[923], x, s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, e, e, e, 0x0, f},
3496 {"edu.mm", &z[923], x, s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, e, e, e, 0x0, f},
3497 {"gov.mm", &z[923], x, s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, e, e, e, 0x0, f},
3498 {"mil.mm", &z[923], x, s{"master.mil.mm", "ns1.mil.mm", "ns2.mil.mm"}, n, n, e, e, e, 0x0, t},
3499 {"net.mm", &z[923], x, s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, e, e, e, 0x0, f},
3500 {"org.mm", &z[923], x, s{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, e, e, e, 0x0, f},
3501 {"per.mm", &z[923], x, n, n, n, e, e, e, 0x0, f},
3502 {"edu.mn", &z[925], x, s{"ns.erdemnet.mn", "ns2.erdemnet.mn"}, n, n, e, e, e, 0x0, f},
3503 {"gov.mn", &z[925], x, s{"ns.gov.mn", "ns1.gov.mn", "ns3.gov.mn", "ns4.gov.mn"}, n, n, e, e, e, 0x0, f},
3504 {"org.mn", &z[925], x, s{"ns1.magic.mn", "ns3.magic.mn"}, n, n, e, e, e, 0x0, f},
3505 {"co.mo", &z[927], x, n, n, n, e, e, e, 0x0, t},
3506 {"com.mo", &z[927], x, s{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, e, e, e, 0x0, f},
3507 {"edu.mo", &z[927], x, s{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, e, e, e, 0x0, f},
3508 {"gov.mo", &z[927], x, s{"ns1.gov.mo", "ns2.gov.mo", "ns3.gov.mo", "ns4.gov.mo", "ns5.gov.mo"}, n, n, e, e, e, 0x0, f},
3509 {"net.mo", &z[927], x, s{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, e, e, e, 0x0, f},
3510 {"org.mo", &z[927], x, s{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, e, e, e, 0x0, f},
3511 {"co.mp", &z[949], x, s{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, e, e, e, 0x0, t},
3512 {"com.mp", &z[949], x, n, n, n, e, e, e, 0x0, f},
3513 {"gov.mp", &z[949], x, s{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, e, e, e, 0x0, f},
3514 {"org.mp", &z[949], x, s{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, e, e, e, 0x0, f},
3515 {"edu.mr", &z[951], x, s{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, e, e, e, 0x0, t},
3516 {"gov.mr", &z[951], x, s{"dns.mauritania.mr", "dns2.mauritania.mr", "ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr"}, n, n, e, e, e, 0x0, f},
3517 {"org.mr", &z[951], x, s{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, e, e, e, 0x0, t},
3518 {"perso.mr", &z[951], x, s{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, e, e, e, 0x0, t},
3519 {"co.ms", &z[954], x, s{"ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
3520 {"com.ms", &z[954], x, s{"ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
3521 {"net.ms", &z[954], x, n, n, n, e, e, e, 0x0, t},
3522 {"org.ms", &z[954], x, s{"ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
3523 {"com.mt", &z[956], x, s{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, e, e, e, 0x0, f},
3524 {"edu.mt", &z[956], x, s{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, e, e, e, 0x0, f},
3525 {"gov.mt", &z[956], x, s{"ns1-09.azure-dns.com", "ns2-09.azure-dns.net", "ns3-09.azure-dns.org", "ns4-09.azure-dns.info"}, n, n, e, e, e, 0x0, f},
3526 {"net.mt", &z[956], x, s{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, e, e, e, 0x0, f},
3527 {"org.mt", &z[956], x, s{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, e, e, e, 0x0, f},
3528 {"24.mu", &z[960], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.mu"}, n, e, e, e, 0x200, t},
3529 {"ac.mu", &z[960], x, s{"anycast1.irondns.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu"}, n, n, e, e, e, 0x0, f},
3530 {"co.mu", &z[960], x, s{"anycast1.irondns.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu"}, n, n, e, e, e, 0x0, t},
3531 {"com.mu", &z[960], x, s{"anycast1.irondns.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu"}, n, n, e, e, e, 0x0, f},
3532 {"gov.mu", &z[960], x, s{"ns0.gov.mu", "ns1.gov.mu", "ns2.gov.mu", "ns3.gov.mu", "ns4.gov.mu"}, n, n, e, e, e, 0x0, f},
3533 {"net.mu", &z[960], x, s{"anycast1.irondns.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu"}, n, n, e, e, e, 0x0, f},
3534 {"nom.mu", &z[960], x, s{"ns1.mu-dns.net", "ns2.mu-dns.net"}, s{"185.243.56.15"}, n, e, e, e, 0x0, f},
3535 {"or.mu", &z[960], x, s{"anycast1.irondns.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu"}, n, n, e, e, e, 0x0, f},
3536 {"org.mu", &z[960], x, s{"anycast1.irondns.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu"}, n, n, e, e, e, 0x0, f},
3537 {"aero.mv", &z[967], x, s{"mv-ns.anycast.pch.net", "ns-cache01.dhivehinet.net.mv", "ns.aero.mv", "ns2.dhivehinet.net.mv"}, n, n, e, e, "http://www.brunet.bn/products_webrelated_domain_main.htm", 0x0, f},
3538 {"biz.mv", &z[967], x, s{"webns.mv"}, n, n, e, e, e, 0x0, f},
3539 {"com.mv", &z[967], x, s{"mv-ns.anycast.pch.net", "ns.com.mv", "ns.dhivehinet.net.mv", "ns2.dhivehinet.net.mv"}, n, n, e, e, e, 0x0, f},
3540 {"coop.mv", &z[967], x, n, n, n, e, e, e, 0x0, f},
3541 {"edu.mv", &z[967], x, s{"mv-ns.anycast.pch.net", "ns.edu.mv", "ns1.edu.mv", "ns2.edu.mv"}, n, n, e, e, e, 0x0, f},
3542 {"gov.mv", &z[967], x, s{"mv-ns.anycast.pch.net", "ns.dhivehinet.net.mv", "ns.gov.mv", "ns2.dhivehinet.net.mv"}, n, n, e, e, e, 0x0, f},
3543 {"info.mv", &z[967], x, n, n, n, e, e, e, 0x0, f},
3544 {"int.mv", &z[967], x, n, n, n, e, e, e, 0x0, f},
3545 {"mil.mv", &z[967], x, n, n, n, e, e, e, 0x0, f},
3546 {"museum.mv", &z[967], x, n, n, n, e, e, e, 0x0, f},
3547 {"name.mv", &z[967], x, n, n, n, e, e, e, 0x0, f},
3548 {"net.mv", &z[967], x, s{"mv-ns.anycast.pch.net", "ns.net.mv", "ns2.dhivehinet.net.mv"}, n, n, e, e, e, 0x0, f},
3549 {"org.mv", &z[967], x, s{"mv-ns.anycast.pch.net", "ns.org.mv", "ns2.dhivehinet.net.mv"}, n, n, e, e, e, 0x0, f},
3550 {"pro.mv", &z[967], x, s{"host13.dhivehinet.net.mv"}, n, n, e, e, e, 0x0, f},
3551 {"ac.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3552 {"co.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3553 {"com.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3554 {"coop.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "pch1.nic.mw", "rip.psg.com", "rip.psg.mw"}, n, n, e, e, e, 0x0, f},
3555 {"edu.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3556 {"gov.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3557 {"int.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "pch1.nic.mw", "rip.psg.com", "rip.psg.mw"}, n, n, e, e, e, 0x0, f},
3558 {"museum.mw", &z[968], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, f},
3559 {"net.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3560 {"org.mw", &z[968], x, s{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
3561 {"com.mx", &z[969], x, s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, e, e, e, 0x0, f},
3562 {"edu.mx", &z[969], x, s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, e, e, e, 0x0, f},
3563 {"gob.mx", &z[969], x, s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, e, e, e, 0x0, f},
3564 {"net.mx", &z[969], x, s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, e, e, e, 0x0, f},
3565 {"org.mx", &z[969], x, s{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, e, e, e, 0x0, f},
3566 {"com.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, "http://about.museum/", 0x0, t},
3567 {"edi.my", &z[970], x, n, n, n, e, e, e, 0x800, t},
3568 {"edu.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
3569 {"gov.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
3570 {"mil.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
3571 {"name.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
3572 {"net.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
3573 {"org.my", &z[970], x, s{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, e, e, e, 0x0, f},
3574 {"ac.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, f},
3575 {"adv.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, f},
3576 {"co.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, f},
3577 {"edu.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, f},
3578 {"gov.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, f},
3579 {"net.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, t},
3580 {"org.mz", &z[971], x, s{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, e, e, e, 0x0, f},
3581 {"alt.na", &z[973], x, s{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, e, e, e, 0x0, f},
3582 {"cc.na", &z[973], x, s{"beau.ns.cloudflare.com", "reza.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
3583 {"co.na", &z[973], x, s{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.net", "secdns1.posix.co.za"}, n, n, e, e, e, 0x0, f},
3584 {"com.na", &z[973], x, s{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net"}, n, n, e, e, e, 0x0, f},
3585 {"dr.na", &z[973], x, s{"ns1.click.na", "ns2.click.na"}, n, n, e, e, e, 0x0, f},
3586 {"edu.na", &z[973], x, s{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, e, e, e, 0x0, f},
3587 {"in.na", &z[973], x, s{"ns21.cloudns.net", "ns22.cloudns.net", "ns23.cloudns.net", "ns24.cloudns.net"}, n, n, e, e, e, 0x0, f},
3588 {"info.na", &z[973], x, s{"clint.ns.cloudflare.com", "jocelyn.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
3589 {"mobi.na", &z[973], x, n, n, n, e, e, e, 0x0, f},
3590 {"name.na", &z[973], x, n, n, n, e, e, e, 0x0, f},
3591 {"net.na", &z[973], x, s{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, e, e, e, 0x0, f},
3592 {"of.na", &z[973], x, n, n, n, e, e, e, 0x0, f},
3593 {"or.na", &z[973], x, n, n, n, e, e, e, 0x0, f},
3594 {"org.na", &z[973], x, s{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, e, e, e, 0x0, f},
3595 {"pro.na", &z[973], x, n, n, n, e, e, e, 0x800, f},
3596 {"school.na", &z[973], x, s{"beau.ns.cloudflare.com", "reza.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
3597 {"tv.na", &z[973], x, n, n, n, e, e, e, 0x0, f},
3598 {"ws.na", &z[973], x, n, n, n, e, e, e, 0x0, f},
3599 {"kyrylkov.name", &z[977], x, n, n, n, e, e, e, 0x0, t},
3600 {"puig.name", &z[977], x, n, n, n, e, e, e, 0x0, t},
3601 {"santos.name", &z[977], x, n, n, n, e, e, e, 0x0, t},
3602 {"asso.nc", &z[983], x, s{"any-ns1.nc", "ns1.nc", "ns2.nc"}, n, n, e, e, e, 0x0, f},
3603 {"com.nc", &z[983], x, n, n, n, e, e, e, 0x0, t},
3604 {"nom.nc", &z[983], x, s{"any-ns1.nc", "ns1.nc", "ns2.nc"}, n, n, e, e, e, 0x0, f},
3605 {"com.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
3606 {"info.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
3607 {"int.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
3608 {"org.ne", &z[984], x, s{"sdns2.ovh.net", "vps241916.ovh.net"}, n, n, e, e, e, 0x0, f},
3609 {"perso.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
3610 {"1x.net", &z[986], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "1x.net"}, n, e, e, e, 0x200, t},
3611 {"auz.net", &z[986], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x0, f},
3612 {"gb.net", &z[986], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "gb.net"}, n, "whois.centralnic.com", e, e, 0x0, t},
3613 {"hu.net", &z[986], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "hu.net"}, n, "whois.centralnic.com", e, e, 0x0, f},
3614 {"in.net", &z[986], x, s{"ns1.nic.in.net", "ns2.nic.in.net", "ns3.nic.in.net", "ns4.nic.in.net"}, n, n, "whois.centralnic.com", e, e, 0x0, f},
3615 {"jp.net", &z[986], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"205.164.14.88"}, n, "whois.centralnic.com", e, e, 0x0, f},
3616 {"ru.net", &z[986], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
3617 {"se.net", &z[986], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "se.net"}, n, "whois.centralnic.com", e, e, 0x0, t},
3618 {"uk.net", &z[986], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "uk.net"}, n, "whois.centralnic.com", e, e, 0x0, t},
3619 {"za.net", &z[986], x, s{"igubu.saix.net", "ns0.is.co.za", "ns0.plig.net", "ns1.plig.net", "ns2.plig.net", "ns3.iafrica.com"}, n, n, "whois.za.net", e, e, 0x0, t},
3620 {"arts.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3621 {"com.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3622 {"firm.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3623 {"info.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3624 {"net.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3625 {"org.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3626 {"other.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3627 {"per.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3628 {"rec.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3629 {"store.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3630 {"us.nf", &z[998], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "us.nf"}, n, e, e, e, 0x200, t},
3631 {"web.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
3632 {"com.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3633 {"edu.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3634 {"gov.ng", &z[1000], z[5079:5080], s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3635 {"i.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, t},
3636 {"mil.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, t},
3637 {"mobi.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3638 {"name.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3639 {"net.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3640 {"org.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3641 {"sch.ng", &z[1000], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
3642 {"ac.ni", &z[1003], x, s{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3643 {"biz.ni", &z[1003], x, s{"auth01.ns.uu.net", "dns-ext.nic.cr", "dns.nic.cr", "ns.ibw.com.ni", "ns.ideay.net.ni", "ns.ni", "ns.tmx.com.ni", "ns.uu.net", "ns1.bb-online.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3644 {"co.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3645 {"com.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3646 {"edu.ni", &z[1003], x, s{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3647 {"gob.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3648 {"gov.ni", &z[1003], x, n, n, n, e, e, e, 0x0, t},
3649 {"in.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3650 {"info.ni", &z[1003], x, s{"auth01.ns.uu.net", "dns-ext.nic.cr", "dns.nic.cr", "ns.ibw.com.ni", "ns.ideay.net.ni", "ns.ni", "ns.tmx.com.ni", "ns.uu.net", "ns1.bb-online.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3651 {"int.ni", &z[1003], x, s{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns1.bb-online.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3652 {"mil.ni", &z[1003], x, s{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3653 {"net.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3654 {"nom.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3655 {"org.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3656 {"web.ni", &z[1003], x, s{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, e, e, e, 0x0, f},
3657 {"24.nl", &z[1010], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.nl"}, n, e, e, e, 0x200, t},
3658 {"co.nl", &z[1010], x, s{"a.nic.co.nl", "b.nic.co.nl", "c.nic.co.nl", "d.nic.co.nl"}, n, n, e, e, e, 0x200, f},
3659 {"com.nl", &z[1010], x, s{"ns1.com.nl", "ns2.com.nl"}, s{"185.85.211.136"}, n, e, e, e, 0x200, f},
3660 {"net.nl", &z[1010], x, s{"ns1.com.nl", "ns2.com.nl"}, s{"185.85.211.136"}, n, e, e, e, 0x200, f},
3661 {"nom.nl", &z[1010], x, s{"ns1.hostnet.nl", "ns2.hostnetbv.com", "ns3.hostnetbv.nl"}, s{"136.144.154.12"}, n, e, e, e, 0x0, f},
3662 {"punt.nl", &z[1010], x, s{"ns1.metaregistrar.nl", "ns2.metaregistrar.nl"}, s{"2a05:d018:964:c0a:a58f:6b32:e401:3d8a", "34.240.216.169", "hosting-1a.mijndomein-ws.nl"}, n, e, e, "http://punt.nl", 0x200, f},
3663 {"co.no", &z[1011], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, e, e, "http://www.norid.no/index.en.html", 0x0, t},
3664 {"fhs.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3665 {"folkebibl.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3666 {"fylkesbibl.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3667 {"gs.no", &z[1011], x, s{"ns1.hyp.net", "ns2.hyp.net", "ns3.hyp.net"}, n, n, e, e, e, 0x0, f},
3668 {"idrett.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3669 {"museum.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3670 {"priv.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3671 {"uenorge.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3672 {"vgs.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
3673 {"academy.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3674 {"accountants.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3675 {"actor.np", &z[1019], x, s{"manaslu.mos.com.np", "np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np", "sungava.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3676 {"aero.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3677 {"agency.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3678 {"asia.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3679 {"associates.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3680 {"audio.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3681 {"bar.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3682 {"bargains.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3683 {"beer.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3684 {"bid.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3685 {"bike.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3686 {"bio.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3687 {"biz.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3688 {"black.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3689 {"blue.np", &z[1019], x, s{"np-ns.npix.net.np", "pch.nnic.np", "sec2.apnic.net"}, n, n, e, e, "https://register.com.np", 0x0, f},
3690 {"boutique.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3691 {"build.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3692 {"builders.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3693 {"buzz.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3694 {"cab.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3695 {"camera.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3696 {"camp.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3697 {"capital.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3698 {"cards.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3699 {"care.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3700 {"careers.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3701 {"cash.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3702 {"catering.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3703 {"center.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3704 {"ceo.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3705 {"christmas.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3706 {"clinic.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3707 {"clothing.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3708 {"club.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3709 {"codes.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3710 {"coffee.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3711 {"college.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3712 {"com.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3713 {"community.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3714 {"company.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3715 {"computer.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3716 {"cool.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3717 {"coop.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np", "sungava.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3718 {"country.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3719 {"credit.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3720 {"creditcard.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3721 {"dental.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3722 {"diamonds.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3723 {"edu.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns2.cosmicnepal.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3724 {"email.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3725 {"engineering.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3726 {"estate.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3727 {"events.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3728 {"expert.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3729 {"finance.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3730 {"financial.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3731 {"fish.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3732 {"fishing.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3733 {"fitness.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3734 {"flights.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3735 {"florist.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3736 {"fund.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3737 {"furniture.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3738 {"futbol.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3739 {"gallery.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3740 {"gov.np", &z[1019], x, s{"koshi.nitc.gov.np", "mechi.nitc.gov.np", "np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns-np.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "http://nitc.gov.np", 0x0, f},
3741 {"guitars.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3742 {"guru.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3743 {"hiphop.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3744 {"hiv.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3745 {"house.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3746 {"industries.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3747 {"info.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3748 {"ink.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3749 {"jobs.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3750 {"limited.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3751 {"link.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3752 {"management.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3753 {"marketing.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3754 {"media.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3755 {"menu.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3756 {"mil.np", &z[1019], x, s{"np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3757 {"mobi.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3758 {"museum.np", &z[1019], x, s{"np-ns.npix.net.np", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3759 {"name.np", &z[1019], x, s{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3760 {"net.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3761 {"ninja.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3762 {"onl.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3763 {"org.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3764 {"partners.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3765 {"parts.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3766 {"photo.np", &z[1019], x, s{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3767 {"photos.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3768 {"pics.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3769 {"pink.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3770 {"pro.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3771 {"productions.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3772 {"products.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3773 {"properties.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3774 {"pub.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3775 {"red.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3776 {"rentals.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3777 {"repair.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3778 {"rest.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3779 {"rocks.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3780 {"services.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3781 {"shiksha.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3782 {"shoes.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3783 {"social.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3784 {"solar.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3785 {"solutions.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3786 {"space.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3787 {"supplies.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3788 {"supply.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3789 {"support.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3790 {"surf.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3791 {"surgery.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3792 {"systems.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3793 {"tattoo.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3794 {"tax.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3795 {"technology.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3796 {"tel.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3797 {"tips.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3798 {"today.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net"}, n, n, e, e, "https://register.com.np", 0x0, f},
3799 {"tools.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3800 {"town.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3801 {"trade.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3802 {"training.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3803 {"travel.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3804 {"university.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3805 {"vacations.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3806 {"ventures.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3807 {"villas.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3808 {"vision.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3809 {"vodka.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3810 {"voting.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3811 {"voyage.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3812 {"watch.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3813 {"webcam.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3814 {"wiki.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3815 {"works.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3816 {"wtf.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3817 {"xyz.np", &z[1019], x, s{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, e, e, "https://register.com.np", 0x0, f},
3818 {"zone.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
3819 {"biz.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, e, e, e, 0x0, f},
3820 {"com.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
3821 {"edu.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, e, e, e, 0x0, f},
3822 {"gov.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
3823 {"info.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, e, e, e, 0x0, f},
3824 {"net.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
3825 {"org.nr", &z[1020], x, s{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, e, e, e, 0x0, f},
3826 {"co.nu", &z[1024], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "co.nu"}, n, e, e, e, 0x200, t},
3827 {"com.nu", &z[1024], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "com.nu"}, n, e, e, e, 0x200, t},
3828 {"eu.nu", &z[1024], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "eu.nu"}, n, e, e, e, 0x200, t},
3829 {"ie.nu", &z[1024], x, s{"brain.bb-online.co.uk", "ns1.bb-online.net", "ns2.bb-online.net", "ns5.bb-online.net"}, n, n, e, e, e, 0x0, t},
3830 {"info.nu", &z[1024], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "info.nu"}, n, e, e, e, 0x200, t},
3831 {"ac.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3832 {"co.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3833 {"cri.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3834 {"geek.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3835 {"gen.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3836 {"govt.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3837 {"health.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, t},
3838 {"iwi.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3839 {"kiwi.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3840 {"maori.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3841 {"mil.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3842 {"net.nz", &z[1026], z[5080:5081], s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3843 {"org.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3844 {"parliament.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3845 {"school.nz", &z[1026], x, s{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, e, e, e, 0x0, f},
3846 {"ac.om", &z[1037], x, n, n, n, e, e, e, 0x0, f},
3847 {"biz.om", &z[1037], x, n, n, n, e, e, e, 0x0, f},
3848 {"co.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3849 {"com.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3850 {"edu.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3851 {"gov.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3852 {"med.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3853 {"mil.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3854 {"museum.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3855 {"net.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3856 {"org.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3857 {"pro.om", &z[1037], x, s{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, e, e, e, 0x0, f},
3858 {"sch.om", &z[1037], x, n, n, n, e, e, e, 0x0, f},
3859 {"ae.org", &z[1048], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "ae.org"}, n, "whois.centralnic.com", e, e, 0x0, t},
3860 {"eu.org", &z[1048], z[5081:5133], s{"auth1.dns.elm.net", "dns4.gandi.net", "gra.wolfhugel.eu", "hobbes.bsd-dk.dk", "ns.bortzmeyer.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net", "wombat.billaud.eu.org"}, n, n, "whois.eu.org", e, e, 0x0, t},
3861 {"hk.org", &z[1048], x, s{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, "whois.registry.hk.com", e, e, 0x0, f},
3862 {"js.org", &z[1048], x, s{"miles.ns.cloudflare.com", "pam.ns.cloudflare.com"}, n, n, e, e, e, 0x0, t},
3863 {"us.org", &z[1048], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, s{"54.153.56.183", "us.org"}, n, "whois.centralnic.com", e, e, 0x0, f},
3864 {"za.org", &z[1048], x, s{"igubu.saix.net", "ns0.is.co.za", "ns0.plig.net", "ns1.plig.net", "ns2.plig.net", "ns3.iafrica.com", "ns4.iafrica.com"}, n, n, "whois.za.org", e, e, 0x0, t},
3865 {"abo.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3866 {"ac.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3867 {"com.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3868 {"edu.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3869 {"gob.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3870 {"ing.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3871 {"med.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3872 {"net.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3873 {"nom.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3874 {"org.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3875 {"sld.pa", &z[1058], x, s{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
3876 {"com.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3877 {"edu.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3878 {"gob.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3879 {"gov.pe", &z[1074], x, n, n, n, e, e, e, 0x0, t},
3880 {"mil.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3881 {"net.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3882 {"nom.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3883 {"org.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, f},
3884 {"sld.pe", &z[1074], x, s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, e, e, e, 0x0, t},
3885 {"asso.pf", &z[1078], x, n, n, n, e, e, e, 0x0, f},
3886 {"com.pf", &z[1078], x, n, n, n, e, e, e, 0x0, f},
3887 {"edu.pf", &z[1078], x, n, n, n, e, e, e, 0x0, f},
3888 {"gov.pf", &z[1078], x, s{"ns1.gov.pf", "ns1.mana.pf", "ns2.gov.pf", "ns2.mana.pf", "reverse.gov.pf"}, n, n, e, e, e, 0x0, f},
3889 {"org.pf", &z[1078], x, n, n, n, e, e, e, 0x0, f},
3890 {"ac.pg", &z[1080], x, n, n, n, e, e, e, 0x0, f},
3891 {"com.pg", &z[1080], x, n, n, n, e, e, e, 0x0, f},
3892 {"gov.pg", &z[1080], x, n, n, n, e, e, e, 0x0, f},
3893 {"mil.pg", &z[1080], x, n, n, n, e, e, e, 0x0, f},
3894 {"net.pg", &z[1080], x, n, n, n, e, e, e, 0x0, f},
3895 {"org.pg", &z[1080], x, n, n, n, e, e, e, 0x0, f},
3896 {"com.ph", &z[1081], x, n, s{"45.79.222.138"}, n, e, e, e, 0x0, f},
3897 {"edi.ph", &z[1081], x, s{"ns1.dp47.parklogic.com", "ns2.dp47.parklogic.com", "ns3.dp47.parklogic.com", "ns4.dp47.parklogic.com", "ns5.dp47.parklogic.com"}, s{"72.52.179.175", "edi.ph"}, n, e, e, e, 0x0, t},
3898 {"edu.ph", &z[1081], x, s{"evans.gov.ph", "gabriela.ph.net", "gomez.ph.net", "ph.wegen-energy.com"}, n, n, e, e, e, 0x0, f},
3899 {"gov.ph", &z[1081], x, s{"gabriela.ph.net", "gomez.ph.net", "ns1.gov.ph", "ns2.gov.ph"}, n, n, e, e, e, 0x0, f},
3900 {"i.ph", &z[1081], x, s{"nsi1.domains.ph", "nsi2.domains.ph"}, n, n, e, e, e, 0x0, f},
3901 {"mil.ph", &z[1081], x, n, s{"45.79.222.138"}, n, e, e, e, 0x0, f},
3902 {"net.ph", &z[1081], x, n, s{"45.79.222.138"}, n, e, e, e, 0x0, f},
3903 {"ngo.ph", &z[1081], x, n, s{"45.79.222.138"}, n, e, e, e, 0x0, f},
3904 {"org.ph", &z[1081], x, n, s{"45.79.222.138"}, n, e, e, e, 0x0, f},
3905 {"biz.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3906 {"com.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3907 {"edu.pk", &z[1102], x, n, n, n, e, e, e, 0x0, t},
3908 {"fam.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3909 {"gkp.pk", &z[1102], x, n, n, n, e, e, e, 0x0, t},
3910 {"gob.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3911 {"gog.pk", &z[1102], x, n, n, n, e, e, e, 0x0, t},
3912 {"gok.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3913 {"gon.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3914 {"gop.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3915 {"gos.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3916 {"gov.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3917 {"net.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3918 {"org.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3919 {"web.pk", &z[1102], x, n, n, n, e, e, e, 0x0, f},
3920 {"agro.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, "http://tld.by/", 0x0, f},
3921 {"aid.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3922 {"art.pl", &z[1103], x, s{"bilbo.nask.org.pl", "hermes.sgh.waw.pl", "ns.tpnet.pl", "ns1.agh.edu.pl", "ns1.net.icm.edu.pl", "ns2.net.icm.edu.pl"}, n, n, e, e, e, 0x0, f},
3923 {"atm.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3924 {"augustow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3925 {"auto.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3926 {"babia-gora.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3927 {"bedzin.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3928 {"beskidy.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3929 {"bialowieza.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, t},
3930 {"bialystok.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3931 {"bielawa.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3932 {"bieszczady.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3933 {"biz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3934 {"boleslawiec.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3935 {"bydgoszcz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3936 {"bytom.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3937 {"ciesyn.pl", &z[1103], x, n, n, n, e, e, e, 0x0, t},
3938 {"cieszyn.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3939 {"co.pl", &z[1103], x, s{"ns1.co.pl", "ns2.co.pl"}, n, n, "whois.co.pl", e, e, 0x0, t},
3940 {"com.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3941 {"czeladz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3942 {"czest.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3943 {"dlugoleka.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3944 {"edu.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3945 {"elblag.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3946 {"elk.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3947 {"gda.pl", &z[1103], x, s{"bilbo.nask.org.pl", "ns.tpnet.pl", "ns1.task.gda.pl", "ns2.task.gda.pl"}, n, n, e, e, e, 0x0, f},
3948 {"gdansk.pl", &z[1103], x, s{"bilbo.nask.org.pl", "ns.tpnet.pl", "ns1.task.gda.pl", "ns2.task.gda.pl"}, n, n, e, e, e, 0x0, f},
3949 {"glogow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3950 {"gmina.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3951 {"gniezno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3952 {"gniezon.pl", &z[1103], x, n, n, n, e, e, e, 0x0, t},
3953 {"gorlice.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3954 {"gov.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3955 {"grajewo.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3956 {"gsm.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3957 {"ilawa.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3958 {"info.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3959 {"jaworzno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3960 {"jaworzono.pl", &z[1103], x, n, n, n, e, e, e, 0x0, t},
3961 {"jelenia-gora.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3962 {"jgora.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3963 {"kalisz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3964 {"karpacz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3965 {"kartuzy.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3966 {"kaszuby.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3967 {"katowice.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3968 {"kazimierz-dolny.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3969 {"kepno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3970 {"ketrzyn.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3971 {"klodzko.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3972 {"kobierzyce.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3973 {"kolobrzeg.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3974 {"konin.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3975 {"konskowola.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3976 {"krakow.pl", &z[1103], x, s{"bilbo.nask.org.pl", "dns.fuw.edu.pl", "info.cyf-kr.edu.pl", "nms.cyf-kr.edu.pl"}, n, n, e, e, e, 0x0, f},
3977 {"ksazuby.pl", &z[1103], x, n, n, n, e, e, e, 0x0, t},
3978 {"kutno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3979 {"lapy.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3980 {"lebork.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3981 {"legnica.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3982 {"lezajsk.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3983 {"limanowa.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3984 {"lodz.pl", &z[1103], x, s{"dns.man.lodz.pl", "dns2.man.lodz.pl", "dns4.man.lodz.pl", "ns1.tpnet.pl"}, n, n, e, e, e, 0x0, f},
3985 {"lomza.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3986 {"lowicz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3987 {"lubin.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3988 {"lublin.pl", &z[1103], x, s{"bilbo.nask.org.pl", "ns1.lublin.pl", "ns2.lublin.pl"}, n, n, e, e, e, 0x0, f},
3989 {"lukow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3990 {"mail.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3991 {"malbork.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3992 {"malopolska.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3993 {"mazowsze.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3994 {"mazury.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3995 {"media.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3996 {"miasta.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3997 {"mielec.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3998 {"mielno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
3999 {"mil.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4000 {"mragowo.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4001 {"naklo.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4002 {"net.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4003 {"ngo.pl", &z[1103], x, s{"ns1.ngo.pl", "ns2.ngo.pl"}, n, n, e, e, e, 0x0, f},
4004 {"nieruchomosci.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4005 {"nom.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4006 {"nowaruda.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4007 {"nysa.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4008 {"olawa.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4009 {"olecko.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4010 {"olkusz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4011 {"olsztyn.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4012 {"opoczno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4013 {"opole.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4014 {"org.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4015 {"ostroda.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4016 {"ostroleka.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4017 {"ostrowiec.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4018 {"ostrowwlkp.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4019 {"pc.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4020 {"pila.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4021 {"pisz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4022 {"podhale.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4023 {"podlasie.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4024 {"polkowice.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4025 {"pomorskie.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4026 {"pomorze.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4027 {"powiat.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4028 {"poznan.pl", &z[1103], x, s{"bilbo.nask.org.pl", "dns.amu.edu.pl", "dns3.amu.edu.pl", "kirdan.nask.net.pl"}, n, n, e, e, e, 0x0, f},
4029 {"priv.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4030 {"prochowice.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4031 {"pruszkow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4032 {"przeworsk.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4033 {"pulawy.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4034 {"radom.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4035 {"rawa-maz.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4036 {"realestate.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4037 {"rel.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4038 {"rybnik.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4039 {"rzeszow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4040 {"sanok.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4041 {"sejny.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4042 {"sex.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x1, f},
4043 {"shop.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4044 {"sklep.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4045 {"skoczow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4046 {"slask.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4047 {"slupsk.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4048 {"sos.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4049 {"sosnowiec.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4050 {"stalowa-wola.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4051 {"starachowice.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4052 {"stargard.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4053 {"suwalki.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4054 {"swidnica.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4055 {"swiebodzin.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4056 {"swinoujscie.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4057 {"szczecin.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4058 {"szczytno.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4059 {"szkola.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4060 {"targi.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4061 {"tarnobrzeg.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4062 {"tgory.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4063 {"tm.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4064 {"torun.pl", &z[1103], x, s{"bilbo.nask.org.pl", "blackbox.uci.uni.torun.pl", "flis.man.torun.pl", "koala.uci.uni.torun.pl"}, n, n, e, e, e, 0x0, f},
4065 {"tourism.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4066 {"travel.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4067 {"turek.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4068 {"turystyka.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4069 {"tychy.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4070 {"ustka.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4071 {"walbrzych.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4072 {"warmia.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4073 {"warszawa.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4074 {"waw.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4075 {"wegrow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4076 {"wielun.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4077 {"wlocl.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4078 {"wloclawek.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4079 {"wodzislaw.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4080 {"wolomin.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4081 {"wroc.pl", &z[1103], x, s{"bilbo.nask.org.pl", "kirdan.nask.net.pl", "ldhpux.immt.pwr.wroc.pl", "ns1.net.icm.edu.pl", "sun2.pwr.wroc.pl", "wask.wask.wroc.pl"}, n, n, e, e, e, 0x0, f},
4082 {"wroclaw.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4083 {"zachpomor.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4084 {"zagan.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4085 {"zarow.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4086 {"zgora.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4087 {"zgorzelec.pl", &z[1103], x, s{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, e, e, e, 0x0, f},
4088 {"at.pn", &z[1110], z[5133:5134], n, n, n, e, e, e, 0x0, f},
4089 {"au.pn", &z[1110], z[5134:5135], n, n, n, e, e, e, 0x0, f},
4090 {"ca.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
4091 {"ch.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
4092 {"cn.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
4093 {"co.pn", &z[1110], x, s{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, e, e, e, 0x0, f},
4094 {"de.pn", &z[1110], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4095 {"edu.pn", &z[1110], x, s{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, e, e, e, 0x0, f},
4096 {"es.pn", &z[1110], x, s{"ns-1377.awsdns-44.org", "ns-1574.awsdns-04.co.uk", "ns-29.awsdns-03.com", "ns-723.awsdns-26.net"}, n, n, e, e, e, 0x0, f},
4097 {"eu.pn", &z[1110], x, n, n, n, e, e, e, 0x800, f},
4098 {"fr.pn", &z[1110], x, n, n, n, e, e, e, 0x800, f},
4099 {"gov.pn", &z[1110], x, s{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, e, e, e, 0x0, f},
4100 {"in.pn", &z[1110], x, s{"ns-1425.awsdns-50.org", "ns-1677.awsdns-17.co.uk", "ns-441.awsdns-55.com", "ns-906.awsdns-49.net"}, n, n, e, e, e, 0x0, t},
4101 {"it.pn", &z[1110], x, s{"ns1.speedydns.net", "ns2.speedydns.net"}, n, n, e, e, e, 0x0, f},
4102 {"jp.pn", &z[1110], x, n, n, n, e, e, e, 0x800, f},
4103 {"net.pn", &z[1110], x, s{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, e, e, e, 0x0, f},
4104 {"org.pn", &z[1110], x, s{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, e, e, e, 0x0, f},
4105 {"uk.pn", &z[1110], z[5135:5136], n, n, n, e, e, e, 0x800, f},
4106 {"us.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
4107 {"ac.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4108 {"ag.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4109 {"ai.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4110 {"alumni.pr", &z[1118], x, s{"descartes.nic.pr", "golomb.nic.pr", "pascal.nic.pr", "pr-dns.denic.de", "pr-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, t},
4111 {"at.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4112 {"au.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4113 {"aw.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4114 {"bb.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4115 {"biz.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4116 {"bm.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4117 {"br.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4118 {"bs.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4119 {"ch.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4120 {"cl.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4121 {"cn.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4122 {"com.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4123 {"de.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4124 {"dm.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4125 {"do.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4126 {"edu.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4127 {"en.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4128 {"es.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4129 {"est.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4130 {"eu.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4131 {"exalumnos.pr", &z[1118], x, s{"descartes.nic.pr", "golomb.nic.pr", "pascal.nic.pr", "pr-dns.denic.de", "pr-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, t},
4132 {"fr.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4133 {"gd.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4134 {"gov.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4135 {"gp.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4136 {"ht.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4137 {"info.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4138 {"isla.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4139 {"it.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4140 {"jm.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4141 {"jp.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4142 {"ky.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4143 {"lc.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4144 {"ms.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4145 {"mx.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4146 {"name.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4147 {"net.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4148 {"nl.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4149 {"nom.pr", &z[1118], x, n, n, n, e, e, e, 0x0, f},
4150 {"org.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4151 {"pro.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4152 {"prof.pr", &z[1118], x, s{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4153 {"tc.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4154 {"tt.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4155 {"uk.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4156 {"us.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4157 {"vg.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4158 {"vi.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
4159 {"aaa.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4160 {"aca.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4161 {"acct.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4162 {"arc.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4163 {"avocat.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4164 {"bar.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4165 {"bus.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4166 {"cfp.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4167 {"chi.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4168 {"chiro.pro", &z[1123], x, s{"dns111.ovh.net", "ns111.ovh.net"}, n, n, e, e, e, 0x0, f},
4169 {"cpa.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4170 {"dds.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4171 {"den.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4172 {"dent.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4173 {"ed.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4174 {"eng.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4175 {"jur.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4176 {"law.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4177 {"med.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4178 {"min.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4179 {"nitr.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4180 {"nur.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4181 {"nurse.pro", &z[1123], x, s{"park1.encirca.net", "park2.encirca.net"}, s{"107.23.61.162", "52.207.204.172", "52.70.72.251", "54.87.195.23"}, n, e, e, e, 0x0, f},
4182 {"opt.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4183 {"pa.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4184 {"pha.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4185 {"pharma.pro", &z[1123], x, s{"ns1.sedoparking.com", "ns2.sedoparking.com"}, s{"91.195.241.136"}, n, e, e, e, 0x0, f},
4186 {"pod.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4187 {"pr.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4188 {"prof.pro", &z[1123], x, s{"dns1.encirca.net", "dns2.encirca.net"}, n, n, e, e, e, 0x0, f},
4189 {"prx.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4190 {"pt.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
4191 {"recht.pro", &z[1123], x, s{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4192 {"rel.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4193 {"teach.pro", &z[1123], x, s{"curitiba.porkbun.com", "fortaleza.porkbun.com", "maceio.porkbun.com", "salvador.porkbun.com"}, s{"44.227.76.166", "pixie.porkbun.com"}, n, e, e, e, 0x0, f},
4194 {"vet.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
4195 {"com.ps", &z[1134], x, s{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, e, e, "http://www.pnina.ps/domains/registration-policy/", 0x0, f},
4196 {"edu.ps", &z[1134], x, s{"dns1.gov.ps", "dns3.gov.ps", "dns4.pna.ps", "ns1.gov.ps", "ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps"}, n, n, e, e, "http://www.tonic.to/", 0x0, f},
4197 {"gov.ps", &z[1134], x, s{"dns1.gov.ps", "ns1.gov.ps", "ns1.palgov.net"}, n, n, e, e, e, 0x0, f},
4198 {"mobi.ps", &z[1134], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "mobi.ps"}, n, e, e, e, 0x200, t},
4199 {"mun.ps", &z[1134], x, s{"dns1.gov.ps", "dns2.gov.ps", "ns1.gov.ps", "ns2.pnina.ps"}, n, n, e, e, e, 0x0, f},
4200 {"net.ps", &z[1134], x, s{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4201 {"org.ps", &z[1134], x, s{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4202 {"plo.ps", &z[1134], x, s{"dns3.gov.ps", "dns4.pna.ps"}, n, n, e, e, e, 0x0, t},
4203 {"sch.ps", &z[1134], x, s{"dns1.gov.ps", "dns3.gov.ps", "ns1.gov.ps", "ns1.pnina.ps", "ns2.pnina.ps"}, n, n, e, e, e, 0x0, f},
4204 {"co.pt", &z[1135], x, s{"os1.eurotux.com", "os3.eurotux.com"}, s{"195.22.20.163"}, n, e, e, e, 0x0, t},
4205 {"com.pt", &z[1135], x, n, n, n, e, e, e, 0x0, t},
4206 {"edu.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
4207 {"gov.pt", &z[1135], x, s{"a.dns.pt", "dns1.gov.pt", "europe1.dnsnode.net", "ns02.fccn.pt", "nsp.dnsnode.net"}, n, n, e, e, e, 0x0, f},
4208 {"int.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
4209 {"net.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
4210 {"nome.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
4211 {"org.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
4212 {"publ.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
4213 {"belau.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, f},
4214 {"co.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
4215 {"com.pw", &z[1137], x, s{"ns13.xincache.com", "ns14.xincache.com"}, n, n, e, e, e, 0x0, f},
4216 {"ed.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
4217 {"edu.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
4218 {"go.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
4219 {"gov.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, f},
4220 {"ne.pw", &z[1137], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, t},
4221 {"net.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, f},
4222 {"or.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
4223 {"org.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, f},
4224 {"com.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4225 {"coop.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4226 {"edu.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4227 {"gov.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4228 {"mil.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4229 {"net.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4230 {"org.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4231 {"una.py", &z[1139], x, s{"b.dns.py", "c.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, e, e, e, 0x0, f},
4232 {"com.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, f},
4233 {"edu.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, t},
4234 {"gov.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, t},
4235 {"mil.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, t},
4236 {"name.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, f},
4237 {"net.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, f},
4238 {"org.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, t},
4239 {"sch.qa", &z[1140], x, s{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, e, e, e, 0x0, t},
4240 {"asso.re", &z[1150], x, n, n, n, e, e, e, 0x0, f},
4241 {"com.re", &z[1150], x, n, n, n, e, e, e, 0x0, f},
4242 {"nom.re", &z[1150], x, n, n, n, e, e, e, 0x0, f},
4243 {"arts.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4244 {"co.ro", &z[1185], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, e, e, e, 0x0, f},
4245 {"com.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4246 {"firm.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4247 {"info.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4248 {"ne.ro", &z[1185], x, s{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, s{"185.27.255.9", "now.co.ro"}, n, e, e, e, 0x0, f},
4249 {"nom.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4250 {"nt.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4251 {"or.ro", &z[1185], x, s{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, s{"185.27.255.9", "now.co.ro"}, n, e, e, e, 0x0, f},
4252 {"org.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4253 {"rec.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4254 {"ro.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4255 {"sa.ro", &z[1185], x, s{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, s{"185.27.255.9", "now.co.ro"}, n, e, e, e, 0x0, f},
4256 {"srl.ro", &z[1185], x, s{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, s{"185.27.255.9", "now.co.ro"}, n, e, e, e, 0x0, f},
4257 {"store.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4258 {"tm.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4259 {"www.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
4260 {"ac.rs", &z[1194], x, s{"ban.junis.ni.ac.rs", "gaea.rcub.bg.ac.rs", "ns.etf.bg.ac.rs", "ns.rcub.bg.ac.rs", "ns.unic.kg.ac.rs", "ns1.uns.ac.rs", "ns2.iif.hu", "odisej.telekom.rs"}, n, n, e, e, e, 0x0, t},
4261 {"co.rs", &z[1194], x, s{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, e, e, e, 0x0, f},
4262 {"edu.rs", &z[1194], x, s{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, e, e, e, 0x0, f},
4263 {"gov.rs", &z[1194], x, s{"dagda1.isp.telekom.rs", "ns1.gov.rs", "ns1.nic.rs", "ns2.gov.rs"}, n, n, e, e, e, 0x0, f},
4264 {"in.rs", &z[1194], x, s{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, e, e, e, 0x0, f},
4265 {"org.rs", &z[1194], x, s{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, e, e, e, 0x0, f},
4266 {"ac.ru", &z[1196], x, s{"ns-soa.darenet.dk", "ns1.free.net", "ns2.free.net"}, n, n, e, e, e, 0x0, f},
4267 {"adygeya.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4268 {"bashkiria.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4269 {"bir.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4270 {"cbg.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4271 {"com.ru", &z[1196], x, s{"ns3-com.nic.ru", "ns4-com.nic.ru", "ns8-com.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, f},
4272 {"dagestan.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4273 {"edu.ru", &z[1196], x, s{"ns.informika.ru", "ns.msu.ru", "ns.runnet.ru", "ns2.free.net", "ns2.informika.ru"}, n, n, "whois.informika.ru", e, e, 0x0, f},
4274 {"gov.ru", &z[1196], x, s{"acl.dns.ripn.net", "bcl.dns.ripn.net", "ccl.dns.ripn.net", "ns.gov.ru", "ns2.gov.ru"}, n, n, e, e, e, 0x0, f},
4275 {"grozny.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4276 {"int.ru", &z[1196], x, s{"ns.macomnet.ru", "ns2.macomnet.ru", "ns3.macomnet.ru"}, n, n, e, e, e, 0x0, f},
4277 {"kalmykia.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4278 {"kustanai.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4279 {"marine.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4280 {"mil.ru", &z[1196], x, s{"ns1.mil.ru", "ns2.mil.ru", "ns4.mil.ru"}, n, n, e, e, e, 0x0, f},
4281 {"mordovia.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4282 {"msk.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"185.76.145.93"}, n, e, e, e, 0x0, f},
4283 {"mytis.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4284 {"nalchik.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4285 {"net.ru", &z[1196], x, s{"a.dns-servers.net.ru", "b.dns-servers.net.ru", "d.dns-servers.net.ru", "e.dns-servers.net.ru", "f.dns-servers.net.ru"}, n, n, e, e, e, 0x0, f},
4286 {"nov.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4287 {"org.ru", &z[1196], x, s{"a.dns-servers.net.ru", "b.dns-servers.net.ru", "d.dns-servers.net.ru", "e.dns-servers.net.ru", "f.dns-servers.net.ru"}, n, n, e, e, e, 0x0, f},
4288 {"pp.ru", &z[1196], x, s{"a.dns-servers.net.ru", "b.dns-servers.net.ru", "d.dns-servers.net.ru", "e.dns-servers.net.ru", "f.dns-servers.net.ru"}, n, n, e, e, e, 0x0, f},
4289 {"pyatigorsk.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4290 {"relarn.ru", &z[1196], x, s{"int2.dns.ripn.net", "int3.dns.ripn.net", "ns.relarn.ru"}, n, n, e, e, e, 0x0, f},
4291 {"spb.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, f},
4292 {"vladikavkaz.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4293 {"vladimir.ru", &z[1196], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4294 {"ac.rw", &z[1200], x, s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, e, e, e, 0x0, f},
4295 {"co.rw", &z[1200], x, s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, e, e, e, 0x0, f},
4296 {"com.rw", &z[1200], x, n, n, n, e, e, e, 0x0, f},
4297 {"edu.rw", &z[1200], x, s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "pch.ricta.org.rw"}, n, n, e, e, e, 0x0, f},
4298 {"gouv.rw", &z[1200], x, n, n, n, e, e, e, 0x0, f},
4299 {"gov.rw", &z[1200], x, s{"ns1.rdb.rw", "ns2.aos.rw", "ns3.aos.rw"}, n, n, e, e, e, 0x0, f},
4300 {"int.rw", &z[1200], x, n, n, n, e, e, e, 0x0, f},
4301 {"mil.rw", &z[1200], x, s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, e, e, e, 0x0, f},
4302 {"net.rw", &z[1200], x, s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, e, e, e, 0x0, f},
4303 {"org.rw", &z[1200], x, s{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, e, e, e, 0x0, f},
4304 {"com.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4305 {"edu.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4306 {"gov.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4307 {"med.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4308 {"net.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4309 {"org.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4310 {"pub.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4311 {"sch.sa", &z[1203], x, s{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, e, e, e, 0x0, f},
4312 {"com.sb", &z[1223], x, s{"ns.cocca.fr", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4313 {"edu.sb", &z[1223], x, s{"ns.cocca.fr", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4314 {"gov.sb", &z[1223], x, s{"ns.cocca.fr", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4315 {"net.sb", &z[1223], x, s{"ns.cocca.fr", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4316 {"org.sb", &z[1223], x, s{"ns.cocca.fr", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4317 {"com.sc", &z[1226], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4318 {"edu.sc", &z[1226], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4319 {"gov.sc", &z[1226], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4320 {"net.sc", &z[1226], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4321 {"org.sc", &z[1226], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4322 {"com.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "ns1.uaenic.ae", "ns2.uaenic.ae", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4323 {"edu.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4324 {"gov.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "ns1.uaenic.ae", "ns2.uaenic.ae", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4325 {"info.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4326 {"med.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4327 {"net.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4328 {"org.sd", &z[1240], x, s{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4329 {"tv.sd", &z[1240], x, s{"ns1.domains.sd", "ns2.domains.sd"}, n, n, e, e, e, 0x0, f},
4330 {"a.se", &z[1241], x, n, n, n, e, e, e, 0x0, t},
4331 {"ac.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4332 {"b.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4333 {"bd.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4334 {"c.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4335 {"com.se", &z[1241], x, s{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, "whois.centralnic.com", e, e, 0x0, f},
4336 {"d.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4337 {"e.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4338 {"f.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4339 {"g.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4340 {"h.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4341 {"i.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4342 {"k.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4343 {"l.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4344 {"m.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4345 {"mil.se", &z[1241], x, s{"dns6.telia.com", "ns.defence.se", "ns.mil.se", "ns2.mil.se", "ns3.mil.se", "pitea.dns.swip.net"}, n, n, e, e, e, 0x0, f},
4346 {"n.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4347 {"o.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4348 {"org.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4349 {"p.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4350 {"parti.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4351 {"pp.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4352 {"press.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4353 {"r.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4354 {"s.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4355 {"t.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4356 {"tm.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4357 {"u.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4358 {"w.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4359 {"x.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4360 {"y.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4361 {"z.se", &z[1241], x, n, n, n, e, e, e, 0x0, f},
4362 {"com.sg", &z[1256], x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, e, e, e, 0x0, t},
4363 {"edu.sg", &z[1256], x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, e, e, e, 0x0, f},
4364 {"gov.sg", &z[1256], x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, e, e, e, 0x0, f},
4365 {"net.sg", &z[1256], x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, e, e, e, 0x0, f},
4366 {"org.sg", &z[1256], x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, e, e, e, 0x0, f},
4367 {"per.sg", &z[1256], x, s{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, e, e, e, 0x0, f},
4368 {"co.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4369 {"com.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4370 {"edu.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4371 {"gov.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4372 {"net.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4373 {"nom.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4374 {"org.sh", &z[1257], x, n, n, n, e, e, e, 0x800, t},
4375 {"ae.si", &z[1272], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4376 {"at.si", &z[1272], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4377 {"cn.si", &z[1272], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4378 {"co.si", &z[1272], x, s{"b.ns14.net", "c.ns14.net", "d.ns14.net", "ns.2020.si"}, n, n, e, e, e, 0x0, f},
4379 {"de.si", &z[1272], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4380 {"uk.si", &z[1272], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4381 {"us.si", &z[1272], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4382 {"com.sl", &z[1285], x, s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, e, e, e, 0x0, f},
4383 {"edu.sl", &z[1285], x, s{"ns1.neoip.com"}, n, n, e, e, e, 0x0, t},
4384 {"gov.sl", &z[1285], x, s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, e, e, e, 0x0, f},
4385 {"net.sl", &z[1285], x, s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, e, e, e, 0x0, f},
4386 {"org.sl", &z[1285], x, s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, e, e, e, 0x0, f},
4387 {"art.sn", &z[1290], x, s{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, e, e, e, 0x0, f},
4388 {"com.sn", &z[1290], x, s{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, e, e, e, 0x0, f},
4389 {"edu.sn", &z[1290], x, s{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, e, e, e, 0x0, f},
4390 {"gouv.sn", &z[1290], x, s{"ns.gouv.sn", "ns.ucad.sn", "ns2.gouv.sn", "ns3.gouv.sn"}, n, n, e, e, e, 0x0, t},
4391 {"org.sn", &z[1290], x, s{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, e, e, e, 0x0, f},
4392 {"perso.sn", &z[1290], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, f},
4393 {"univ.sn", &z[1290], x, s{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, e, e, e, 0x0, t},
4394 {"com.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
4395 {"edu.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, t},
4396 {"net.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
4397 {"org.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
4398 {"uber.space", &z[1304], x, s{"ns1.jonaspasche.com", "ns2.jonaspasche.com", "ns3.jonaspasche.com"}, n, n, e, e, e, 0x0, t},
4399 {"biz.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4400 {"com.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4401 {"edu.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "ssnic.anycastdns.cz"}, n, n, e, e, e, 0x0, t},
4402 {"me.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "root.nic.ss", "ssnic.anycastdns.cz"}, n, n, e, e, e, 0x0, t},
4403 {"net.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4404 {"org.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4405 {"sch.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "ssnic.anycastdns.cz"}, n, n, e, e, e, 0x0, t},
4406 {"co.st", &z[1314], x, s{"ns1-se.ns.gov.st", "ns1-us.ns.gov.st", "ns2-se.ns.gov.st"}, n, n, e, e, e, 0x0, f},
4407 {"com.st", &z[1314], x, s{"ns1-se.ns.gov.st", "ns1-us.ns.gov.st", "ns2-se.ns.gov.st"}, n, n, e, e, e, 0x0, f},
4408 {"consulado.st", &z[1314], x, s{"ns1.bahnhof.net", "ns2.bahnhof.net"}, n, n, e, e, e, 0x0, f},
4409 {"edu.st", &z[1314], x, s{"ns1.nic.st", "ns2.nic.st", "ns3.nic.st"}, n, n, e, e, e, 0x0, f},
4410 {"embaixada.st", &z[1314], x, s{"ns1.bahnhof.net", "ns2.bahnhof.net"}, n, n, e, e, e, 0x0, t},
4411 {"embaizada.st", &z[1314], x, n, n, n, e, e, e, 0x0, f},
4412 {"gov.st", &z[1314], x, s{"ns1.gov.st", "ns2.gov.st"}, n, n, e, e, e, 0x0, f},
4413 {"mil.st", &z[1314], x, s{"ns.bahnhof.se", "ns2.bahnhof.net"}, n, n, e, e, e, 0x0, f},
4414 {"net.st", &z[1314], x, s{"ns1.nic.st", "ns2.nic.st", "ns3.nic.st"}, n, n, e, e, e, 0x0, f},
4415 {"org.st", &z[1314], x, s{"ns1.webhosting.st", "ns2.webhosting.st"}, n, n, e, e, e, 0x0, f},
4416 {"principe.st", &z[1314], x, s{"ns1.govhost.st", "ns2.govhost.st", "ns3.govhost.st"}, n, n, e, e, e, 0x0, f},
4417 {"saotome.st", &z[1314], x, s{"ns1.govhost.st", "ns2.govhost.st"}, n, n, e, e, e, 0x0, f},
4418 {"store.st", &z[1314], x, s{"ns.bahnhof.se", "ns2.bahnhof.net"}, n, n, e, e, e, 0x0, f},
4419 {"abkhazia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4420 {"adygeya.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4421 {"aktyubinsk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4422 {"arkhangelsk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4423 {"armenia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4424 {"ashgabad.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4425 {"azerbaijan.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4426 {"balashov.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4427 {"bashkiria.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4428 {"bryansk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4429 {"bukhara.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4430 {"chimkent.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4431 {"dagestan.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4432 {"east-kazakhstan.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4433 {"exnet.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4434 {"georgia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4435 {"grozny.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4436 {"ivanovo.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4437 {"jambyl.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4438 {"kalmykia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4439 {"kaluga.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4440 {"karacol.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4441 {"karaganda.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4442 {"karelia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4443 {"khakassia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4444 {"krasnodar.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4445 {"kurgan.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4446 {"kustanai.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4447 {"lenug.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4448 {"mangyshlak.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4449 {"mordovia.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4450 {"msk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4451 {"murmansk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4452 {"nalchik.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4453 {"navoi.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4454 {"north-kazakhstan.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4455 {"nov.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4456 {"obninsk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4457 {"penza.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4458 {"pokrovsk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4459 {"sochi.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4460 {"spb.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4461 {"tashkent.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4462 {"termez.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4463 {"togliatti.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4464 {"troitsk.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4465 {"tselinograd.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4466 {"tula.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4467 {"tuva.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4468 {"vladikavkaz.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4469 {"vladimir.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4470 {"vologda.su", &z[1332], x, s{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, s{"178.210.89.119"}, n, e, e, e, 0x0, t},
4471 {"com.sv", &z[1341], x, n, n, n, e, e, e, 0x0, f},
4472 {"edu.sv", &z[1341], x, n, n, n, e, e, e, 0x0, f},
4473 {"gob.sv", &z[1341], x, n, n, n, e, e, e, 0x0, f},
4474 {"org.sv", &z[1341], x, n, n, n, e, e, e, 0x0, f},
4475 {"red.sv", &z[1341], x, n, n, n, e, e, e, 0x0, f},
4476 {"com.sy", &z[1347], x, s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4477 {"edu.sy", &z[1347], x, s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4478 {"gov.sy", &z[1347], x, s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4479 {"mil.sy", &z[1347], x, s{"ns31.cloudns.net", "ns32.cloudns.net", "ns33.cloudns.net", "ns34.cloudns.net"}, n, n, e, e, e, 0x0, f},
4480 {"net.sy", &z[1347], x, s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4481 {"org.sy", &z[1347], x, s{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, e, e, e, 0x0, f},
4482 {"ac.sz", &z[1351], x, n, n, n, e, e, e, 0x0, f},
4483 {"co.sz", &z[1351], x, n, n, n, e, e, e, 0x0, f},
4484 {"org.sz", &z[1351], x, n, n, n, e, e, e, 0x0, f},
4485 {"at.tc", &z[1363], z[5136:5137], s{"ns2572.servers-servers.com", "ns2573.servers-servers.com"}, n, n, e, e, e, 0x0, f},
4486 {"au.tc", &z[1363], z[5137:5138], s{"hera.ns.cloudflare.com", "jerome.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
4487 {"be.tc", &z[1363], x, s{"ns1.be.tc", "ns2.be.tc"}, s{"213.136.89.177"}, n, e, e, e, 0x0, f},
4488 {"bg.tc", &z[1363], x, s{"dnsm1.nic.tc", "dnsm2.nic.tc", "dnsm3.nic.tc", "dnsm4.nic.tc"}, n, n, e, e, e, 0x800, f},
4489 {"biz.tc", &z[1363], x, s{"ns1.nudrv.com", "ns2.nudrv.com"}, s{"64.136.20.39"}, n, e, e, "http://www.biz.tc/", 0x0, f},
4490 {"br.tc", &z[1363], x, s{"dorthy.ns.cloudflare.com", "luke.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
4491 {"ch.tc", &z[1363], x, s{"dns.voxel.sh", "voxeldns.net"}, n, n, e, e, e, 0x0, f},
4492 {"com.tc", &z[1363], x, s{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, e, e, e, 0x0, t},
4493 {"cz.tc", &z[1363], x, s{"ns1.ispapi.net", "ns2.ispapi.net", "ns3.ispapi.net"}, n, n, e, e, e, 0x0, f},
4494 {"de.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4495 {"dk.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4496 {"edu.tc", &z[1363], x, s{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, e, e, e, 0x0, f},
4497 {"es.tc", &z[1363], x, s{"ns1.es.tc", "ns2.es.tc"}, n, n, e, e, e, 0x0, t},
4498 {"eu.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4499 {"hk.tc", &z[1363], x, s{"drew.ns.cloudflare.com", "kia.ns.cloudflare.com"}, n, n, e, e, e, 0x0, f},
4500 {"hu.tc", &z[1363], x, n, n, n, e, e, e, 0x800, f},
4501 {"ie.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4502 {"int.tc", &z[1363], x, s{"ns1.int.tc", "ns2.int.tc"}, n, n, e, e, e, 0x0, f},
4503 {"it.tc", &z[1363], x, s{"ns0.dnsmadeeasy.com", "ns1.dnsmadeeasy.com", "ns3.dnsmadeeasy.com", "ns4.dnsmadeeasy.com"}, n, n, e, e, e, 0x0, f},
4504 {"kr.tc", &z[1363], x, s{"ns.udag.de", "ns.udag.net", "ns.udag.org"}, s{"89.31.143.1"}, n, e, e, e, 0x0, f},
4505 {"mx.tc", &z[1363], x, s{"leah.ns.cloudflare.com", "noah.ns.cloudflare.com"}, s{"104.27.156.189", "104.27.157.189", "172.67.175.218", "2606:4700:3031::681b:9cbd", "2606:4700:3034::681b:9dbd", "2606:4700:3036::ac43:afda"}, n, e, e, e, 0x0, f},
4506 {"net.tc", &z[1363], x, s{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc"}, n, n, e, e, e, 0x0, f},
4507 {"no.tc", &z[1363], x, s{"betty.ns.cloudflare.com", "kai.ns.cloudflare.com"}, s{"77.79.104.210"}, n, e, e, e, 0x0, f},
4508 {"org.tc", &z[1363], x, s{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, e, e, e, 0x0, t},
4509 {"ph.tc", &z[1363], x, s{"ns1.openprovider.nl", "ns2.openprovider.be", "ns3.openprovider.eu"}, s{"196.196.233.154"}, n, e, e, e, 0x0, f},
4510 {"pl.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4511 {"pro.tc", &z[1363], x, s{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, e, e, e, 0x0, f},
4512 {"ru.tc", &z[1363], x, s{"ns17.above.com", "ns18.above.com"}, s{"103.224.182.250"}, n, e, e, e, 0x0, f},
4513 {"se.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4514 {"shop.tc", &z[1363], x, s{"ns.onshore.net", "ns2.onshore.net"}, n, n, e, e, e, 0x0, f},
4515 {"th.tc", &z[1363], x, s{"ns-cloud-b1.googledomains.com", "ns-cloud-b2.googledomains.com", "ns-cloud-b3.googledomains.com", "ns-cloud-b4.googledomains.com"}, n, n, e, e, e, 0x0, f},
4516 {"ua.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4517 {"uk.tc", &z[1363], z[5138:5141], s{"ns1.uk.tc", "ns2.uk.tc"}, n, n, e, e, e, 0x0, f},
4518 {"us.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4519 {"com.td", &z[1365], x, s{"ns-td.afrinic.net", "ns.cocca.fr", "pch.nic.td"}, n, n, e, e, e, 0x0, f},
4520 {"net.td", &z[1365], x, s{"ns-td.afrinic.net", "ns.cocca.fr", "nsa.nic.td", "pch.nic.td"}, n, n, e, e, e, 0x0, f},
4521 {"org.td", &z[1365], x, s{"ns-td.afrinic.net", "ns.cocca.fr", "nsa.nic.td", "pch.nic.td"}, n, n, e, e, e, 0x0, f},
4522 {"tourism.td", &z[1365], x, s{"ns.cocca.fr", "nsa.nic.td"}, n, n, e, e, e, 0x0, f},
4523 {"at.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4524 {"bg.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4525 {"ca.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4526 {"ch.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4527 {"cz.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4528 {"de.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4529 {"edu.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4530 {"eu.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4531 {"int.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4532 {"net.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4533 {"pl.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4534 {"ru.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4535 {"sg.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4536 {"us.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
4537 {"ac.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4538 {"co.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4539 {"go.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4540 {"in.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4541 {"mi.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4542 {"net.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4543 {"or.th", &z[1379], x, s{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, e, e, e, 0x0, f},
4544 {"ac.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4545 {"aero.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4546 {"biz.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4547 {"co.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4548 {"com.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4549 {"coop.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4550 {"dyn.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4551 {"edu.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4552 {"go.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4553 {"gov.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4554 {"info.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4555 {"int.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4556 {"mil.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4557 {"museum.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4558 {"my.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4559 {"name.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4560 {"net.tj", &z[1395], x, n, n, n, e, e, e, 0x800, f},
4561 {"org.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4562 {"per.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4563 {"pro.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4564 {"web.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
4565 {"24.tl", &z[1400], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "24.tl"}, n, e, e, e, 0x200, t},
4566 {"com.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
4567 {"gov.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
4568 {"in.tl", &z[1400], x, n, n, n, e, e, e, 0x800, f},
4569 {"na.tl", &z[1400], x, s{"ns1.afraid.org", "ns2.afraid.org", "ns3.afraid.org", "ns4.afraid.org"}, n, n, e, e, e, 0x0, t},
4570 {"net.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
4571 {"org.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
4572 {"co.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, t},
4573 {"com.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, f},
4574 {"edu.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, f},
4575 {"gov.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, f},
4576 {"mil.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, t},
4577 {"net.tm", &z[1401], x, s{"ns05.telecom.tm", "ns06.telecom.tm", "webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, f},
4578 {"nom.tm", &z[1401], x, n, n, n, e, e, e, 0x800, t},
4579 {"org.tm", &z[1401], x, s{"dns01.nic.tm", "dns1.nic.tm", "dns2.nic.tm", "dns3.nic.tm", "dns4.nic.tm", "dns5.nic.tm", "dns6.nic.tm", "dns7.nic.tm"}, n, n, e, e, e, 0x0, f},
4580 {"agrinet.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4581 {"com.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4582 {"defense.tn", &z[1403], x, s{"ns1.defense.tn", "ns2.defense.tn"}, n, n, e, e, e, 0x0, f},
4583 {"edunet.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4584 {"ens.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4585 {"fin.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4586 {"gov.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4587 {"ind.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4588 {"info.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4589 {"intl.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4590 {"mincom.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4591 {"nat.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4592 {"net.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4593 {"org.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4594 {"perso.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4595 {"rnrt.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4596 {"rns.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4597 {"rnu.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4598 {"tourism.tn", &z[1403], x, s{"ns1.ati.tn", "ns2.ati.tn"}, n, n, e, e, e, 0x0, f},
4599 {"com.tp", &z[1417], x, n, n, n, e, e, e, 0x800, f},
4600 {"or.tp", &z[1417], x, n, n, n, e, e, e, 0x800, f},
4601 {"org.tp", &z[1417], x, n, n, n, e, e, e, 0x800, f},
4602 {"av.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4603 {"bbs.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4604 {"bel.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4605 {"biz.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4606 {"com.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4607 {"dr.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4608 {"edu.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4609 {"gen.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4610 {"gov.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4611 {"info.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4612 {"k12.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4613 {"mil.tr", &z[1418], x, n, n, n, e, e, e, 0x0, t},
4614 {"name.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4615 {"nc.tr", &z[1418], x, s{"ns1.nc.tr", "ns2.nc.tr"}, n, n, e, e, e, 0x0, t},
4616 {"net.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4617 {"org.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4618 {"pol.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4619 {"tel.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4620 {"tsk.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4621 {"tv.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr"}, n, n, e, e, e, 0x0, t},
4622 {"web.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr"}, n, n, e, e, e, 0x0, t},
4623 {"aero.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
4624 {"at.tt", &z[1433], z[5141:5142], s{"a.ns.viennaweb.at", "b.ns.viennaweb.at"}, s{"195.225.236.206"}, n, e, e, e, 0x0, f},
4625 {"au.tt", &z[1433], z[5142:5143], n, n, n, e, e, e, 0x0, f},
4626 {"be.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4627 {"biz.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4628 {"ca.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4629 {"cat.tt", &z[1433], x, s{"ns-1084.awsdns-07.org", "ns-1826.awsdns-36.co.uk", "ns-455.awsdns-56.com", "ns-732.awsdns-27.net"}, n, n, e, e, e, 0x0, t},
4630 {"ch.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4631 {"co.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
4632 {"com.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4633 {"coop.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
4634 {"de.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4635 {"edu.tt", &z[1433], x, s{"ns1.edu.tt", "ns2.edu.tt"}, n, n, e, e, e, 0x0, f},
4636 {"es.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4637 {"eu.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4638 {"fr.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4639 {"gov.tt", &z[1433], x, s{"dns5.gov.tt", "dns6.gov.tt", "dns7.gov.tt", "dns8.gov.tt"}, n, n, e, e, e, 0x0, f},
4640 {"info.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4641 {"int.tt", &z[1433], x, s{"ns1.dnsdun.com", "ns1.dnsdun.net"}, n, n, e, e, e, 0x0, t},
4642 {"it.tt", &z[1433], x, s{"ns1.dnsv2.com", "ns2.dnsv2.com"}, n, n, e, e, e, 0x0, f},
4643 {"jobs.tt", &z[1433], x, s{"dns1.zoneedit.com", "dns2.zoneedit.com"}, n, n, e, e, e, 0x0, t},
4644 {"mobi.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
4645 {"museum.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
4646 {"name.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4647 {"net.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4648 {"nl.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4649 {"org.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4650 {"pro.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4651 {"tel.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
4652 {"travel.tt", &z[1433], x, n, n, n, e, e, e, 0x800, t},
4653 {"uk.tt", &z[1433], z[5143:5146], n, n, n, e, e, e, 0x0, f},
4654 {"us.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
4655 {"club.tw", &z[1440], x, s{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4656 {"com.tw", &z[1440], x, s{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4657 {"ebiz.tw", &z[1440], x, s{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4658 {"edu.tw", &z[1440], x, s{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "edudns-a2.edu.tw", "edudns-a3.edu.tw", "moemoon.edu.tw", "moestar.edu.tw"}, n, n, e, e, e, 0x0, t},
4659 {"game.tw", &z[1440], x, s{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4660 {"gov.tw", &z[1440], x, s{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4661 {"idv.tw", &z[1440], x, s{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4662 {"mil.tw", &z[1440], x, s{"dns1.mil.tw", "dns2.mil.tw"}, n, n, e, e, e, 0x0, t},
4663 {"net.tw", &z[1440], x, s{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4664 {"org.tw", &z[1440], x, s{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, e, e, e, 0x0, t},
4665 {"xn--czrw28b.tw" /* 商業.tw */, &z[1440], x, n, n, n, e, e, "http://www.twnic.net.tw/", 0x0, t},
4666 {"xn--uc0atv.tw" /* 組織.tw */, &z[1440], x, n, n, n, e, e, "http://www.twnic.net.tw/", 0x0, t},
4667 {"xn--zf0ao64a.tw" /* 網路.tw */, &z[1440], x, n, n, n, e, e, "http://www.twnic.net.tw/", 0x0, t},
4668 {"ac.tz", &z[1441], x, s{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4669 {"co.tz", &z[1441], x, s{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4670 {"go.tz", &z[1441], x, s{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4671 {"hotel.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4672 {"info.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4673 {"me.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4674 {"mil.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4675 {"mobi.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4676 {"ne.tz", &z[1441], x, s{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4677 {"or.tz", &z[1441], x, s{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4678 {"sc.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4679 {"tv.tz", &z[1441], x, s{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, e, e, e, 0x0, f},
4680 {"biz.ua", &z[1442], x, s{"ns1.uadns.com", "ns2.uadns.com", "ns3.uadns.com"}, n, n, e, e, e, 0x0, f},
4681 {"cherkassy.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns2.km.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4682 {"cherkasy.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns2.km.ua"}, n, n, e, e, e, 0x0, t},
4683 {"chernigov.ua", &z[1442], x, s{"nix.ns.ua", "ns.dn.ua", "ns3.cn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4684 {"chernivtsi.ua", &z[1442], x, s{"nix.ns.ua", "ns.cv.ua", "ns.kharkov.ua", "ns2.km.ua"}, n, n, e, e, e, 0x0, t},
4685 {"chernovtsy.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns.cv.ua", "ns2.km.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4686 {"ck.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns2.km.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4687 {"cn.ua", &z[1442], x, s{"nix.ns.ua", "ns.dn.ua", "ns3.cn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4688 {"co.ua", &z[1442], x, s{"ns1.uadns.com", "ns2.uadns.com", "ns3.uadns.com"}, n, n, "whois.co.ua", e, e, 0x0, f},
4689 {"com.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.com.ua", "k.ns.com.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4690 {"crimea.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.crimea.ua", "nix.ns.ua", "ns.crimea.ua"}, n, n, "whois.crimea.ua", e, "http://www.nic.net.ua/", 0x0, f},
4691 {"cv.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns.cv.ua", "ns2.km.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4692 {"dn.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4693 {"dnepropetrovsk.ua", &z[1442], x, s{"ns.dp.ua", "s1.ns.dp.ua", "s2.ns.dp.ua", "s3.ns.dp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4694 {"dnipropetrovsk.ua", &z[1442], x, s{"ns.dp.ua", "s1.ns.dp.ua", "s2.ns.dp.ua", "s3.ns.dp.ua"}, n, n, e, e, e, 0x0, t},
4695 {"donetsk.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4696 {"dp.ua", &z[1442], x, s{"ns.dp.ua", "s1.ns.dp.ua", "s2.ns.dp.ua", "s3.ns.dp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4697 {"edu.ua", &z[1442], x, s{"ba1.ns.ua", "deneb.dfn.de", "ho1.ns.edu.ua", "nix.ns.ua"}, n, n, e, e, e, 0x0, f},
4698 {"gov.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.gov.ua", "nix.ns.ua"}, n, n, e, e, e, 0x0, f},
4699 {"if.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.if.ua", "nix.ns.ua", "ns.dn.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4700 {"in.ua", &z[1442], x, s{"ho1.ns.od.ua", "ns.in.ua", "nss.ukr.net"}, n, n, "whois.in.ua", e, e, 0x0, f},
4701 {"ivano-frankivsk.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.if.ua", "nix.ns.ua", "ns.dn.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4702 {"kh.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4703 {"kharkiv.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, e, 0x0, t},
4704 {"kharkov.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4705 {"kherson.ua", &z[1442], x, s{"ho1.ns.ks.ua", "nix.ns.ua", "ns.dn.ua", "ns.kharkov.ua", "ns.ks-host.com"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4706 {"khmelnitskiy.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns.km.ua", "ns2.km.ua", "ns3.km.ua"}, n, n, e, e, e, 0x0, f},
4707 {"kiev.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.kiev.ua", "k.ns.com.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4708 {"kirovograd.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns.host.kr.ua", "ns.infocom.kr.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4709 {"km.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns.km.ua", "ns2.km.ua", "ns3.km.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4710 {"kr.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns.host.kr.ua", "ns.infocom.kr.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4711 {"ks.ua", &z[1442], x, s{"ho1.ns.ks.ua", "nix.ns.ua", "ns.dn.ua", "ns.kharkov.ua", "ns.ks-host.com"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4712 {"kyiv.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.kiev.ua", "k.ns.com.ua", "nix.ns.ua"}, n, n, e, e, e, 0x0, t},
4713 {"lg.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4714 {"lt.ua", &z[1442], x, s{"ho1.ns.lutsk.ua", "nix.ns.ua", "ns.cv.ua"}, n, n, e, e, e, 0x0, f},
4715 {"lugansk.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4716 {"lutsk.ua", &z[1442], x, s{"ho1.ns.lutsk.ua", "nix.ns.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4717 {"lviv.ua", &z[1442], x, s{"eta.uar.net", "iota.uar.net", "kappa.uar.net", "ns.lviv.ua", "theta.uar.net", "zeta.uar.net"}, n, n, "whois.lviv.ua", e, "http://www.nic.net.ua/", 0x0, f},
4718 {"mk.ua", &z[1442], x, s{"ba1.ns.ua", "epp.ns.od.ua", "ho1.ns.od.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4719 {"net.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.net.ua", "nix.ns.ua", "ns.dn.ua", "ns.kh.ua", "ns.net.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, "whois.net.ua", e, e, 0x0, f},
4720 {"nikolaev.ua", &z[1442], x, s{"ba1.ns.ua", "epp.ns.od.ua", "ho1.ns.od.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4721 {"od.ua", &z[1442], x, s{"ho1.ns.od.ua", "nix.ns.ua", "ns.od.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4722 {"odesa.ua", &z[1442], x, s{"ho1.ns.od.ua", "nix.ns.ua", "ns.od.ua"}, n, n, e, e, e, 0x0, f},
4723 {"odessa.ua", &z[1442], x, s{"ho1.ns.od.ua", "nix.ns.ua", "ns.od.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4724 {"org.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.org.ua", "nix.ns.ua", "ns.dn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4725 {"pl.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.pl.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4726 {"poltava.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.pl.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4727 {"pp.ua", &z[1442], x, s{"ns1.uadns.com", "ns2.uadns.com", "ns3.uadns.com"}, n, n, "whois.pp.ua", e, e, 0x0, f},
4728 {"rivne.ua", &z[1442], x, s{"ba1.ns.ua", "ns5.dnsmadeeasy.com", "ns6.dnsmadeeasy.com", "ns7.dnsmadeeasy.com"}, n, n, e, e, e, 0x0, t},
4729 {"rovno.ua", &z[1442], x, s{"ba1.ns.ua", "ns5.dnsmadeeasy.com", "ns6.dnsmadeeasy.com", "ns7.dnsmadeeasy.com"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4730 {"rv.ua", &z[1442], x, s{"ba1.ns.ua", "ns5.dnsmadeeasy.com", "ns6.dnsmadeeasy.com", "ns7.dnsmadeeasy.com"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4731 {"sebastopol.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.crimea.ua", "nix.ns.ua", "ns.crimea.ua"}, n, n, "whois.sebastopol.ua", e, "http://www.nic.net.ua/", 0x0, f},
4732 {"sm.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, e, 0x0, f},
4733 {"sumy.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4734 {"te.ua", &z[1442], x, s{"nix.ns.ua", "ns.dn.ua", "ns.te.ua", "ns2.km.ua", "ns2.uar.net"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4735 {"ternopil.ua", &z[1442], x, s{"nix.ns.ua", "ns.dn.ua", "ns.te.ua", "ns2.km.ua", "ns2.uar.net"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4736 {"uz.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.uz.ua", "nix.ns.ua", "ns.dn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4737 {"uzhgorod.ua", &z[1442], x, s{"ba1.ns.ua", "ho1.ns.uz.ua", "nix.ns.ua", "ns.dn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4738 {"vinnica.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns1.vn.ua", "ns1.vsmu.vinnica.ua", "ns4.nest.vn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4739 {"vn.ua", &z[1442], x, s{"ba1.ns.ua", "nix.ns.ua", "ns1.vn.ua", "ns1.vsmu.vinnica.ua", "ns4.nest.vn.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4740 {"volyn.ua", &z[1442], x, s{"ho1.ns.lutsk.ua", "nix.ns.ua", "ns.zp.ua"}, n, n, e, e, e, 0x0, f},
4741 {"yalta.ua", &z[1442], x, s{"ho1.ns.crimea.ua", "nix.ns.ua", "ns.crimea.ua"}, n, n, "whois.yalta.ua", e, e, 0x0, f},
4742 {"zaporizhzhe.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4743 {"zhitomir.ua", &z[1442], x, s{"ba1.ns.ua", "impuls.zhitomir.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4744 {"zp.ua", &z[1442], x, s{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4745 {"zt.ua", &z[1442], x, s{"ba1.ns.ua", "impuls.zhitomir.ua", "nix.ns.ua"}, n, n, e, e, "http://www.nic.net.ua/", 0x0, f},
4746 {"ac.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4747 {"co.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4748 {"com.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4749 {"go.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4750 {"mil.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4751 {"ne.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4752 {"or.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4753 {"org.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4754 {"sc.ug", &z[1446], x, n, n, n, e, e, e, 0x0, f},
4755 {"ac.uk", &z[1447], x, s{"auth03.ns.uu.net", "dns-3.dfn.de", "ns0.ja.net", "ns1.surfnet.nl", "ns2.ja.net", "ns3.ja.net", "ns4.ja.net"}, n, n, "whois.ja.net", e, e, 0x0, f},
4756 {"co.uk", &z[1447], x, s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, "whois.nic.uk", e, e, 0x0, f},
4757 {"gov.uk", &z[1447], x, s{"auth00.ns.de.uu.net", "auth50.ns.de.uu.net", "ns0.ja.net", "ns1.surfnet.nl", "ns2.ja.net", "ns3.ja.net", "ns4.ja.net"}, n, n, "whois.ja.net", e, e, 0x0, f},
4758 {"ltd.uk", &z[1447], x, s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, e, e, e, 0x0, f},
4759 {"me.uk", &z[1447], x, s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, e, e, e, 0x0, f},
4760 {"mod.uk", &z[1447], x, s{"ns1.cs.ucl.ac.uk", "ns1.mod.uk", "ns2.mod.uk"}, n, n, e, e, e, 0x0, f},
4761 {"net.uk", &z[1447], x, s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, e, e, e, 0x0, f},
4762 {"org.uk", &z[1447], x, s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, e, e, e, 0x0, f},
4763 {"plc.uk", &z[1447], x, s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, e, e, e, 0x0, f},
4764 {"sch.uk", &z[1447], z[5146:5161], s{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, e, e, e, 0x0, f},
4765 {"ak.us", &z[1457], x, n, n, n, e, e, "http://doa.alaska.gov/ets/eash/DNSrequestform.html", 0x0, t},
4766 {"al.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4767 {"ar.us", &z[1457], x, n, n, n, e, e, e, 0x0, t},
4768 {"as.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4769 {"az.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4770 {"ca.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4771 {"co.us", &z[1457], x, n, n, n, e, e, e, 0x800, f},
4772 {"ct.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4773 {"dc.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4774 {"de.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4775 {"dni.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4776 {"fed.us", &z[1457], x, s{"a.gov-servers.net", "b.gov-servers.net", "c.gov-servers.net", "d.gov-servers.net"}, n, n, "whois.dotgov.gov", e, e, 0x0, f},
4777 {"fl.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4778 {"ga.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4779 {"gu.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4780 {"hi.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4781 {"ia.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4782 {"id.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4783 {"il.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4784 {"in.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4785 {"isa.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4786 {"kids.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4787 {"ks.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4788 {"ky.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4789 {"la.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4790 {"ma.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4791 {"md.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4792 {"me.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4793 {"mi.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4794 {"mn.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4795 {"mo.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4796 {"ms.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4797 {"mt.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4798 {"nc.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4799 {"nd.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4800 {"ne.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4801 {"nh.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4802 {"nj.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4803 {"nm.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4804 {"nsn.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4805 {"nv.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4806 {"ny.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4807 {"oh.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4808 {"ok.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4809 {"or.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4810 {"pa.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4811 {"pr.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4812 {"ri.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4813 {"sc.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4814 {"sd.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4815 {"tn.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4816 {"tx.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4817 {"ut.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4818 {"va.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4819 {"vi.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4820 {"vt.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4821 {"wa.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4822 {"wi.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4823 {"wv.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4824 {"wy.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
4825 {"com.uy", &z[1458], x, s{"ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "seciu.edu.uy"}, n, n, e, "https://nic.anteldata.com.uy/dns/consultaWhois/whois.action", e, 0x0, f},
4826 {"edu.uy", &z[1458], x, s{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, e, e, e, 0x0, f},
4827 {"gub.uy", &z[1458], x, s{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, e, e, e, 0x0, f},
4828 {"mil.uy", &z[1458], x, s{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, e, e, e, 0x0, f},
4829 {"net.uy", &z[1458], x, s{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, e, e, e, 0x0, f},
4830 {"org.uy", &z[1458], x, s{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, e, e, e, 0x0, f},
4831 {"ac.uz", &z[1459], x, s{"ns1.sarkor.uz", "ns2.sarkor.uz"}, n, n, e, e, e, 0x0, f},
4832 {"aero.uz", &z[1459], x, s{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, e, e, e, 0x0, f},
4833 {"biz.uz", &z[1459], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "biz.uz"}, n, e, e, e, 0x200, f},
4834 {"co.uz", &z[1459], x, s{"ns1.reg.uz", "ns2.reg.uz"}, n, n, e, e, e, 0x0, f},
4835 {"com.uz", &z[1459], x, s{"ns1.reg.uz", "ns2.reg.uz"}, n, n, e, e, e, 0x0, f},
4836 {"coop.uz", &z[1459], x, s{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, e, e, e, 0x0, f},
4837 {"edu.uz", &z[1459], x, s{"dns1.webspace.uz", "dns2.webspace.uz"}, n, n, e, e, e, 0x0, f},
4838 {"info.uz", &z[1459], x, s{"ns.ol.uz", "ns.tshtt.uz"}, n, n, e, e, e, 0x0, f},
4839 {"int.uz", &z[1459], x, s{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, e, e, e, 0x0, f},
4840 {"museum.uz", &z[1459], x, n, n, n, e, e, e, 0x0, f},
4841 {"name.uz", &z[1459], x, s{"ns1.billur.com", "ns2.billur.com"}, n, n, e, e, e, 0x0, f},
4842 {"net.uz", &z[1459], x, s{"ns1.reg.uz", "ns2.reg.uz"}, n, n, e, e, e, 0x0, f},
4843 {"org.uz", &z[1459], x, s{"ns1.reg.uz", "ns2.reg.uz"}, n, n, e, e, e, 0x0, f},
4844 {"pro.uz", &z[1459], x, s{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, e, e, e, 0x8, f},
4845 {"com.vc", &z[1465], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4846 {"net.vc", &z[1465], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4847 {"org.vc", &z[1465], x, s{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, e, e, e, 0x0, f},
4848 {"co.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4849 {"com.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4850 {"edu.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4851 {"gob.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4852 {"info.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4853 {"int.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, t},
4854 {"mil.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4855 {"net.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4856 {"org.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4857 {"tec.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, t},
4858 {"web.ve", &z[1466], x, s{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, e, e, e, 0x0, f},
4859 {"pro.vg", &z[1474], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "pro.vg"}, n, e, e, e, 0x200, t},
4860 {"biz.vi", &z[1475], x, n, n, n, e, e, e, 0x0, f},
4861 {"co.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, f},
4862 {"com.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, t},
4863 {"k12.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, f},
4864 {"net.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, f},
4865 {"org.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, f},
4866 {"ac.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4867 {"biz.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4868 {"com.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4869 {"edu.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4870 {"gov.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4871 {"health.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4872 {"info.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4873 {"int.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4874 {"name.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4875 {"net.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4876 {"org.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4877 {"pro.vn", &z[1491], x, s{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, e, e, e, 0x0, f},
4878 {"co.vu", &z[1500], x, s{"ns1.codotvu.com", "ns2.codotvu.com", "ns3.codotvu.com", "ns4.codotvu.com"}, n, n, e, e, "www.co.vu", 0x0, t},
4879 {"com.vu", &z[1500], x, s{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, e, e, e, 0x0, f},
4880 {"name.vu", &z[1500], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, s{"144.76.162.245", "name.vu"}, n, e, e, e, 0x200, t},
4881 {"net.vu", &z[1500], x, s{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, e, e, e, 0x0, f},
4882 {"org.vu", &z[1500], x, s{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, e, e, e, 0x0, f},
4883 {"com.ws", &z[1539], x, s{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws"}, s{"202.4.48.211"}, n, e, e, e, 0x0, f},
4884 {"edu.ws", &z[1539], x, s{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws"}, s{"202.4.48.211"}, n, e, e, e, 0x0, f},
4885 {"gov.ws", &z[1539], x, s{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws"}, n, n, e, e, e, 0x0, f},
4886 {"net.ws", &z[1539], x, s{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws"}, s{"202.4.48.211"}, n, e, e, e, 0x0, f},
4887 {"org.ws", &z[1539], x, s{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws"}, s{"202.4.48.211"}, n, e, e, e, 0x0, f},
4888 {"co.ye", &z[1554], x, n, n, n, e, e, e, 0x0, f},
4889 {"com.ye", &z[1554], x, n, n, n, e, e, e, 0x0, f},
4890 {"gov.ye", &z[1554], x, s{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, e, e, e, 0x0, t},
4891 {"ltd.ye", &z[1554], x, n, n, n, e, e, e, 0x0, f},
4892 {"me.ye", &z[1554], x, s{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, e, e, e, 0x0, f},
4893 {"net.ye", &z[1554], x, s{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, e, e, e, 0x0, f},
4894 {"org.ye", &z[1554], x, s{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, e, e, e, 0x0, f},
4895 {"plc.ye", &z[1554], x, n, n, n, e, e, e, 0x0, f},
4896 {"ac.yu", &z[1562], z[5161:5162], n, n, n, e, e, e, 0x800, f},
4897 {"cg.yu", &z[1562], x, n, n, n, e, e, e, 0x800, f},
4898 {"co.yu", &z[1562], x, n, n, n, e, e, e, 0x800, t},
4899 {"edu.yu", &z[1562], x, n, n, n, e, e, e, 0x800, f},
4900 {"gov.yu", &z[1562], x, n, n, n, e, e, e, 0x800, f},
4901 {"org.yu", &z[1562], x, n, n, n, e, e, e, 0x800, f},
4902 {"ac.za", &z[1564], x, s{"disa.tenet.ac.za", "ns2us.dns.business", "ns3.dns.business", "ns4.dns.business", "za-ns.anycast.pch.net"}, n, n, "whois.ac.za", e, e, 0x0, f},
4903 {"agric.za", &z[1564], x, s{"demeter.is.co.za", "jupiter.is.co.za", "titan.is.co.za"}, n, n, e, e, e, 0x0, f},
4904 {"alt.za", &z[1564], x, s{"mumble.proxima.alt.za", "ns1.iafrica.com", "ns2.iafrica.com", "psg.com", "za-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
4905 {"bourse.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4906 {"city.za", &z[1564], x, n, n, n, e, e, e, 0x0, f},
4907 {"co.za", &z[1564], x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns0.is.co.za", "ns2us.dns.business", "ns3.iafrica.com"}, n, n, "whois.coza.net.za", e, e, 0x0, f},
4908 {"cybernet.za", &z[1564], x, n, n, n, e, e, e, 0x0, f},
4909 {"db.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4910 {"edu.za", &z[1564], x, s{"ns-za.afrinic.net", "ns1.iafrica.com", "ns2.iafrica.com", "za-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
4911 {"gov.za", &z[1564], x, s{"ns1.gov.za", "ns1.inx.net.za", "ns2.gov.za", "ns2.inx.net.za", "ns3.gov.za", "ns3.inx.net.za"}, n, n, "whois.gov.za", e, e, 0x0, f},
4912 {"grondar.za", &z[1564], x, s{"grandfather.grondar.org", "ns1.iafrica.com", "ns2.iafrica.com", "rip.psg.com"}, n, n, e, e, e, 0x0, f},
4913 {"iaccess.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4914 {"imt.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4915 {"inca.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4916 {"landesign.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4917 {"law.za", &z[1564], x, s{"ns0.is.co.za", "ns1.dns.net.za", "ns2us.dns.business"}, n, n, e, e, e, 0x0, f},
4918 {"mil.za", &z[1564], x, s{"ns1.gov.za", "ns2.gov.za", "ns3.gov.za"}, n, n, e, e, e, 0x0, f},
4919 {"net.za", &z[1564], x, s{"ns0.is.co.za", "za-ns.anycast.pch.net"}, n, n, "net-whois.registry.net.za", e, e, 0x0, f},
4920 {"ngo.za", &z[1564], x, s{"antares.wisenet.co.za", "ns1.sn.apc.org", "ns2.sn.apc.org"}, n, n, e, e, e, 0x0, f},
4921 {"nis.za", &z[1564], x, s{"ns1.mywebserver.co.za", "ns2.mywebserver.co.za", "ns3.mywebserver.co.za"}, n, n, e, e, e, 0x0, f},
4922 {"nom.za", &z[1564], x, s{"ins1.c6dns.com", "ns0.plig.net", "secdns1.posix.co.za", "za-ns.anycast.pch.net"}, s{"78.31.111.139"}, n, e, e, e, 0x0, f},
4923 {"olivetti.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4924 {"org.za", &z[1564], x, s{"ns0.is.co.za", "ns0.plig.net", "ns3.iafrica.com", "ns4.iafrica.com", "za-ns.anycast.pch.net"}, n, n, "org-whois.registry.net.za", e, e, 0x0, f},
4925 {"pix.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
4926 {"school.za", &z[1564], z[5162:5171], s{"ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, f},
4927 {"tm.za", &z[1564], x, s{"ns0.is.co.za", "ns1.dnsza.co.za", "ns1.iafrica.com", "ns1.lolo.co.za", "ns2.iafrica.com", "ns2.lolo.co.za", "ns3.lolo.co.za", "reaper.org", "sticky.spider.web.za", "za-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
4928 {"web.za", &z[1564], x, s{"disa.tenet.ac.za", "ns0.is.co.za", "za-ns.anycast.pch.net"}, n, n, "web-whois.registry.net.za", e, e, 0x0, f},
4929 {"ac.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, f},
4930 {"co.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, t},
4931 {"com.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, f},
4932 {"edu.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, t},
4933 {"gov.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, t},
4934 {"net.zm", &z[1570], x, s{"cocca.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, t},
4935 {"org.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, f},
4936 {"sch.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, t},
4937 {"ac.zw", &z[1574], x, s{"ns1.liquidtelecom.net", "ns2.liquidtelecom.net", "uofzns01.uz.ac.zw", "uofzns02.uz.ac.zw"}, n, n, e, e, e, 0x0, f},
4938 {"co.zw", &z[1574], x, s{"ns1.liquidtelecom.net", "ns1.zispa.org.zw", "ns2.liquidtelecom.net", "ns3.zispa.org.zw"}, n, n, e, e, e, 0x0, t},
4939 {"com.zw", &z[1574], x, n, n, n, e, e, e, 0x0, t},
4940 {"org.zw", &z[1574], x, s{"ns1.liquidtelecom.net", "ns1.telone.co.zw", "ns2.liquidtelecom.net", "ns2.telone.co.zw", "zw-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
4941 {"001.xn--p1acf" /* 001.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4942 {"002.xn--p1acf" /* 002.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4943 {"003.xn--p1acf" /* 003.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4944 {"004.xn--p1acf" /* 004.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4945 {"005.xn--p1acf" /* 005.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4946 {"006.xn--p1acf" /* 006.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4947 {"007.xn--p1acf" /* 007.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4948 {"008.xn--p1acf" /* 008.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4949 {"009.xn--p1acf" /* 009.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4950 {"010.xn--p1acf" /* 010.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4951 {"011.xn--p1acf" /* 011.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4952 {"012.xn--p1acf" /* 012.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4953 {"013.xn--p1acf" /* 013.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4954 {"014.xn--p1acf" /* 014.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4955 {"015.xn--p1acf" /* 015.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4956 {"016.xn--p1acf" /* 016.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4957 {"017.xn--p1acf" /* 017.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4958 {"018.xn--p1acf" /* 018.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4959 {"019.xn--p1acf" /* 019.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4960 {"021.xn--p1acf" /* 021.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4961 {"022.xn--p1acf" /* 022.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4962 {"023.xn--p1acf" /* 023.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4963 {"024.xn--p1acf" /* 024.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4964 {"025.xn--p1acf" /* 025.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4965 {"026.xn--p1acf" /* 026.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4966 {"027.xn--p1acf" /* 027.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4967 {"028.xn--p1acf" /* 028.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4968 {"029.xn--p1acf" /* 029.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4969 {"030.xn--p1acf" /* 030.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4970 {"031.xn--p1acf" /* 031.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4971 {"032.xn--p1acf" /* 032.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4972 {"033.xn--p1acf" /* 033.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4973 {"034.xn--p1acf" /* 034.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4974 {"035.xn--p1acf" /* 035.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4975 {"036.xn--p1acf" /* 036.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4976 {"037.xn--p1acf" /* 037.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4977 {"038.xn--p1acf" /* 038.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4978 {"039.xn--p1acf" /* 039.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4979 {"040.xn--p1acf" /* 040.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4980 {"041.xn--p1acf" /* 041.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4981 {"042.xn--p1acf" /* 042.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4982 {"043.xn--p1acf" /* 043.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4983 {"044.xn--p1acf" /* 044.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4984 {"045.xn--p1acf" /* 045.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4985 {"046.xn--p1acf" /* 046.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4986 {"047.xn--p1acf" /* 047.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4987 {"048.xn--p1acf" /* 048.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4988 {"049.xn--p1acf" /* 049.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4989 {"050.xn--p1acf" /* 050.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4990 {"051.xn--p1acf" /* 051.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4991 {"052.xn--p1acf" /* 052.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4992 {"053.xn--p1acf" /* 053.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4993 {"054.xn--p1acf" /* 054.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4994 {"055.xn--p1acf" /* 055.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4995 {"056.xn--p1acf" /* 056.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4996 {"057.xn--p1acf" /* 057.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4997 {"058.xn--p1acf" /* 058.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4998 {"059.xn--p1acf" /* 059.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
4999 {"060.xn--p1acf" /* 060.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5000 {"061.xn--p1acf" /* 061.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5001 {"062.xn--p1acf" /* 062.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5002 {"063.xn--p1acf" /* 063.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5003 {"064.xn--p1acf" /* 064.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5004 {"065.xn--p1acf" /* 065.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5005 {"066.xn--p1acf" /* 066.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5006 {"067.xn--p1acf" /* 067.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5007 {"068.xn--p1acf" /* 068.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5008 {"069.xn--p1acf" /* 069.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5009 {"070.xn--p1acf" /* 070.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5010 {"071.xn--p1acf" /* 071.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5011 {"072.xn--p1acf" /* 072.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5012 {"073.xn--p1acf" /* 073.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5013 {"074.xn--p1acf" /* 074.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5014 {"075.xn--p1acf" /* 075.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5015 {"076.xn--p1acf" /* 076.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5016 {"077.xn--p1acf" /* 077.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5017 {"078.xn--p1acf" /* 078.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5018 {"079.xn--p1acf" /* 079.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5019 {"083.xn--p1acf" /* 083.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5020 {"086.xn--p1acf" /* 086.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5021 {"087.xn--p1acf" /* 087.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5022 {"089.xn--p1acf" /* 089.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5023 {"094.xn--p1acf" /* 094.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5024 {"095.xn--p1acf" /* 095.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5025 {"xn--80aaac0ct.xn--p1acf" /* абакан.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5026 {"xn--80ae0bp.xn--p1acf" /* авто.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5027 {"xn--80awd.xn--p1acf" /* алм.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5028 {"xn--80aa1ag9a.xn--p1acf" /* алтай.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5029 {"xn--80aam8ar9di.xn--p1acf" /* анадырь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5030 {"xn--80aaa5csg.xn--p1acf" /* астана.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5031 {"xn--80aaa6cmfh0a9d.xn--p1acf" /* астрахань.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5032 {"xn--80ag7c.xn--p1acf" /* ахг.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5033 {"xn--80ab2azb.xn--p1acf" /* баку.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5034 {"xn--80aab6birx.xn--p1acf" /* барнаул.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5035 {"xn--90ais.xn--p1acf" /* бел.рус */, &z[1590], x, s{"ns1.gohost.ru", "ns2.gohost.ru"}, n, n, e, e, e, 0x200, t},
5036 {"xn--90aedc4atap.xn--p1acf" /* белгород.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5037 {"xn--90amc.xn--p1acf" /* биз.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, s{"77.221.159.235"}, n, e, e, e, 0x200, t},
5038 {"xn--80abamkjb7bdt.xn--p1acf" /* биробиджан.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5039 {"xn--90aiiib5f.xn--p1acf" /* бишкек.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5040 {"xn--80abedla9acxg1b7f.xn--p1acf" /* благовещенск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5041 {"xn--90aayernio.xn--p1acf" /* бобруйск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5042 {"xn--90ai6aff.xn--p1acf" /* брест.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5043 {"xn--90asilg6f.xn--p1acf" /* брянск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5044 {"xn--90aoxid7ec.xn--p1acf" /* бурятия.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5045 {"xn--b1aadecsaihi0amca3a.xn--p1acf" /* великийновгород.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5046 {"xn--b1amjiu8dp.xn--p1acf" /* вильнюс.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5047 {"xn--90abjlm5be.xn--p1acf" /* витебск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5048 {"xn--80adbhunc2aa3al.xn--p1acf" /* владивосток.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5049 {"xn--80aaafckyesce.xn--p1acf" /* владикавказ.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5050 {"xn--80adhqaok7a.xn--p1acf" /* владимир.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5051 {"xn--80add5ao.xn--p1acf" /* волга.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5052 {"xn--80addag2buct.xn--p1acf" /* волгоград.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5053 {"xn--80adde7arb.xn--p1acf" /* вологда.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5054 {"xn--b1agd0aean.xn--p1acf" /* воронеж.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5055 {"xn--c1aescj1g.xn--p1acf" /* гомель.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5056 {"xn--c1ac1acci.xn--p1acf" /* гродно.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5057 {"xn--c1aigpdl4f.xn--p1acf" /* грозный.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5058 {"xn--e1aky.xn--p1acf" /* ект.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5059 {"xn--80adia6bo.xn--p1acf" /* ереван.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5060 {"xn--80adbv1agb.xn--p1acf" /* иваново.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5061 {"xn--b1afchn5b.xn--p1acf" /* ижевск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5062 {"xn--h1aeawgfg.xn--p1acf" /* иркутск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5063 {"xn--80aauks4g.xn--p1acf" /* казань.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5064 {"xn--80aaifraljtb8a.xn--p1acf" /* калининград.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5065 {"xn--80aai0ag2c.xn--p1acf" /* калуга.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5066 {"xn--b1afaslnbn.xn--p1acf" /* кемерово.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5067 {"xn--b1afih.xn--p1acf" /* киев.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5068 {"xn--b1alfrj.xn--p1acf" /* киров.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5069 {"xn--b1afiaiu9e.xn--p1acf" /* кишинев.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5070 {"xn--j1aef.xn--p1acf" /* ком.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5071 {"xn--h1adgh.xn--p1acf" /* коми.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5072 {"xn--80atghalgi.xn--p1acf" /* кострома.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5073 {"xn--80aalwqglfe.xn--p1acf" /* краснодар.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5074 {"xn--80atblfjdfd2l.xn--p1acf" /* красноярск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5075 {"xn--j1ael8b.xn--p1acf" /* крым.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5076 {"xn--80afuomr.xn--p1acf" /* курган.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5077 {"xn--j1aarei.xn--p1acf" /* курск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5078 {"xn--g1afe6db.xn--p1acf" /* кызыл.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5079 {"xn--e1afhbv7b.xn--p1acf" /* липецк.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5080 {"xn--80aaakg8bm.xn--p1acf" /* магадан.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5081 {"xn--80aai8a2a.xn--p1acf" /* магас.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5082 {"xn--80asdfng.xn--p1acf" /* майкоп.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5083 {"xn--80aqdibz7g.xn--p1acf" /* марийэл.рус */, &z[1590], x, s{"ns1.nameself.com", "ns2.nameself.com"}, n, n, e, e, e, 0x200, t},
5084 {"xn--80aqjbv3f.xn--p1acf" /* мариэл.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5085 {"xn--80aaaa2chc7eta.xn--p1acf" /* махачкала.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5086 {"xn--d1abu.xn--p1acf" /* мед.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5087 {"xn--h1aeefu.xn--p1acf" /* минск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5088 {"xn--h1ahn.xn--p1acf" /* мир.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5089 {"xn--b1abpmcm0l.xn--p1acf" /* могилёв.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5090 {"xn--j1adp.xn--p1acf" /* мск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5091 {"xn--80aueagpkl.xn--p1acf" /* мурманск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5092 {"xn--80aqgci6d8a.xn--p1acf" /* нальчик.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5093 {"xn----7sbb1ccbue7h4a.xn--p1acf" /* нарьян-мар.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5094 {"xn--b1avn.xn--p1acf" /* нвс.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5095 {"xn--m1aa.xn--p1acf" /* нн.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5096 {"xn--90absbknhbvge.xn--p1acf" /* новосибирск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5097 {"xn--j1adfn.xn--p1acf" /* омск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5098 {"xn--c1avg.xn--p1acf" /* орг.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5099 {"xn--90aee6admdx.xn--p1acf" /* оренбург.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5100 {"xn--k1afg2e.xn--p1acf" /* орёл.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5101 {"xn--80ajgxi.xn--p1acf" /* пенза.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5102 {"xn--e1aohf5d.xn--p1acf" /* пермь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5103 {"xn--80aegbkvxddlre.xn--p1acf" /* петрозаводск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5104 {"xn--b1apmck.xn--p1acf" /* псков.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5105 {"xn--c1ajhpcjhd0j.xn--p1acf" /* пятигорск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5106 {"xn--80afo5a.xn--p1acf" /* рига.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5107 {"xn-----7kcgn5cdbagnnnx.xn--p1acf" /* ростов-на-дону.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5108 {"xn--b1a1ade.xn--p1acf" /* рств.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5109 {"xn--80antj7do.xn--p1acf" /* рязань.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5110 {"xn--80aamc3a6ac9a.xn--p1acf" /* салехард.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5111 {"xn--80aaa0cvac.xn--p1acf" /* самара.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5112 {"xn--80aa4alnee.xn--p1acf" /* саранск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5113 {"xn--80aag1ciek.xn--p1acf" /* саратов.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5114 {"xn--80adi0aoagldk8i.xn--p1acf" /* севастополь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5115 {"xn--90anb6ab4e.xn--p1acf" /* сибирь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5116 {"xn--e1afkclaggf6a2g.xn--p1acf" /* симферополь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5117 {"xn--e1akbdhdtf.xn--p1acf" /* смоленск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5118 {"xn--h1aliz.xn--p1acf" /* сочи.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5119 {"xn--90a1af.xn--p1acf" /* спб.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5120 {"xn--80ae1alafffj1i.xn--p1acf" /* ставрополь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5121 {"xn--80aqialz.xn--p1acf" /* таллин.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5122 {"xn--80acd2blu.xn--p1acf" /* тамбов.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5123 {"xn--80akonve2b.xn--p1acf" /* ташкент.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5124 {"xn--b1ag7af7c.xn--p1acf" /* тверь.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5125 {"xn--j1adfnc.xn--p1acf" /* томск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5126 {"xn--80avue.xn--p1acf" /* тула.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5127 {"xn--p1add.xn--p1acf" /* тур.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5128 {"xn--e1aner7ci.xn--p1acf" /* тюмень.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5129 {"xn--b1aqbiftj7e1a.xn--p1acf" /* ульяновск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5130 {"xn--80a1bd.xn--p1acf" /* уфа.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5131 {"xn--80aacf4bwnk3a.xn--p1acf" /* хабаровск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5132 {"xn--80ablvtof7b4b.xn--p1acf" /* чебоксары.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5133 {"xn--90ahkico2a6b9d.xn--p1acf" /* челябинск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5134 {"xn--e1aaob1aia6b.xn--p1acf" /* черкесск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5135 {"xn--80ap4as.xn--p1acf" /* чита.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5136 {"xn--80apizf6d.xn--p1acf" /* элиста.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5137 {"xn--80af3b0c.xn--p1acf" /* югра.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5138 {"xn--41a.xn--p1acf" /* я.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5139 {"xn--j1aaude4e.xn--p1acf" /* якутск.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5140 {"xn--80aezclli6gta.xn--p1acf" /* ярославль.рус */, &z[1590], x, s{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, e, e, e, 0x200, t},
5141 {"xn--j1aef.xn--p1ai" /* ком.рф */, &z[1591], x, s{"ns1.nameself.com", "ns2.nameself.com"}, n, n, e, e, e, 0x200, t},
5142 {"xn--e1apq.xn--p1ai" /* нет.рф */, &z[1591], x, s{"ns1.nameself.com", "ns2.nameself.com"}, n, n, e, e, e, 0x200, t},
5143 {"xn--c1avg.xn--p1ai" /* орг.рф */, &z[1591], x, s{"ns1.nameself.com", "ns2.nameself.com"}, n, n, e, e, e, 0x200, t},
5144 {"xn--o-btb9b.xn--90a3ac" /* oбр.срб */, &z[1593], x, n, n, n, e, e, e, 0x0, t},
5145 {"xn--o-htb.xn--90a3ac" /* oд.срб */, &z[1593], x, n, n, n, e, e, e, 0x0, t},
5146 {"xn--80au.xn--90a3ac" /* ак.срб */, &z[1593], x, s{"ban.junis.ni.ac.rs", "gaea.rcub.bg.ac.rs", "ns.etf.bg.ac.rs", "ns.rcub.bg.ac.rs", "ns.unic.kg.ac.rs", "ns1.uns.ac.rs", "ns2.iif.hu", "odisej.telekom.rs"}, n, n, e, e, e, 0x0, t},
5147 {"xn--o1ac.xn--90a3ac" /* пр.срб */, &z[1593], x, s{"a.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, e, e, e, 0x0, t},
5148 {"xn--o1ach.xn--90a3ac" /* упр.срб */, &z[1593], x, s{"dagda1.isp.telekom.rs", "ns1.gov.rs", "ns1.nic.rs", "ns2.gov.rs", "ns3.gov.orion.rs"}, n, n, e, e, e, 0x0, t},
5149 {"xn--fhbed7t1n.xn--mgbbh1a71e" /* كمپنی.بھارت */, &z[1615], x, n, n, n, e, e, e, 0x0, t},
5150 {"xn--i1b1b4ch5i.xn--h2brj9c" /* कंपनी.भारत */, &z[1640], x, n, n, n, e, e, e, 0x0, t},
5151 {"xn--p5b2bfp1g0b0b.xn--45brj9c" /* কম্পেনি.ভারত */, &z[1645], x, n, n, n, e, e, e, 0x0, t},
5152 {"xn--p5b2bfp5fh3fra.xn--45brj9c" /* কোম্পানি.ভারত */, &z[1645], x, n, n, n, e, e, e, 0x0, t},
5153 {"xn--d9b2bf3g1k.xn--s9brj9c" /* ਕੰਪਨੀ.ਭਾਰਤ */, &z[1647], x, n, n, n, e, e, e, 0x0, t},
5154 {"xn--hdc1b4ch5i.xn--gecrj9c" /* કંપની.ભારત */, &z[1648], x, n, n, n, e, e, e, 0x0, t},
5155 {"xn--vlccpku2dp3h.xn--xkc2dl3a5ee0h" /* நிறுவனம்.இந்தியா */, &z[1650], x, n, n, n, e, e, e, 0x0, t},
5156 {"xn--12co0c3b4eva.xn--o3cw4h" /* ธุรกิจ.ไทย */, &z[1659], x, s{"a.thains.co.th", "b.thains.co.th", "p.thains.co.th"}, n, n, e, e, e, 0x0, t},
5157 {"xn--gmqw5a.xn--j6w193g" /* 個人.香港 */, &z[1745], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
5158 {"xn--55qx5d.xn--j6w193g" /* 公司.香港 */, &z[1745], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
5159 {"xn--mxtq1m.xn--j6w193g" /* 政府.香港 */, &z[1745], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
5160 {"xn--wcvs22d.xn--j6w193g" /* 教育.香港 */, &z[1745], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
5161 {"xn--uc0atv.xn--j6w193g" /* 組織.香港 */, &z[1745], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
5162 {"xn--od0alg.xn--j6w193g" /* 網絡.香港 */, &z[1745], x, s{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, e, e, e, 0x0, t},
5163 {"lda.co.ao", &z[1812], x, s{"ns.inventadomains.com", "ns2.inventadomains.com"}, n, n, e, e, e, 0x0, t},
5164 {"sa.co.ao", &z[1812], x, n, n, n, e, e, e, 0x0, t},
5165 {"esc.edu.ar", &z[1820], x, s{"ns1.innova-red.net", "ns2.innova-red.net"}, n, n, e, e, e, 0x0, t},
5166 {"act.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5167 {"nsw.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5168 {"nt.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5169 {"qld.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5170 {"sa.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5171 {"tas.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5172 {"vic.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5173 {"wa.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
5174 {"fed.rep.br", &z[2096], x, s{"ns1.nicdumali.presse.ml", "ns2.nicdumali.presse.ml", "ns3.nicdumali.presse.ml"}, n, n, e, e, e, 0x0, t},
5175 {"wireless.keyword.cn", &z[2218], x, n, n, n, e, e, e, 0x0, t},
5176 {"ltd.co.im", &z[2670], x, n, n, n, e, e, e, 0x0, t},
5177 {"plc.co.im", &z[2670], x, n, n, n, e, e, e, 0x0, t},
5178 {"lg.gov.ng", &z[3535], x, s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, t},
5179 {"co.net.nz", &z[3743], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x0, t},
5180 {"al.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5181 {"asso.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5182 {"at.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5183 {"au.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5184 {"be.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5185 {"bg.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5186 {"ca.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5187 {"cd.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5188 {"ch.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns1.imp.ch", "ns2.imp.ch"}, n, n, e, e, e, 0x0, t},
5189 {"cn.eu.org", &z[3761], x, s{"ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5190 {"cy.eu.org", &z[3761], x, s{"ns.eu.org", "ns1.absolight.net", "ns1.tee.gr", "ns2.absolight.net", "ns2.tee.gr", "ns3.absolight.net", "ns4.absolight.net"}, n, n, e, e, e, 0x0, t},
5191 {"cz.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5192 {"de.eu.org", &z[3761], x, s{"ns.oberon.net", "ns1.absolight.net", "ns2.absolight.net", "ns2.lf.net", "ns3.absolight.net", "ns4.absolight.net"}, n, n, e, e, e, 0x0, t},
5193 {"dk.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5194 {"edu.eu.org", &z[3761], x, s{"auth1.dns.elm.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5195 {"ee.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5196 {"es.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5197 {"fi.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5198 {"fr.eu.org", &z[3761], x, s{"auth1.dns.elm.net", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5199 {"gr.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns.eu.org", "ns1.absolight.net", "ns1.tee.gr", "ns2.absolight.net", "ns2.tee.gr", "ns3.absolight.net", "ns4.absolight.net"}, n, n, e, e, e, 0x0, t},
5200 {"hr.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5201 {"hu.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5202 {"ie.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5203 {"il.eu.org", &z[3761], x, s{"ns.eu.org", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5204 {"in.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5205 {"int.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5206 {"is.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5207 {"it.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5208 {"jp.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5209 {"kr.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5210 {"lt.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5211 {"lu.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5212 {"lv.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5213 {"me.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5214 {"mk.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5215 {"mt.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5216 {"my.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5217 {"net.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5218 {"ng.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5219 {"nl.eu.org", &z[3761], x, s{"auth.dns.suryo.com", "auth1.dns.elm.net", "ns.eu.org", "ns.lf.net", "ns1.elm-consultancy.nl", "ns4.coloclue.net"}, n, n, e, e, e, 0x0, t},
5220 {"no.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5221 {"nz.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5222 {"pl.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5223 {"pt.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5224 {"ro.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5225 {"ru.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5226 {"se.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5227 {"si.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5228 {"sk.eu.org", &z[3761], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5229 {"tr.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5230 {"uk.eu.org", &z[3761], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5231 {"us.eu.org", &z[3761], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5232 {"co.at.pn", &z[3989], x, n, n, n, e, e, e, 0x0, t},
5233 {"com.au.pn", &z[3990], x, n, n, n, e, e, e, 0x0, t},
5234 {"co.uk.pn", &z[4006], x, n, n, n, e, e, e, 0x0, t},
5235 {"co.at.tc", &z[4386], x, n, n, n, e, e, e, 0x0, t},
5236 {"com.au.tc", &z[4387], x, n, n, n, e, e, e, 0x800, t},
5237 {"co.uk.tc", &z[4418], x, n, n, n, e, e, e, 0x0, t},
5238 {"me.uk.tc", &z[4418], x, n, n, n, e, e, e, 0x0, t},
5239 {"org.uk.tc", &z[4418], x, n, n, n, e, e, e, 0x0, t},
5240 {"co.at.tt", &z[4525], x, n, s{"195.225.236.206"}, n, e, e, e, 0x0, t},
5241 {"com.au.tt", &z[4526], x, n, n, n, e, e, e, 0x0, t},
5242 {"co.uk.tt", &z[4554], x, n, n, n, e, e, e, 0x0, t},
5243 {"me.uk.tt", &z[4554], x, n, n, n, e, e, e, 0x0, t},
5244 {"org.uk.tt", &z[4554], x, n, n, n, e, e, e, 0x0, t},
5245 {"barking-dagenham.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5246 {"barnet.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5247 {"barnsley.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5248 {"bathnes.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5249 {"beds.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5250 {"bexley.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5251 {"bham.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5252 {"blackburn.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5253 {"blackpool.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5254 {"bolton.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5255 {"bournemouth.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5256 {"bracknell-forest.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5257 {"bradford.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5258 {"brent.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5259 {"doncaster.sch.uk", &z[4665], x, n, n, n, e, e, e, 0x0, t},
5260 {"bg.ac.yu", &z[4797], x, n, n, n, e, e, e, 0x800, t},
5261 {"ecape.school.za", &z[4827], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5262 {"fs.school.za", &z[4827], x, s{"mopani.school.za", "ns0.serendipity.org.za", "nyx.marques.co.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, t},
5263 {"gp.school.za", &z[4827], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ns2.obsidian.co.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5264 {"kzn.school.za", &z[4827], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "sec.zadns.net", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, t},
5265 {"lp.school.za", &z[4827], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5266 {"mpm.school.za", &z[4827], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5267 {"ncape.school.za", &z[4827], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, t},
5268 {"nw.school.za", &z[4827], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5269 {"wcape.school.za", &z[4827], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, t},
105 var y = [5192]Zone{
106 {"aaa", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.aaa", "ns2.dns.nic.aaa", "ns3.dns.nic.aaa", "ns4.dns.nic.aaa", "ns5.dns.nic.aaa", "ns6.dns.nic.aaa"}, n, n, n, "whois.nic.aaa", e, t},
107 {"aarp", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.aarp", e, t},
108 {"abarth", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.abarth", "a2.nic.abarth", "b0.nic.abarth", "c0.nic.abarth"}, n, n, n, "whois.afilias-srs.net", e, f},
109 {"abb", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
110 {"abbott", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.abbott", "a2.nic.abbott", "b0.nic.abbott", "c0.nic.abbott"}, n, n, n, "whois.afilias-srs.net", e, f},
111 {"abbvie", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.abbvie", "a2.nic.abbvie", "b0.nic.abbvie", "c0.nic.abbvie"}, n, n, n, "whois.afilias-srs.net", e, f},
112 {"abc", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.abc", e, f},
113 {"able", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.able", "ns2.dns.nic.able", "ns3.dns.nic.able", "ns4.dns.nic.able", "ns5.dns.nic.able", "ns6.dns.nic.able"}, n, n, n, "whois.nic.able", e, t},
114 {"abogado", r, x, 0x40, "http://nic.abogado/", w{"dns1.nic.abogado", "dns2.nic.abogado", "dns3.nic.abogado", "dns4.nic.abogado", "dnsa.nic.abogado", "dnsb.nic.abogado", "dnsc.nic.abogado", "dnsd.nic.abogado"}, n, n, n, "whois.nic.abogado", e, t},
115 {"abudhabi", r, x, 0xc4, "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, w{"Abu Dhabi", "AE-AZ"}, n, "whois.nic.abudhabi", e, f},
116 {"ac", r, z[1754:1759], 0xa0, "https://www.icb.co.uk/", w{"a0.nic.ac", "a2.nic.ac", "b0.nic.ac", "c0.nic.ac"}, n, n, n, "whois.nic.ac", e, t},
117 {"academy", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.academy", e, t},
118 {"accenture", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
119 {"accountant", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.accountant", "ns2.dns.nic.accountant", "ns3.dns.nic.accountant", "ns4.dns.nic.accountant", "ns5.dns.nic.accountant", "ns6.dns.nic.accountant"}, n, n, n, "whois.nic.accountant", e, t},
120 {"accountants", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.accountants", e, t},
121 {"acer", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
122 {"aco", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.nic.aco", "m.dns.nic.aco", "n.dns.nic.aco"}, n, n, n, "whois.nic.aco", e, t},
123 {"active", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
124 {"actor", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.actor", e, t},
125 {"ad", r, z[1759:1760], 0xe0, "http://www.nic.ad/", w{"ad.cctld.authdns.ripe.net", "ad.ns.nic.es", "dnsc.ad", "dnsm.ad", "ns3.nic.fr"}, n, n, n, e, e, t},
126 {"adac", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.adac", "b.nic.adac", "c.nic.adac", "d.nic.adac"}, n, n, n, "whois.nic.adac", e, t},
127 {"ads", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
128 {"adult", r, x, 0x41, "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, n, "whois.registrar.adult", e, t},
129 {"ae", r, z[1760:1769], 0xa0, "https://www.nic.ae/", w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, "whois.aeda.net.ae", e, t},
130 {"aeg", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.aeg", e, t},
131 {"aero", r, z[1769:1772], 0x1040, "https://information.aero/", w{"a0.nic.aero", "a2.nic.aero", "b0.nic.aero", "b2.nic.aero", "c0.nic.aero"}, n, n, n, "whois.aero", e, f},
132 {"aetna", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.aetna", "ns2.dns.nic.aetna", "ns3.dns.nic.aetna", "ns4.dns.nic.aetna", "ns5.dns.nic.aetna", "ns6.dns.nic.aetna"}, n, n, n, "whois.nic.aetna", e, t},
133 {"af", r, z[1772:1782], 0xa0, "http://www.nic.af/", w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.af", e, f},
134 {"afamilycompany", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.afamilycompany", e, f},
135 {"afl", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.afl", "b.nic.afl", "c.nic.afl", "d.nic.afl"}, n, n, n, "whois.nic.afl", e, f},
136 {"africa", r, x, 0xc0, "https://newgtlds.icann.org/", w{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, w{"Africa"}, n, "africa-whois.registry.net.za", e, f},
137 {"africamagic", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
138 {"ag", r, z[1782:1788], 0xa0, "http://www.nic.ag/", w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois.nic.ag", e, f},
139 {"agakhan", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.agakhan", "a2.nic.agakhan", "b0.nic.agakhan", "c0.nic.agakhan"}, n, n, n, "whois.afilias-srs.net", e, f},
140 {"agency", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.agency", e, t},
141 {"ai", r, z[1788:1792], 0xa0, "http://nic.com.ai/", w{"a.lactld.org", "anycastdns1-cz.nic.ai", "anycastdns2-cz.nic.ai", "pch.whois.ai"}, n, n, n, "whois.nic.ai", e, f},
142 {"aig", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.aig", "ns2.dns.nic.aig", "ns3.dns.nic.aig", "ns4.dns.nic.aig", "ns5.dns.nic.aig", "ns6.dns.nic.aig"}, n, n, n, "whois.nic.aig", e, t},
143 {"aigo", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
144 {"airbus", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.airbus", e, t},
145 {"airforce", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.airforce", e, t},
146 {"airtel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.airtel", e, f},
147 {"akdn", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.akdn", "a2.nic.akdn", "b0.nic.akdn", "c0.nic.akdn"}, n, n, n, "whois.afilias-srs.net", e, f},
148 {"al", r, z[1792:1802], 0xa0, "http://www.ert.gov.al/ert_eng/domain.html", w{"munnari.oz.au", "ns1.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, "http://www.akep.al/sq/kerkoni-domain", f},
149 {"alcon", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
150 {"alfaromeo", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.alfaromeo", "a2.nic.alfaromeo", "b0.nic.alfaromeo", "c0.nic.alfaromeo"}, n, n, n, "whois.afilias-srs.net", e, f},
151 {"alibaba", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.alibaba", "a2.nic.alibaba", "b0.nic.alibaba", "c0.nic.alibaba"}, n, n, n, "whois.nic.alibaba", e, f},
152 {"alipay", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.alipay", "a2.nic.alipay", "b0.nic.alipay", "c0.nic.alipay"}, n, n, n, "whois.nic.alipay", e, f},
153 {"allfinanz", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.allfinanz", "b.nic.allfinanz", "c.nic.allfinanz", "d.nic.allfinanz"}, n, n, n, "whois.nic.allfinanz", e, f},
154 {"allfinanzberater", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
155 {"allfinanzberatung", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
156 {"allstate", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.allstate", "a2.nic.allstate", "b0.nic.allstate", "c0.nic.allstate"}, n, n, n, "whois.afilias-srs.net", e, f},
157 {"ally", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.ally", "b.nic.ally", "c.nic.ally", "d.nic.ally"}, n, n, n, "whois.nic.ally", e, f},
158 {"alsace", r, x, 0x4c0, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-A"}, n, "whois-alsace.nic.fr", e, t},
159 {"alstom", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.alstom", e, f},
160 {"am", r, z[1802:1809], 0xa0, "https://www.amnic.net/", w{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am"}, n, n, n, "whois.amnic.net", e, t},
161 {"amazon", r, x, 0x42, "http://nic.amazon/", w{"dns1.nic.amazon", "dns2.nic.amazon", "dns3.nic.amazon", "dns4.nic.amazon", "dnsa.nic.amazon", "dnsb.nic.amazon", "dnsc.nic.amazon", "dnsd.nic.amazon"}, n, n, n, "whois.nic.amazon", e, t},
162 {"americanexpress", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.americanexpress", "ns2.dns.nic.americanexpress", "ns3.dns.nic.americanexpress", "ns4.dns.nic.americanexpress", "ns5.dns.nic.americanexpress", "ns6.dns.nic.americanexpress"}, n, n, n, "whois.nic.americanexpress", e, t},
163 {"americanfamily", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.americanfamily", e, t},
164 {"amex", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.amex", "ns2.dns.nic.amex", "ns3.dns.nic.amex", "ns4.dns.nic.amex", "ns5.dns.nic.amex", "ns6.dns.nic.amex"}, n, n, n, "whois.nic.amex", e, t},
165 {"amfam", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.amfam", e, t},
166 {"amica", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.amica", "ns2.dns.nic.amica", "ns3.dns.nic.amica", "ns4.dns.nic.amica", "ns5.dns.nic.amica", "ns6.dns.nic.amica"}, n, n, n, "whois.nic.amica", e, f},
167 {"amp", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
168 {"amsterdam", r, x, 0xc4, "https://nic.amsterdam/", w{"ns1.nic.amsterdam", "ns2.nic.amsterdam", "ns3.nic.amsterdam"}, n, w{"Amsterdam", "NL-NH"}, n, "whois.nic.amsterdam", e, f},
169 {"an", r, z[1809:1813], 0x8a8, "http://www.una.an/an_domreg/", n, n, n, n, e, e, f},
170 {"analytics", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.analytics", "ns2.dns.nic.analytics", "ns3.dns.nic.analytics", "ns4.dns.nic.analytics", "ns5.dns.nic.analytics", "ns6.dns.nic.analytics"}, n, n, n, "whois.nic.analytics", e, t},
171 {"android", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
172 {"anquan", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, f},
173 {"ansons", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
174 {"anthem", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
175 {"antivirus", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
176 {"anz", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.anz", "b.nic.anz", "c.nic.anz", "d.nic.anz"}, n, n, n, "whois.nic.anz", e, f},
177 {"ao", r, z[1813:1819], 0xa0, "https://www.dns.ao/ao/", w{"ao01.dns.pt", "ao03.dns.pt", "h.dns.pt"}, n, n, n, e, e, f},
178 {"aol", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.aol", e, f},
179 {"apartments", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.apartments", e, t},
180 {"app", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
181 {"apple", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.apple", "a2.nic.apple", "b0.nic.apple", "c0.nic.apple"}, n, n, n, "whois.afilias-srs.net", e, f},
182 {"aq", r, z[1819:1820], 0xa0, "http://www.gobin.info/domainname/aq.txt", w{"fork.sth.dnsnode.net", "ns1.anycast.dns.aq", "ns99.dns.net.nz"}, n, n, n, e, e, f},
183 {"aquarelle", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.aquarelle", e, t},
184 {"aquitaine", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
185 {"ar", r, z[1820:1829], 0xa0, "https://nic.ar/", w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "d.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, "whois.nic.ar", e, t},
186 {"arab", r, x, 0x40, "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, n, "whois.nic.arab", e, f},
187 {"aramco", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.aramco", "ns2.dns.nic.aramco", "ns3.dns.nic.aramco", "ns4.dns.nic.aramco", "ns5.dns.nic.aramco", "ns6.dns.nic.aramco"}, n, n, n, "whois.nic.aramco", e, t},
188 {"archi", r, x, 0x40, "https://domains.archi/", w{"a0.nic.archi", "a2.nic.archi", "b0.nic.archi", "c0.nic.archi"}, n, n, n, "whois.afilias.net", e, f},
189 {"architect", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
190 {"army", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.army", e, t},
191 {"arpa", r, z[1829:1835], 0x148, "https://www.iana.org/domains/arpa", w{"a.root-servers.net", "b.root-servers.net", "c.root-servers.net", "d.root-servers.net", "e.root-servers.net", "f.root-servers.net", "g.root-servers.net", "h.root-servers.net", "i.root-servers.net", "k.root-servers.net", "l.root-servers.net", "m.root-servers.net"}, n, n, n, "whois.iana.org", e, f},
192 {"art", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.art", "b.nic.art", "c.nic.art", "d.nic.art"}, n, n, n, "whois.nic.art", e, t},
193 {"arte", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.arte", e, t},
194 {"as", r, x, 0xe0, "https://nic.as/", w{"ns1.asnic.biz", "ns2.asnic.info", "ns3.asnic.org", "ns4.asnic.uk", "ns5.asnic.us", "pch.nic.as"}, n, n, n, "whois.nic.as", e, t},
195 {"asda", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.asda", e, f},
196 {"asia", r, x, 0x1040, "https://www.dot.asia/", w{"a0.asia.afilias-nst.info", "a2.asia.afilias-nst.info", "b0.asia.afilias-nst.asia", "b2.asia.afilias-nst.org", "c0.asia.afilias-nst.info", "d0.asia.afilias-nst.asia"}, n, n, n, "whois.nic.asia", e, t},
197 {"associates", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.associates", e, t},
198 {"astrium", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
199 {"at", r, z[1835:1840], 0xa0, "https://www.nic.at/de", w{"d.ns.at", "j.ns.at", "n.ns.at", "ns1.univie.ac.at", "ns2.univie.ac.at", "ns9.univie.ac.at", "r.ns.at", "u.ns.at"}, n, n, n, "whois.nic.at", e, t},
200 {"athleta", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.athleta", "ns2.dns.nic.athleta", "ns3.dns.nic.athleta", "ns4.dns.nic.athleta", "ns5.dns.nic.athleta", "ns6.dns.nic.athleta"}, n, n, n, "whois.nic.athleta", e, t},
201 {"attorney", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.attorney", e, t},
202 {"au", r, z[1840:1860], 0xa8, "https://www.auda.org.au/", w{"a.au", "c.au", "d.au", "m.au", "n.au", "q.au", "r.au", "s.au", "t.au"}, n, n, n, "whois.auda.org.au", e, f},
203 {"auction", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.auction", e, t},
204 {"audi", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.audi", "a2.nic.audi", "b0.nic.audi", "c0.nic.audi"}, n, n, n, "whois.afilias-srs.net", e, t},
205 {"audible", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.audible", "dns2.nic.audible", "dns3.nic.audible", "dns4.nic.audible", "dnsa.nic.audible", "dnsb.nic.audible", "dnsc.nic.audible", "dnsd.nic.audible"}, n, n, n, "whois.nic.audible", e, t},
206 {"audio", r, x, 0x40, "https://nic.audio/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
207 {"auspost", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.auspost", "b.nic.auspost", "c.nic.auspost", "d.nic.auspost"}, n, n, n, "whois.nic.auspost", e, f},
208 {"author", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.author", "dns2.nic.author", "dns3.nic.author", "dns4.nic.author", "dnsa.nic.author", "dnsb.nic.author", "dnsc.nic.author", "dnsd.nic.author"}, n, n, n, "whois.nic.author", e, t},
209 {"auto", r, x, 0x40, "https://nic.auto/", w{"a.nic.auto", "b.nic.auto", "c.nic.auto", "d.nic.auto"}, n, n, n, "whois.nic.auto", e, t},
210 {"autoinsurance", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
211 {"autos", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.autos", "b.nic.autos", "c.nic.autos", "d.nic.autos"}, n, n, n, "whois.nic.autos", e, f},
212 {"avery", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
213 {"avianca", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.avianca", "a2.nic.avianca", "b0.nic.avianca", "c0.nic.avianca"}, n, n, n, "whois.afilias-srs.net", e, f},
214 {"aw", r, z[1860:1861], 0xa0, "http://www.setarnet.aw/", w{"aw01.setarnet.aw", "aw02.setarnet.aw", "ns1.dns.aw", "ns2.dns.aw", "ns3.dns.aw"}, n, n, n, "whois.nic.aw", e, f},
215 {"aws", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.aws", "dns2.nic.aws", "dns3.nic.aws", "dns4.nic.aws", "dnsa.nic.aws", "dnsb.nic.aws", "dnsc.nic.aws", "dnsd.nic.aws"}, n, n, n, "whois.nic.aws", e, t},
216 {"ax", r, x, 0xa0, "https://www.regeringen.ax/naringsliv-foretagande/ansok-om-ax-domannamn", w{"ns1.aland.net", "ns2.aland.net", "ns3.alcom.fi", "ns4.alcom.fi"}, n, n, n, "whois.ax", e, f},
217 {"axa", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.axa", "ns2.dns.nic.axa", "ns3.dns.nic.axa", "ns4.dns.nic.axa", "ns5.dns.nic.axa", "ns6.dns.nic.axa"}, n, n, n, "whois.nic.axa", e, t},
218 {"axis", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
219 {"az", r, z[1861:1882], 0xa0, "https://www.nic.az/", w{"az.hostmaster.ua", "rip.psg.com"}, n, n, n, e, e, f},
220 {"azure", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
221 {"ba", r, z[1882:1895], 0xa0, "https://www.nic.ba/", w{"ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, "http://nic.ba/lat/menu/view/13", f},
222 {"baby", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.baby", "b.nic.baby", "c.nic.baby", "d.nic.baby"}, n, n, n, "whois.nic.baby", e, f},
223 {"baidu", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
224 {"banamex", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.banamex", "ns2.dns.nic.banamex", "ns3.dns.nic.banamex", "ns4.dns.nic.banamex", "ns5.dns.nic.banamex", "ns6.dns.nic.banamex"}, n, n, n, "whois.nic.banamex", e, t},
225 {"bananarepublic", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.bananarepublic", "ns2.dns.nic.bananarepublic", "ns3.dns.nic.bananarepublic", "ns4.dns.nic.bananarepublic", "ns5.dns.nic.bananarepublic", "ns6.dns.nic.bananarepublic"}, n, n, n, "whois.nic.bananarepublic", e, t},
226 {"band", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.band", e, t},
227 {"bank", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.bank", "b.nic.bank", "c.nic.bank", "d.nic.bank", "e.nic.bank", "f.nic.bank"}, n, n, n, "whois.nic.bank", e, f},
228 {"banque", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
229 {"bar", r, x, 0x40, e, w{"a.nic.bar", "b.nic.bar", "c.nic.bar", "d.nic.bar"}, n, n, n, "whois.nic.bar", e, t},
230 {"barcelona", r, x, 0x40, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.barcelona", e, f},
231 {"barclaycard", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.barclaycard", "b.nic.barclaycard", "c.nic.barclaycard", "d.nic.barclaycard"}, n, n, n, "whois.nic.barclaycard", e, f},
232 {"barclays", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.barclays", "b.nic.barclays", "c.nic.barclays", "d.nic.barclays"}, n, n, n, "whois.nic.barclays", e, f},
233 {"barefoot", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.barefoot", e, f},
234 {"bargains", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.bargains", e, t},
235 {"baseball", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.baseball", "ns2.dns.nic.baseball", "ns3.dns.nic.baseball", "ns4.dns.nic.baseball", "ns5.dns.nic.baseball", "ns6.dns.nic.baseball"}, n, n, n, "whois.nic.baseball", e, t},
236 {"basketball", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.basketball", "b.nic.basketball", "c.nic.basketball", "d.nic.basketball"}, n, n, n, "whois.nic.basketball", e, f},
237 {"bauhaus", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.bauhaus", e, f},
238 {"bayern", r, x, 0x4c0, "https://nic.bayern/", w{"dns1.nic.bayern", "dns2.nic.bayern", "dns3.nic.bayern", "dns4.nic.bayern", "dnsa.nic.bayern", "dnsb.nic.bayern", "dnsc.nic.bayern", "dnsd.nic.bayern"}, n, w{"DE-BY"}, n, "whois.nic.bayern", e, t},
239 {"bb", r, z[1895:1904], 0xa0, "http://www.barbadosdomains.net/", w{"ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, "http://whois.telecoms.gov.bb/search_domain.php", f},
240 {"bbb", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
241 {"bbc", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.bbc", "dns2.nic.bbc", "dns3.nic.bbc", "dns4.nic.bbc", "dnsa.nic.bbc", "dnsb.nic.bbc", "dnsc.nic.bbc", "dnsd.nic.bbc"}, n, n, n, "whois.nic.bbc", e, f},
242 {"bbt", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bbt", e, f},
243 {"bbva", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bbva", e, t},
244 {"bcg", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.bcg", "a2.nic.bcg", "b0.nic.bcg", "c0.nic.bcg"}, n, n, n, "whois.nic.bcg", e, f},
245 {"bcn", r, x, 0x40, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.bcn", e, f},
246 {"bd", r, z[1904:1911], 0xa8, "http://www.bttb.net.bd/", w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, "http://whois.btcl.net.bd/", t},
247 {"be", r, x, 0xa0, e, w{"a.nsset.be", "b.nsset.be", "c.nsset.be", "d.nsset.be", "y.nsset.be", "z.nsset.be"}, n, n, n, "whois.dns.be", e, t},
248 {"beats", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.beats", "a2.nic.beats", "b0.nic.beats", "c0.nic.beats"}, n, n, n, "whois.afilias-srs.net", e, f},
249 {"beauty", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.beauty", "b.nic.beauty", "c.nic.beauty", "d.nic.beauty"}, n, n, n, "whois.nic.beauty", e, t},
250 {"beer", r, x, 0x40, "http://nic.beer/", w{"dns1.nic.beer", "dns2.nic.beer", "dns3.nic.beer", "dns4.nic.beer", "dnsa.nic.beer", "dnsb.nic.beer", "dnsc.nic.beer", "dnsd.nic.beer"}, n, n, n, "whois.nic.beer", e, t},
251 {"beknown", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
252 {"bentley", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.bentley", "dns2.nic.bentley", "dns3.nic.bentley", "dns4.nic.bentley", "dnsa.nic.bentley", "dnsb.nic.bentley", "dnsc.nic.bentley", "dnsd.nic.bentley"}, n, n, n, "whois.nic.bentley", e, t},
253 {"berlin", r, x, 0xc4, e, w{"a.dns.nic.berlin", "m.dns.nic.berlin", "n.dns.nic.berlin"}, n, w{"Berlin", "DE-BE"}, n, "whois.nic.berlin", e, t},
254 {"best", r, x, 0x40, "https://nic.best/", w{"a.nic.best", "b.nic.best", "c.nic.best", "d.nic.best"}, n, n, n, "whois.nic.best", e, t},
255 {"bestbuy", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.bestbuy", "a2.nic.bestbuy", "b0.nic.bestbuy", "c0.nic.bestbuy"}, n, n, n, "whois.nic.bestbuy", e, f},
256 {"bet", r, x, 0x40, "https://get.bet/", w{"a0.nic.bet", "a2.nic.bet", "b0.nic.bet", "c0.nic.bet"}, n, n, n, "whois.afilias.net", e, t},
257 {"bf", r, z[1911:1912], 0xa0, e, w{"a.registre.bf", "censvrns0001.ird.fr", "nahouri.onatel.bf"}, n, n, n, e, e, t},
258 {"bg", r, z[1912:1948], 0xa0, "https://www.register.bg/user/", w{"a.nic.bg", "b.nic.bg", "c.nic.bg", "d.nic.bg", "e.nic.bg", "p.nic.bg"}, n, n, n, "whois.register.bg", e, t},
259 {"bh", r, z[1948:1956], 0xa0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
260 {"bharti", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
261 {"bi", r, z[1956:1966], 0xa0, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, "whois1.nic.bi", e, f},
262 {"bible", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.bible", "ns2.dns.nic.bible", "ns3.dns.nic.bible", "ns4.dns.nic.bible", "ns5.dns.nic.bible", "ns6.dns.nic.bible"}, n, n, n, "whois.nic.bible", e, t},
263 {"bid", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.bid", "ns2.dns.nic.bid", "ns3.dns.nic.bid", "ns4.dns.nic.bid", "ns5.dns.nic.bid", "ns6.dns.nic.bid"}, n, n, n, "whois.nic.bid", e, t},
264 {"bike", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.bike", e, t},
265 {"bing", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
266 {"bingo", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.bingo", e, t},
267 {"bio", r, x, 0x40, "https://domains.bio/", w{"a0.nic.bio", "a2.nic.bio", "b0.nic.bio", "c0.nic.bio"}, n, n, n, "whois.afilias.net", e, t},
268 {"biz", r, z[1966:1968], 0x40, e, w{"a.gtld.biz", "b.gtld.biz", "c.gtld.biz", "e.gtld.biz", "f.gtld.biz", "k.gtld.biz"}, n, n, n, "whois.nic.biz", e, t},
269 {"bj", r, z[1968:1975], 0xa0, e, w{"anycastdns1.nic.bj", "anycastdns2.nic.bj", "ns-bj.afrinic.net", "ns-bj.nic.fr", "ns1.nic.bj", "ns2.nic.bj", "pch.nic.bj"}, n, n, n, "whois.nic.bj", e, f},
270 {"black", r, x, 0x40, "https://get.black/", w{"a0.nic.black", "a2.nic.black", "b0.nic.black", "c0.nic.black"}, n, n, n, "whois.afilias.net", e, t},
271 {"blackfriday", r, x, 0x40, "https://nic.blackfriday/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
272 {"blanco", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.blanco", e, t},
273 {"blockbuster", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.blockbuster", "a2.nic.blockbuster", "b0.nic.blockbuster", "c0.nic.blockbuster"}, n, n, n, "whois.nic.blockbuster", e, f},
274 {"blog", r, z[1975:2001], 0x40, "https://my.blog/", w{"a.nic.blog", "b.nic.blog", "c.nic.blog", "d.nic.blog"}, n, n, n, "whois.nic.blog", e, f},
275 {"bloomberg", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
276 {"bloomingdales", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
277 {"blue", r, x, 0x40, "https://dotblue.blue/", w{"a0.nic.blue", "a2.nic.blue", "b0.nic.blue", "b2.nic.blue", "c0.nic.blue"}, n, n, n, "whois.afilias.net", e, t},
278 {"bm", r, z[2001:2006], 0xa0, "https://www.bermudanic.bm/", w{"a0.bm.afilias-nst.info", "a2.bm.afilias-nst.info", "b0.bm.afilias-nst.org", "b2.bm.afilias-nst.org", "c0.bm.afilias-nst.info", "d0.bm.afilias-nst.org"}, n, n, n, e, "https://www.bermudanic.bm/whois.htm", f},
279 {"bms", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bms", e, f},
280 {"bmw", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.bmw", "b.nic.bmw", "c.nic.bmw", "d.nic.bmw"}, n, n, n, "whois.nic.bmw", e, f},
281 {"bn", r, z[2006:2011], 0xa0, "http://www.brunet.bn/products_webrelated_domain_main.htm", w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, "whois.bnnic.bn", e, f},
282 {"bnl", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.bnl", e, f},
283 {"bnpparibas", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.bnpparibas", "a2.nic.bnpparibas", "b0.nic.bnpparibas", "c0.nic.bnpparibas"}, n, n, n, "whois.afilias-srs.net", e, t},
284 {"bo", r, z[2011:2020], 0xa0, e, w{"anycast.ns.nic.bo", "ns.dns.br", "ns.nic.bo", "ns2.nic.fr"}, n, n, n, "whois.nic.bo", e, t},
285 {"boats", r, x, 0x40, "https://nic.boats/", w{"a.nic.boats", "b.nic.boats", "c.nic.boats", "d.nic.boats"}, n, n, n, "whois.nic.boats", e, f},
286 {"boehringer", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.boehringer", "a2.nic.boehringer", "b0.nic.boehringer", "c0.nic.boehringer"}, n, n, n, "whois.afilias-srs.net", e, f},
287 {"bofa", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bofa", e, f},
288 {"bom", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, "whois.gtlds.nic.br", e, t},
289 {"bond", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.bond", "b.nic.bond", "c.nic.bond", "d.nic.bond"}, n, n, n, "whois.nic.bond", e, f},
290 {"boo", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
291 {"book", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.book", "dns2.nic.book", "dns3.nic.book", "dns4.nic.book", "dnsa.nic.book", "dnsb.nic.book", "dnsc.nic.book", "dnsd.nic.book"}, n, n, n, "whois.nic.book", e, t},
292 {"booking", r, x, 0x48, "https://newgtlds.icann.org/", w{"ns1.dns.nic.booking", "ns2.dns.nic.booking", "ns3.dns.nic.booking", "ns4.dns.nic.booking", "ns5.dns.nic.booking", "ns6.dns.nic.booking"}, n, n, n, "whois.nic.booking", e, t},
293 {"boots", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.boots", e, f},
294 {"bosch", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.bosch", e, f},
295 {"bostik", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.bostik", e, t},
296 {"boston", r, x, 0xc4, "http://nic.boston/", w{"dns1.nic.boston", "dns2.nic.boston", "dns3.nic.boston", "dns4.nic.boston", "dnsa.nic.boston", "dnsb.nic.boston", "dnsc.nic.boston", "dnsd.nic.boston"}, n, w{"Boston"}, n, "whois.nic.boston", e, f},
297 {"bot", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.bot", "dns2.nic.bot", "dns3.nic.bot", "dns4.nic.bot", "dnsa.nic.bot", "dnsb.nic.bot", "dnsc.nic.bot", "dnsd.nic.bot"}, n, n, n, "whois.nic.bot", e, t},
298 {"boutique", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.boutique", e, t},
299 {"box", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.box", "b.nic.box", "c.nic.box", "d.nic.box"}, n, n, n, "whois.nic.box", e, t},
300 {"br", r, z[2020:2126], 0xa0, "https://nic.br/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, "whois.registro.br", e, t},
301 {"bradesco", r, x, 0x42, "http://nic.bradesco/", w{"dns1.nic.bradesco", "dns2.nic.bradesco", "dns3.nic.bradesco", "dns4.nic.bradesco", "dnsa.nic.bradesco", "dnsb.nic.bradesco", "dnsc.nic.bradesco", "dnsd.nic.bradesco"}, n, n, n, "whois.nic.bradesco", e, f},
302 {"bridgestone", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.bridgestone", e, t},
303 {"broadway", r, x, 0x40, "https://discover.broadway/", w{"dns1.nic.broadway", "dns2.nic.broadway", "dns3.nic.broadway", "dns4.nic.broadway", "dnsa.nic.broadway", "dnsb.nic.broadway", "dnsc.nic.broadway", "dnsd.nic.broadway"}, n, n, n, "whois.nic.broadway", e, f},
304 {"broker", r, x, 0x40, "https://bostonivy.co/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.broker", e, f},
305 {"brother", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.brother", e, t},
306 {"brussels", r, x, 0xc4, "https://newgtlds.icann.org/", w{"a.nsset.brussels", "b.nsset.brussels", "c.nsset.brussels", "d.nsset.brussels", "y.nsset.brussels", "z.nsset.brussels"}, n, w{"Brussels", "BE-BRU"}, n, "whois.nic.brussels", e, t},
307 {"bs", r, z[2126:2132], 0xa0, e, w{"anyns.dns.bs", "anyns.pch.net", "ns36.cdns.net"}, n, n, n, e, "http://www.nic.bs/cgi-bin/search.pl", t},
308 {"bt", r, z[2132:2137], 0xa0, e, w{"auth00.ns.uu.net", "auth61.ns.uu.net", "ns.itu.ch", "ns1.druknet.bt", "ns2.druknet.bt", "ns3.druknet.bt", "phloem.uoregon.edu"}, n, n, n, e, "http://www.nic.bt/", f},
309 {"budapest", r, x, 0xc4, "http://nic.budapest/", w{"dns1.nic.budapest", "dns2.nic.budapest", "dns3.nic.budapest", "dns4.nic.budapest", "dnsa.nic.budapest", "dnsb.nic.budapest", "dnsc.nic.budapest", "dnsd.nic.budapest"}, n, w{"Budapest", "HU-BU"}, n, "whois.nic.budapest", e, t},
310 {"bugatti", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.bugatti", "a2.nic.bugatti", "b0.nic.bugatti", "c0.nic.bugatti"}, n, n, n, "whois.afilias-srs.net", e, t},
311 {"buick", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
312 {"build", r, x, 0x40, "https://about.build/", w{"a.nic.build", "b.nic.build", "c.nic.build", "d.nic.build"}, n, n, n, "whois.nic.build", e, f},
313 {"builders", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.builders", e, t},
314 {"business", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.business", e, t},
315 {"buy", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.buy", "dns2.nic.buy", "dns3.nic.buy", "dns4.nic.buy", "dnsa.nic.buy", "dnsb.nic.buy", "dnsc.nic.buy", "dnsd.nic.buy"}, n, n, n, "whois.nic.buy", e, t},
316 {"buzz", r, x, 0x40, e, w{"ns1.dns.nic.buzz", "ns2.dns.nic.buzz", "ns3.dns.nic.buzz", "ns4.dns.nic.buzz", "ns5.dns.nic.buzz", "ns6.dns.nic.buzz"}, n, n, n, "whois.nic.buzz", e, t},
317 {"bv", r, x, 0xa8, e, w{"nac.no", "nn.uninett.no", "server.nordu.net"}, n, n, n, "whois.norid.no", e, f},
318 {"bw", r, z[2137:2141], 0xa0, e, w{"dns1.nic.net.bw", "master.btc.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, n, "whois.nic.net.bw", e, f},
319 {"bway", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
320 {"by", r, z[2141:2146], 0xa0, "https://domain.by/", w{"dns1.tld.hosterby.com", "dns2.tld.hosterby.com", "dns3.tld.hosterby.com", "dns4.tld.hosterby.com", "dns5.tld.hosterby.com", "dns6.tld.hosterby.com"}, n, n, n, "whois.cctld.by", e, f},
321 {"bz", r, z[2146:2153], 0xe0, "https://www.belizenic.bz/", w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois.afilias-grs.info", e, f},
322 {"bzh", r, x, 0x4c0, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-E"}, n, "whois.nic.bzh", e, t},
323 {"ca", r, z[2153:2169], 0xa0, e, w{"any.ca-servers.ca", "c.ca-servers.ca", "j.ca-servers.ca", "x.ca-servers.ca"}, n, n, n, "whois.cira.ca", e, t},
324 {"cab", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cab", e, t},
325 {"cadillac", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
326 {"cafe", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cafe", e, t},
327 {"cal", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
328 {"call", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.call", "dns2.nic.call", "dns3.nic.call", "dns4.nic.call", "dnsa.nic.call", "dnsb.nic.call", "dnsc.nic.call", "dnsd.nic.call"}, n, n, n, "whois.nic.call", e, t},
329 {"calvinklein", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.calvinklein", "ns2.dns.nic.calvinklein", "ns3.dns.nic.calvinklein", "ns4.dns.nic.calvinklein", "ns5.dns.nic.calvinklein", "ns6.dns.nic.calvinklein"}, n, n, n, "whois.nic.calvinklein", e, t},
330 {"cam", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.cam", "b.nic.cam", "c.nic.cam", "d.nic.cam"}, n, n, n, "whois.nic.cam", e, t},
331 {"camera", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.camera", e, t},
332 {"camp", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.camp", e, t},
333 {"canalplus", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
334 {"cancerresearch", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.cancerresearch", "b.nic.cancerresearch", "c.nic.cancerresearch", "d.nic.cancerresearch"}, n, n, n, "whois.nic.cancerresearch", e, f},
335 {"canon", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.canon", e, t},
336 {"capetown", r, x, 0xc4, e, w{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, w{"Cape Town"}, n, "capetown-whois.registry.net.za", e, t},
337 {"capital", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.capital", e, t},
338 {"capitalone", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.capitalone", e, f},
339 {"car", r, x, 0x40, "https://nic.car/", w{"a.nic.car", "b.nic.car", "c.nic.car", "d.nic.car"}, n, n, n, "whois.nic.car", e, t},
340 {"caravan", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.caravan", "ns2.dns.nic.caravan", "ns3.dns.nic.caravan", "ns4.dns.nic.caravan", "ns5.dns.nic.caravan", "ns6.dns.nic.caravan"}, n, n, n, "whois.nic.caravan", e, t},
341 {"cards", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cards", e, t},
342 {"care", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.care", e, t},
343 {"career", r, x, 0x40, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.career", e, t},
344 {"careers", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.careers", e, t},
345 {"carinsurance", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
346 {"cars", r, x, 0x40, "https://nic.cars/", w{"a.nic.cars", "b.nic.cars", "c.nic.cars", "d.nic.cars"}, n, n, n, "whois.nic.cars", e, t},
347 {"cartier", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.cartier", e, t},
348 {"casa", r, x, 0x40, "http://nic.casa/", w{"dns1.nic.casa", "dns2.nic.casa", "dns3.nic.casa", "dns4.nic.casa", "dnsa.nic.casa", "dnsb.nic.casa", "dnsc.nic.casa", "dnsd.nic.casa"}, n, n, n, "whois.nic.casa", e, t},
349 {"case", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.case", "a2.nic.case", "b0.nic.case", "c0.nic.case"}, n, n, n, "whois.nic.case", e, f},
350 {"caseih", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.caseih", e, f},
351 {"cash", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cash", e, t},
352 {"cashbackbonus", r, x, 0x48, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
353 {"casino", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.casino", e, t},
354 {"cat", r, x, 0x1440, "https://domini.cat/", w{"anyc1.irondns.net", "cat.pch.net", "ns.nic.cat", "ns1.nic.es", "nsc.nic.de", "switch.nic.cat"}, n, w{"ES-CT"}, n, "whois.nic.cat", e, t},
355 {"catalonia", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
356 {"catering", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.catering", e, t},
357 {"catholic", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.catholic", "b.nic.catholic", "c.nic.catholic", "d.nic.catholic"}, n, n, n, "whois.nic.catholic", e, f},
358 {"cba", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.cba", "b.nic.cba", "c.nic.cba", "d.nic.cba"}, n, n, n, "whois.nic.cba", e, f},
359 {"cbn", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.cbn", "ns2.dns.nic.cbn", "ns3.dns.nic.cbn", "ns4.dns.nic.cbn", "ns5.dns.nic.cbn", "ns6.dns.nic.cbn"}, n, n, n, "whois.nic.cbn", e, t},
360 {"cbre", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.cbre", "ns2.dns.nic.cbre", "ns3.dns.nic.cbre", "ns4.dns.nic.cbre", "ns5.dns.nic.cbre", "ns6.dns.nic.cbre"}, n, n, n, "whois.nic.cbre", e, t},
361 {"cbs", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.cbs", "a2.nic.cbs", "b0.nic.cbs", "c0.nic.cbs"}, n, n, n, "whois.afilias-srs.net", e, f},
362 {"cc", r, z[2169:2173], 0xe0, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "ccwhois.verisign-grs.com", e, t},
363 {"cd", r, z[2173:2179], 0xe0, "https://www.nic.cd/nic.cd/", w{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, n, "whois.cd", e, f},
364 {"ceb", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
365 {"center", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.center", e, t},
366 {"ceo", r, x, 0x40, e, w{"a.nic.ceo", "b.nic.ceo", "c.nic.ceo", "d.nic.ceo"}, n, n, n, "whois.nic.ceo", e, t},
367 {"cern", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.cern", "a2.nic.cern", "b0.nic.cern", "c0.nic.cern"}, n, n, n, "whois.afilias-srs.net", e, f},
368 {"cf", r, x, 0xa0, e, w{"a.ns.cf", "b.ns.cf", "c.ns.cf", "d.ns.cf"}, n, n, n, "whois.dot.cf", e, t},
369 {"cfa", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cfa", e, f},
370 {"cfd", r, x, 0x40, "https://bostonivy.co/", w{"a.nic.cfd", "b.nic.cfd", "c.nic.cfd", "d.nic.cfd"}, n, n, n, "whois.nic.cfd", e, f},
371 {"cg", r, x, 0xa0, e, w{"dns-fr.dnsafrica.net", "dns-za.dnsafrica.net", "sunic.sunet.se"}, n, n, n, e, "http://www.nic.cg/cgi-bin/whois.pl", f},
372 {"ch", r, x, 0xa0, e, w{"a.nic.ch", "b.nic.ch", "c.nic.ch", "e.nic.ch", "f.nic.ch", "g.nic.ch"}, n, n, n, "whois.nic.ch", e, t},
373 {"chanel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.chanel", e, f},
374 {"changiairport", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
375 {"channel", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
376 {"charity", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.charity", e, t},
377 {"chartis", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
378 {"chase", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.chase", "ns2.dns.nic.chase", "ns3.dns.nic.chase", "ns4.dns.nic.chase", "ns5.dns.nic.chase", "ns6.dns.nic.chase"}, n, n, n, "whois.nic.chase", e, t},
379 {"chat", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.chat", e, t},
380 {"cheap", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cheap", e, t},
381 {"chesapeake", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
382 {"chevrolet", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
383 {"chevy", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
384 {"chintai", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.chintai", "ns2.dns.nic.chintai", "ns3.dns.nic.chintai", "ns4.dns.nic.chintai", "ns5.dns.nic.chintai", "ns6.dns.nic.chintai"}, n, n, n, "whois.nic.chintai", e, t},
385 {"chk", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
386 {"chloe", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.chloe", e, f},
387 {"christmas", r, x, 0x40, "https://nic.christmas/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
388 {"chrome", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
389 {"chrysler", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
390 {"church", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.church", e, t},
391 {"ci", r, z[2179:2196], 0xa0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, "whois.nic.ci", e, f},
392 {"cimb", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
393 {"cipriani", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.cipriani", "a2.nic.cipriani", "b0.nic.cipriani", "c0.nic.cipriani"}, n, n, n, "whois.afilias-srs.net", e, f},
394 {"circle", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.circle", "dns2.nic.circle", "dns3.nic.circle", "dns4.nic.circle", "dnsa.nic.circle", "dnsb.nic.circle", "dnsc.nic.circle", "dnsd.nic.circle"}, n, n, n, "whois.nic.circle", e, t},
395 {"cisco", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.cisco", "ns2.dns.nic.cisco", "ns3.dns.nic.cisco", "ns4.dns.nic.cisco", "ns5.dns.nic.cisco", "ns6.dns.nic.cisco"}, n, n, n, "whois.nic.cisco", e, f},
396 {"citadel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.citadel", "ns2.dns.nic.citadel", "ns3.dns.nic.citadel", "ns4.dns.nic.citadel", "ns5.dns.nic.citadel", "ns6.dns.nic.citadel"}, n, n, n, "whois.nic.citadel", e, f},
397 {"citi", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.citi", "ns2.dns.nic.citi", "ns3.dns.nic.citi", "ns4.dns.nic.citi", "ns5.dns.nic.citi", "ns6.dns.nic.citi"}, n, n, n, "whois.nic.citi", e, t},
398 {"citic", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.citic", e, t},
399 {"city", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.city", e, t},
400 {"cityeats", r, x, 0x48, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cityeats", e, f},
401 {"ck", r, z[2196:2204], 0xa8, "http://www.oyster.net.ck/about/index.php?about=domain", w{"circa.mcs.vuw.ac.nz", "downstage.mcs.vuw.ac.nz", "parau.oyster.net.ck", "poiparau.oyster.net.ck"}, n, n, n, "whois.ck-nic.org.ck", e, f},
402 {"cl", r, x, 0xa0, e, w{"a.nic.cl", "b.nic.cl", "c.nic.cl", "cl-ns.anycast.pch.net", "cl1-tld.d-zone.ca", "cl1.dnsnode.net", "cl2-tld.d-zone.ca"}, n, n, n, "whois.nic.cl", e, t},
403 {"claims", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.claims", e, t},
404 {"cleaning", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cleaning", e, t},
405 {"click", r, x, 0x40, "https://nic.click/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
406 {"clinic", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.clinic", e, t},
407 {"clinique", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.clinique", "a2.nic.clinique", "b0.nic.clinique", "c0.nic.clinique"}, n, n, n, "whois.nic.clinique", e, f},
408 {"clothing", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.clothing", e, t},
409 {"cloud", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.cloud", "b.nic.cloud", "c.nic.cloud", "d.nic.cloud"}, n, n, n, "whois.nic.cloud", e, f},
410 {"club", r, x, 0x40, e, w{"ns1.dns.nic.club", "ns2.dns.nic.club", "ns3.dns.nic.club", "ns4.dns.nic.club", "ns5.dns.nic.club", "ns6.dns.nic.club"}, n, n, n, "whois.nic.club", e, t},
411 {"clubmed", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.clubmed", e, t},
412 {"cm", r, z[2204:2208], 0xa0, "https://antic.cm/", w{"auth02.ns.uu.net", "kim.camnet.cm", "lom.camnet.cm", "ns.itu.ch", "sanaga.camnet.cm"}, n, n, n, "whois.netcom.cm", e, f},
413 {"cn", r, z[2208:2250], 0xa0, "http://cnnic.cn/", w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn", "ns.cernet.net"}, n, n, n, "whois.cnnic.cn", e, t},
414 {"co", r, z[2250:2257], 0xe0, "https://www.go.co/", w{"ns1.cctld.co", "ns2.cctld.co", "ns3.cctld.co", "ns4.cctld.co", "ns5.cctld.co", "ns6.cctld.co"}, n, n, n, "whois.nic.co", e, t},
415 {"coach", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.coach", e, t},
416 {"codes", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.codes", e, t},
417 {"coffee", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.coffee", e, t},
418 {"college", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.college", "b.nic.college", "c.nic.college", "d.nic.college"}, n, n, n, "whois.nic.college", e, t},
419 {"cologne", r, x, 0xc4, e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Cologne", "Koeln"}, n, "whois.ryce-rsp.com", e, t},
420 {"com", r, z[2257:2288], 0x40, "https://www.verisign.com/en_US/domain-names/com-domain-names/index.xhtml", w{"a.gtld-servers.net", "b.gtld-servers.net", "c.gtld-servers.net", "d.gtld-servers.net", "e.gtld-servers.net", "f.gtld-servers.net", "g.gtld-servers.net", "h.gtld-servers.net", "i.gtld-servers.net", "j.gtld-servers.net", "k.gtld-servers.net", "l.gtld-servers.net", "m.gtld-servers.net"}, n, n, n, "whois.verisign-grs.com", e, t},
421 {"comcast", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.comcast", "dns2.nic.comcast", "dns3.nic.comcast", "dns4.nic.comcast", "dnsa.nic.comcast", "dnsb.nic.comcast", "dnsc.nic.comcast", "dnsd.nic.comcast"}, n, n, n, "whois.nic.comcast", e, f},
422 {"commbank", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.commbank", "b.nic.commbank", "c.nic.commbank", "d.nic.commbank"}, n, n, n, "whois.nic.commbank", e, f},
423 {"community", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.community", e, t},
424 {"company", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.company", e, t},
425 {"compare", r, x, 0x40, "https://www.go.compare/", w{"a.nic.compare", "b.nic.compare", "c.nic.compare", "d.nic.compare"}, n, n, n, "whois.nic.compare", e, f},
426 {"computer", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.computer", e, t},
427 {"comsec", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.comsec", e, t},
428 {"condos", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.condos", e, t},
429 {"connectors", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
430 {"construction", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.construction", e, t},
431 {"consulting", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.consulting", e, t},
432 {"contact", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.contact", e, t},
433 {"contractors", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.contractors", e, t},
434 {"cooking", r, x, 0x40, "http://nic.cooking/", w{"dns1.nic.cooking", "dns2.nic.cooking", "dns3.nic.cooking", "dns4.nic.cooking", "dnsa.nic.cooking", "dnsb.nic.cooking", "dnsc.nic.cooking", "dnsd.nic.cooking"}, n, n, n, "whois.nic.cooking", e, t},
435 {"cookingchannel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.cookingchannel", e, f},
436 {"cool", r, z[2288:2289], 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cool", e, t},
437 {"coop", r, x, 0x1040, "https://identity.coop/", w{"a.nic.coop", "b.nic.coop", "c.nic.coop", "d.nic.coop"}, n, n, n, "whois.nic.coop", e, f},
438 {"corp", r, x, 0x2140, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, t},
439 {"corsica", r, x, 0x4c0, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, w{"FR-H"}, n, "whois-corsica.nic.fr", e, t},
440 {"country", r, x, 0x40, "https://nic.country/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
441 {"coupon", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.coupon", "ns2.dns.nic.coupon", "ns3.dns.nic.coupon", "ns4.dns.nic.coupon", "ns5.dns.nic.coupon", "ns6.dns.nic.coupon"}, n, n, n, "whois.nic.coupon", e, t},
442 {"coupons", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.coupons", e, t},
443 {"courses", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.courses", "b.nic.courses", "c.nic.courses", "d.nic.courses"}, n, n, n, "whois.nic.courses", e, f},
444 {"cpa", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.cpa", "b.nic.cpa", "c.nic.cpa", "d.nic.cpa"}, n, n, n, "whois.nic.cpa", e, t},
445 {"cr", r, z[2289:2297], 0xa0, "https://www.nic.cr/", w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, "whois.nic.cr", e, f},
446 {"credit", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.credit", e, t},
447 {"creditcard", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.creditcard", e, t},
448 {"creditunion", r, x, 0x40, "https://nic.creditunion/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, n, "whois.afilias-srs.net", e, t},
449 {"cricket", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.cricket", "ns2.dns.nic.cricket", "ns3.dns.nic.cricket", "ns4.dns.nic.cricket", "ns5.dns.nic.cricket", "ns6.dns.nic.cricket"}, n, n, n, "whois.nic.cricket", e, t},
450 {"crown", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
451 {"crs", r, x, 0x42, "http://nic.crs/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.crs", e, f},
452 {"cruise", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.cruise", "a2.nic.cruise", "b0.nic.cruise", "c0.nic.cruise"}, n, n, n, "whois.nic.cruise", e, f},
453 {"cruises", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.cruises", e, t},
454 {"csc", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.csc", e, f},
455 {"cu", r, z[2297:2308], 0xa0, e, w{"cu.cctld.authdns.ripe.net", "ns.ceniai.net.cu", "ns.dns.br", "ns2.ceniai.net.cu", "ns2.gip.net", "rip.psg.com"}, n, n, n, e, "http://www.nic.cu/", f},
456 {"cuisinella", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.cuisinella", "b.nic.cuisinella", "c.nic.cuisinella", "d.nic.cuisinella"}, n, n, n, "whois.nic.cuisinella", e, f},
457 {"cv", r, z[2308:2316], 0xa0, e, w{"c.dns.pt", "cv01.dns.pt", "ns-ext.isc.org", "ns.dns.cv"}, n, n, n, e, "http://www.dns.cv/", f},
458 {"cw", r, z[2316:2318], 0xa0, "https://en.wikipedia.org/wiki/.cw", w{"cw.cctld.authdns.ripe.net", "kadushi.curinfo.cw", "ns0.ja.net", "ns01-server.curinfo.cw", "ns1.uoc.cw", "ns2.uoc.cw", "ns3.uoc.cw"}, n, n, n, e, e, f},
459 {"cx", r, z[2318:2323], 0xa0, e, w{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.cx", e, f},
460 {"cy", r, z[2323:2336], 0xa8, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, "http://www.nic.cy/nslookup/online_database.php", f},
461 {"cymru", r, x, 0x440, "https://eincartrefarlein.cymru/", w{"dns1.nic.cymru", "dns2.nic.cymru", "dns3.nic.cymru", "dns4.nic.cymru", "dnsa.nic.cymru", "dnsb.nic.cymru", "dnsc.nic.cymru", "dnsd.nic.cymru"}, n, w{"GB-WLS"}, n, "whois.nic.cymru", e, t},
462 {"cyou", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.cyou", "b.nic.cyou", "c.nic.cyou", "d.nic.cyou"}, n, n, n, "whois.nic.cyou", e, f},
463 {"cz", r, z[2336:2337], 0xa0, "https://www.nic.cz/", w{"a.ns.nic.cz", "b.ns.nic.cz", "c.ns.nic.cz", "d.ns.nic.cz"}, n, n, n, "whois.nic.cz", e, t},
464 {"dabur", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.dabur", "a2.nic.dabur", "b0.nic.dabur", "c0.nic.dabur"}, n, n, n, "whois.afilias-srs.net", e, f},
465 {"dad", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
466 {"dance", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.dance", e, t},
467 {"data", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.data", "a2.nic.data", "b0.nic.data", "c0.nic.data"}, n, n, n, "whois.nic.data", e, f},
468 {"date", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.date", "ns2.dns.nic.date", "ns3.dns.nic.date", "ns4.dns.nic.date", "ns5.dns.nic.date", "ns6.dns.nic.date"}, n, n, n, "whois.nic.date", e, t},
469 {"dating", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.dating", e, t},
470 {"datsun", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
471 {"day", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
472 {"dclk", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
473 {"dds", r, x, 0x40, "http://nic.dds/", w{"dns1.nic.dds", "dns2.nic.dds", "dns3.nic.dds", "dns4.nic.dds", "dnsa.nic.dds", "dnsb.nic.dds", "dnsc.nic.dds", "dnsd.nic.dds"}, n, n, n, "whois.nic.dds", e, t},
474 {"de", r, z[2337:2340], 0xa0, "https://www.denic.de/", w{"a.nic.de", "f.nic.de", "l.de.net", "n.de.net", "s.de.net", "z.nic.de"}, n, n, n, "whois.denic.de", e, t},
475 {"deal", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.deal", "dns2.nic.deal", "dns3.nic.deal", "dns4.nic.deal", "dnsa.nic.deal", "dnsb.nic.deal", "dnsc.nic.deal", "dnsd.nic.deal"}, n, n, n, "whois.nic.deal", e, t},
476 {"dealer", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.dealer", e, t},
477 {"deals", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.deals", e, t},
478 {"degree", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.degree", e, t},
479 {"delivery", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.delivery", e, t},
480 {"dell", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.dell", "ns2.dns.nic.dell", "ns3.dns.nic.dell", "ns4.dns.nic.dell", "ns5.dns.nic.dell", "ns6.dns.nic.dell"}, n, n, n, "whois.nic.dell", e, t},
481 {"delmonte", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
482 {"deloitte", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.deloitte", "b.nic.deloitte", "c.nic.deloitte", "d.nic.deloitte"}, n, n, n, "whois.nic.deloitte", e, t},
483 {"delta", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.delta", "a2.nic.delta", "b0.nic.delta", "c0.nic.delta"}, n, n, n, "whois.nic.delta", e, f},
484 {"democrat", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.democrat", e, t},
485 {"dental", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.dental", e, t},
486 {"dentist", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.dentist", e, t},
487 {"desi", r, x, 0x40, e, w{"a.nic.desi", "b.nic.desi", "c.nic.desi", "d.nic.desi"}, n, n, n, "whois.nic.desi", e, t},
488 {"design", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.design", "b.nic.design", "c.nic.design", "d.nic.design"}, n, n, n, "whois.nic.design", e, t},
489 {"deutschepost", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
490 {"dev", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
491 {"dhl", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.dhl", "b.nic.dhl", "c.nic.dhl", "d.nic.dhl"}, n, n, n, e, e, t},
492 {"diamonds", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.diamonds", e, t},
493 {"diet", r, x, 0x40, "https://nic.diet/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
494 {"digikey", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
495 {"digital", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.digital", e, t},
496 {"direct", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.direct", e, t},
497 {"directory", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.directory", e, t},
498 {"discount", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.discount", e, t},
499 {"discover", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.discover", "ns2.dns.nic.discover", "ns3.dns.nic.discover", "ns4.dns.nic.discover", "ns5.dns.nic.discover", "ns6.dns.nic.discover"}, n, n, n, "whois.nic.discover", e, f},
500 {"dish", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.dish", "a2.nic.dish", "b0.nic.dish", "c0.nic.dish"}, n, n, n, "whois.nic.dish", e, f},
501 {"diy", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.diy", e, f},
502 {"dj", r, x, 0xe0, e, w{"bow1.intnet.dj", "bow5.intnet.dj", "vps443605.ovh.net"}, n, n, n, e, "http://www.nic.dj/whois.php", f},
503 {"dk", r, z[2340:2342], 0xa0, "https://www.dk-hostmaster.dk/", w{"a.nic.dk", "b.nic.dk", "c.nic.dk", "d.nic.dk", "l.nic.dk", "p.nic.dk", "s.nic.dk"}, n, n, n, "whois.dk-hostmaster.dk", e, t},
504 {"dm", r, z[2342:2348], 0xa0, e, w{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, n, "whois.nic.dm", e, t},
505 {"dnb", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
506 {"dnp", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.dnp", e, t},
507 {"do", r, z[2348:2359], 0xa0, "https://www.nic.do/", w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, "whois.nic.do", e, f},
508 {"docomo", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
509 {"docs", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
510 {"doctor", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.doctor", e, t},
511 {"dodge", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
512 {"dog", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.dog", e, t},
513 {"doha", r, x, 0xc4, "https://newgtlds.icann.org/", n, n, w{"Doha", "QA-DA"}, n, "whois.nic.doha", e, f},
514 {"domains", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.domains", e, t},
515 {"doosan", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--cg4bki", e, f},
516 {"dot", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.dot", "a2.nic.dot", "b0.nic.dot", "c0.nic.dot"}, n, n, n, "whois.nic.dot", e, f},
517 {"dotafrica", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
518 {"download", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.download", "ns2.dns.nic.download", "ns3.dns.nic.download", "ns4.dns.nic.download", "ns5.dns.nic.download", "ns6.dns.nic.download"}, n, n, n, "whois.nic.download", e, t},
519 {"drive", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
520 {"dstv", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
521 {"dtv", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.dtv", "a2.nic.dtv", "b0.nic.dtv", "c0.nic.dtv"}, n, n, n, "whois.nic.dtv", e, f},
522 {"dubai", r, x, 0xc4, "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, w{"AE-DU", "Dubai"}, n, "whois.nic.dubai", e, f},
523 {"duck", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.duck", e, f},
524 {"dunlop", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.dunlop", "a2.nic.dunlop", "b0.nic.dunlop", "c0.nic.dunlop"}, n, n, n, "whois.nic.dunlop", e, f},
525 {"duns", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.duns", e, f},
526 {"dupont", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.dupont", "ns2.dns.nic.dupont", "ns3.dns.nic.dupont", "ns4.dns.nic.dupont", "ns5.dns.nic.dupont", "ns6.dns.nic.dupont"}, n, n, n, "whois.nic.dupont", e, t},
527 {"durban", r, x, 0xc4, e, w{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, w{"Durban"}, n, "durban-whois.registry.net.za", e, t},
528 {"dvag", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.dvag", "b.nic.dvag", "c.nic.dvag", "d.nic.dvag"}, n, n, n, "whois.nic.dvag", e, f},
529 {"dvr", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.dvr", "a2.nic.dvr", "b0.nic.dvr", "c0.nic.dvr"}, n, n, n, "whois.nic.dvr", e, f},
530 {"dwg", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
531 {"dz", r, z[2359:2367], 0xa0, e, w{"ns-dz.afrinic.net", "ns1.nic.dz", "ns2.nic.dz", "ns3.nic.fr", "ns4.nic.dz", "ns5.nic.dz"}, n, n, n, "whois.nic.dz", e, f},
532 {"earth", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.earth", "ns2.dns.nic.earth", "ns3.dns.nic.earth", "ns4.dns.nic.earth", "ns5.dns.nic.earth", "ns6.dns.nic.earth"}, n, n, n, "whois.nic.earth", e, t},
533 {"eat", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
534 {"ec", r, z[2367:2378], 0xa0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, "whois.nic.ec", e, f},
535 {"eco", r, x, 0x40, "https://bigroom.eco/", w{"a0.nic.eco", "a2.nic.eco", "b0.nic.eco", "c0.nic.eco"}, n, n, n, "whois.nic.eco", e, f},
536 {"ecom", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
537 {"edeka", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.edeka", "a2.nic.edeka", "b0.nic.edeka", "c0.nic.edeka"}, n, n, n, "whois.afilias-srs.net", e, t},
538 {"edu", r, x, 0x1040, e, w{"a.edu-servers.net", "b.edu-servers.net", "c.edu-servers.net", "d.edu-servers.net", "e.edu-servers.net", "f.edu-servers.net", "g.edu-servers.net", "h.edu-servers.net", "i.edu-servers.net", "j.edu-servers.net", "k.edu-servers.net", "l.edu-servers.net", "m.edu-servers.net"}, n, n, n, "whois.educause.edu", e, f},
539 {"education", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.education", e, t},
540 {"ee", r, z[2378:2392], 0xa0, e, w{"b.tld.ee", "e.tld.ee", "ee.aso.ee", "ee.eenet.ee", "ns.tld.ee"}, n, n, n, "whois.tld.ee", e, f},
541 {"eg", r, z[2392:2404], 0xa0, e, w{"frcu.eun.eg", "ns5.univie.ac.at", "rip.psg.com"}, n, n, n, e, "http://lookup.egregistry.eg/english.aspx", f},
542 {"email", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.email", e, t},
543 {"emerck", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.emerck", "a2.nic.emerck", "b0.nic.emerck", "c0.nic.emerck"}, n, n, n, "whois.afilias-srs.net", e, t},
544 {"emerson", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
545 {"energy", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.energy", e, t},
546 {"engineer", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.engineer", e, t},
547 {"engineering", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.engineering", e, t},
548 {"enterprises", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.enterprises", e, t},
549 {"epost", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
550 {"epson", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.epson", e, t},
551 {"equipment", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.equipment", e, t},
552 {"er", r, z[2404:2411], 0xa8, e, w{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, f},
553 {"ericsson", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ericsson", e, f},
554 {"erni", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.erni", e, f},
555 {"es", r, z[2411:2416], 0xa0, e, w{"a.nic.es", "c.nic.es", "f.nic.es", "g.nic.es", "h.nic.es", "ns-es.nic.fr", "ns1.cesca.es", "ssdns-tld.nic.cl"}, n, n, n, "whois.nic.es", e, t},
556 {"esq", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
557 {"estate", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.estate", e, t},
558 {"esurance", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
559 {"et", r, z[2416:2424], 0xa0, "http://www.ethionet.et/?q=ipservicedomainname", w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
560 {"etisalat", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.etisalat", "b.nic.etisalat", "c.nic.etisalat", "d.nic.etisalat"}, n, n, n, "whois.centralnic.com", e, f},
561 {"eu", r, z[2424:2427], 0xa0, e, w{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, n, "whois.eu", e, t},
562 {"eurovision", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.eurovision", e, f},
563 {"eus", r, x, 0x440, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.eus", e, t},
564 {"events", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.events", e, t},
565 {"everbank", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.everbank", e, f},
566 {"exchange", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.exchange", e, t},
567 {"expert", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.expert", e, t},
568 {"exposed", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.exposed", e, t},
569 {"express", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.express", e, t},
570 {"extraspace", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.extraspace", "a2.nic.extraspace", "b0.nic.extraspace", "c0.nic.extraspace"}, n, n, n, "whois.afilias-srs.net", e, f},
571 {"fage", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.fage", "a2.nic.fage", "b0.nic.fage", "c0.nic.fage"}, n, n, n, "whois.afilias-srs.net", e, f},
572 {"fail", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.fail", e, t},
573 {"fairwinds", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.fairwinds", e, t},
574 {"faith", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.faith", "ns2.dns.nic.faith", "ns3.dns.nic.faith", "ns4.dns.nic.faith", "ns5.dns.nic.faith", "ns6.dns.nic.faith"}, n, n, n, "whois.nic.faith", e, t},
575 {"family", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.family", e, t},
576 {"fan", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.fan", e, t},
577 {"fans", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.fans", "b.nic.fans", "c.nic.fans", "d.nic.fans"}, n, n, n, "whois.nic.fans", e, f},
578 {"farm", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.farm", e, t},
579 {"farmers", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.farmers", "ns2.dns.nic.farmers", "ns3.dns.nic.farmers", "ns4.dns.nic.farmers", "ns5.dns.nic.farmers", "ns6.dns.nic.farmers"}, n, n, n, "whois.nic.farmers", e, t},
580 {"fashion", r, x, 0x40, "http://nic.fashion/", w{"dns1.nic.fashion", "dns2.nic.fashion", "dns3.nic.fashion", "dns4.nic.fashion", "dnsa.nic.fashion", "dnsb.nic.fashion", "dnsc.nic.fashion", "dnsd.nic.fashion"}, n, n, n, "whois.nic.fashion", e, t},
581 {"fast", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.fast", "dns2.nic.fast", "dns3.nic.fast", "dns4.nic.fast", "dnsa.nic.fast", "dnsb.nic.fast", "dnsc.nic.fast", "dnsd.nic.fast"}, n, n, n, "whois.nic.fast", e, t},
582 {"fedex", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.fedex", "a2.nic.fedex", "b0.nic.fedex", "c0.nic.fedex"}, n, n, n, "whois.nic.fedex", e, f},
583 {"feedback", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.feedback", "b.nic.feedback", "c.nic.feedback", "d.nic.feedback"}, n, n, n, "whois.nic.feedback", e, t},
584 {"ferrari", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.ferrari", "a2.nic.ferrari", "b0.nic.ferrari", "c0.nic.ferrari"}, n, n, n, "whois.nic.ferrari", e, f},
585 {"ferrero", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.ferrero", "ns2.dns.nic.ferrero", "ns3.dns.nic.ferrero", "ns4.dns.nic.ferrero", "ns5.dns.nic.ferrero", "ns6.dns.nic.ferrero"}, n, n, n, "whois.nic.ferrero", e, t},
586 {"fi", r, x, 0xa0, e, w{"a.fi", "b.fi", "c.fi", "d.fi", "e.fi", "f.fi", "g.fi", "h.fi", "i.fi"}, n, n, n, "whois.fi", e, t},
587 {"fiat", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.fiat", "a2.nic.fiat", "b0.nic.fiat", "c0.nic.fiat"}, n, n, n, "whois.afilias-srs.net", e, f},
588 {"fidelity", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.fidelity", e, f},
589 {"fido", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.fido", "a2.nic.fido", "b0.nic.fido", "c0.nic.fido"}, n, n, n, "whois.afilias-srs.net", e, f},
590 {"film", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.film", "b.nic.film", "c.nic.film", "d.nic.film"}, n, n, n, "whois.nic.film", e, t},
591 {"final", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, "whois.gtlds.nic.br", e, t},
592 {"finance", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.finance", e, t},
593 {"financial", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.financial", e, t},
594 {"financialaid", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
595 {"finish", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
596 {"fire", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.fire", "dns2.nic.fire", "dns3.nic.fire", "dns4.nic.fire", "dnsa.nic.fire", "dnsb.nic.fire", "dnsc.nic.fire", "dnsd.nic.fire"}, n, n, n, "whois.nic.fire", e, t},
597 {"firestone", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.firestone", e, t},
598 {"firmdale", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.nic.firmdale", "ns2.nic.firmdale"}, n, n, n, "whois.nic.firmdale", e, f},
599 {"fish", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.fish", e, t},
600 {"fishing", r, x, 0x40, "http://nic.fishing/", w{"dns1.nic.fishing", "dns2.nic.fishing", "dns3.nic.fishing", "dns4.nic.fishing", "dnsa.nic.fishing", "dnsb.nic.fishing", "dnsc.nic.fishing", "dnsd.nic.fishing"}, n, n, n, "whois.nic.fishing", e, t},
601 {"fit", r, x, 0x40, "http://nic.fit/", w{"dns1.nic.fit", "dns2.nic.fit", "dns3.nic.fit", "dns4.nic.fit", "dnsa.nic.fit", "dnsb.nic.fit", "dnsc.nic.fit", "dnsd.nic.fit"}, n, n, n, "whois.nic.fit", e, t},
602 {"fitness", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.fitness", e, t},
603 {"fj", r, z[2427:2438], 0xa0, "http://domains.fj/", w{"ns1.fj", "ns2.fj", "ns3.fj", "ns4.fj", "ns5.fj"}, n, n, n, "whois.usp.ac.fj", e, f},
604 {"fk", r, z[2438:2444], 0xa8, e, w{"ns1.horizon.net.fk", "ns2.horizon.net.fk", "ns3.horizon.net.fk"}, n, n, n, e, "http://whois.marcaria.com/", f},
605 {"flickr", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.flickr", "ns2.dns.nic.flickr", "ns3.dns.nic.flickr", "ns4.dns.nic.flickr", "ns5.dns.nic.flickr", "ns6.dns.nic.flickr"}, n, n, n, "whois.nic.flickr", e, t},
606 {"flights", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.flights", e, t},
607 {"flir", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.flir", "ns2.dns.nic.flir", "ns3.dns.nic.flir", "ns4.dns.nic.flir", "ns5.dns.nic.flir", "ns6.dns.nic.flir"}, n, n, n, "whois.nic.flir", e, f},
608 {"florist", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.florist", e, t},
609 {"flowers", r, x, 0x40, "https://nic.flowers/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
610 {"fls", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
611 {"flsmidth", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, "whois.ksregistry.net", e, f},
612 {"fly", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
613 {"fm", r, z[2444:2450], 0xe0, "https://dot.fm/", w{"a.nic.fm", "b.nic.fm", "c.nic.fm", "d.nic.fm", "e.nic.fm", "f.nic.fm"}, n, n, n, "whois.nic.fm", e, t},
614 {"fo", r, z[2450:2472], 0xa0, e, w{"a.nic.fo", "b.nic.fo", "c.nic.fo", "d.nic.fo"}, n, n, n, "whois.nic.fo", e, f},
615 {"foo", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
616 {"food", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.food", e, f},
617 {"foodnetwork", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.foodnetwork", e, f},
618 {"football", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.football", e, t},
619 {"ford", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.ford", "ns2.dns.nic.ford", "ns3.dns.nic.ford", "ns4.dns.nic.ford", "ns5.dns.nic.ford", "ns6.dns.nic.ford"}, n, n, n, "whois.nic.ford", e, t},
620 {"forex", r, x, 0x40, "https://bostonivy.co/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.forex", e, f},
621 {"forsale", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.forsale", e, t},
622 {"forum", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.forum", "b.nic.forum", "c.nic.forum", "d.nic.forum"}, n, n, n, "whois.nic.forum", e, t},
623 {"foundation", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.foundation", e, t},
624 {"fox", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.fox", "ns2.dns.nic.fox", "ns3.dns.nic.fox", "ns4.dns.nic.fox", "ns5.dns.nic.fox", "ns6.dns.nic.fox"}, n, n, n, "whois.nic.fox", e, t},
625 {"fr", r, z[2472:2490], 0xa0, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.fr", e, t},
626 {"free", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.free", "dns2.nic.free", "dns3.nic.free", "dns4.nic.free", "dnsa.nic.free", "dnsb.nic.free", "dnsc.nic.free", "dnsd.nic.free"}, n, n, n, "whois.nic.free", e, t},
627 {"fresenius", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.fresenius", "b.nic.fresenius", "c.nic.fresenius", "d.nic.fresenius"}, n, n, n, "whois.nic.fresenius", e, f},
628 {"frl", r, x, 0x440, "https://newgtlds.icann.org/", w{"a.nic.frl", "b.nic.frl", "c.nic.frl", "d.nic.frl"}, n, w{"NL-FY"}, n, "whois.nic.frl", e, t},
629 {"frogans", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.frogans", "a2.nic.frogans", "b0.nic.frogans", "c0.nic.frogans"}, n, n, n, "whois.nic.frogans", e, t},
630 {"frontdoor", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.frontdoor", e, f},
631 {"frontier", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.frontier", "ns2.dns.nic.frontier", "ns3.dns.nic.frontier", "ns4.dns.nic.frontier", "ns5.dns.nic.frontier", "ns6.dns.nic.frontier"}, n, n, n, "whois.nic.frontier", e, f},
632 {"ftr", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.ftr", "ns2.dns.nic.ftr", "ns3.dns.nic.ftr", "ns4.dns.nic.ftr", "ns5.dns.nic.ftr", "ns6.dns.nic.ftr"}, n, n, n, "whois.nic.ftr", e, f},
633 {"fujitsu", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
634 {"fujixerox", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.fujixerox", e, t},
635 {"fun", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.fun", "b.nic.fun", "e.nic.fun", "f.nic.fun"}, n, n, n, "whois.nic.fun", e, t},
636 {"fund", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.fund", e, t},
637 {"furniture", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.furniture", e, t},
638 {"futbol", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.futbol", e, t},
639 {"fyi", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.fyi", e, t},
640 {"ga", r, z[2490:2503], 0xa0, e, w{"a.ns.ga", "b.ns.ga", "c.ns.ga", "d.ns.ga"}, n, n, n, "whois.dot.ga", e, t},
641 {"gal", r, x, 0x4c0, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"ES-GA"}, n, "whois.nic.gal", e, t},
642 {"gallery", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gallery", e, t},
643 {"gallo", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.gallo", e, f},
644 {"gallup", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.gallup", "a2.nic.gallup", "b0.nic.gallup", "c0.nic.gallup"}, n, n, n, "whois.nic.gallup", e, f},
645 {"game", r, x, 0x40, "https://nic.game/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
646 {"games", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.games", e, t},
647 {"gap", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.gap", "ns2.dns.nic.gap", "ns3.dns.nic.gap", "ns4.dns.nic.gap", "ns5.dns.nic.gap", "ns6.dns.nic.gap"}, n, n, n, "whois.nic.gap", e, t},
648 {"garden", r, x, 0x40, "http://nic.garden/", w{"dns1.nic.garden", "dns2.nic.garden", "dns3.nic.garden", "dns4.nic.garden", "dnsa.nic.garden", "dnsb.nic.garden", "dnsc.nic.garden", "dnsd.nic.garden"}, n, n, n, "whois.nic.garden", e, t},
649 {"garnier", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
650 {"gay", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.gay", "b.nic.gay", "c.nic.gay", "d.nic.gay"}, n, n, n, "whois.nic.gay", e, f},
651 {"gb", r, z[2503:2504], 0xa8, e, w{"ns.uu.net", "ns0.ja.net", "ns4.ja.net"}, n, n, n, e, e, f},
652 {"gbiz", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
653 {"gcc", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
654 {"gd", r, z[2504:2511], 0xa0, e, w{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, n, "whois.nic.gd", e, f},
655 {"gdn", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.nic.gdn", "ns3.nic.gdn", "ns4.nic.gdn"}, n, n, n, "whois.nic.gdn", e, f},
656 {"ge", r, z[2511:2519], 0xa0, "https://nic.ge/", w{"ge.hostmaster.ua", "ns.nic.ge", "ns.uu.net", "ns2.nic.fr", "ns2.nic.ge"}, n, n, n, "whois.nic.ge", e, f},
657 {"gea", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.nic.gea", "m.dns.nic.gea", "n.dns.nic.gea"}, n, n, n, "whois.nic.gea", e, t},
658 {"gecompany", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
659 {"ged", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
660 {"gent", r, x, 0xc4, e, w{"a.nic.gent", "b.nic.gent", "c.nic.gent", "d.nic.gent"}, n, w{"Gent", "Ghent"}, n, "whois.nic.gent", e, t},
661 {"genting", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.genting", e, t},
662 {"george", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.george", e, f},
663 {"gf", r, x, 0xa0, "https://www.dom-enic.com/", w{"ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, n, "whois.mediaserv.net", e, f},
664 {"gg", r, z[2519:2530], 0xa0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk", "e.ci-servers.net"}, n, n, n, "whois.gg", e, f},
665 {"ggee", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.ggee", e, t},
666 {"gh", r, z[2530:2536], 0xa8, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, "http://www.nic.gh/customer/search_c.htm", f},
667 {"gi", r, z[2536:2542], 0xa0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois2.afilias-grs.net", e, f},
668 {"gift", r, x, 0x40, "https://nic.gift/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
669 {"gifts", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gifts", e, t},
670 {"gives", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gives", e, t},
671 {"giving", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.giving", "b.nic.giving", "c.nic.giving", "d.nic.giving"}, n, n, n, "whois.nic.giving", e, f},
672 {"gl", r, z[2542:2547], 0xa0, e, w{"a.nuuk.nic.gl", "d.nic.gl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.gl", e, t},
673 {"glade", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.glade", e, f},
674 {"glass", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.glass", e, t},
675 {"gle", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
676 {"global", r, x, 0x40, e, w{"a0.nic.global", "a2.nic.global", "b0.nic.global", "c0.nic.global"}, n, n, n, "whois.nic.global", e, t},
677 {"globalx", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
678 {"globo", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, "whois.gtlds.nic.br", e, t},
679 {"gm", r, x, 0xa0, e, w{"ns-gm.afrinic.net", "ns1.nic.gm", "ns2.nic.gm"}, n, n, n, e, "http://www.nic.gm/htmlpages/whois.htm", f},
680 {"gmail", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
681 {"gmbh", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gmbh", e, t},
682 {"gmc", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
683 {"gmo", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
684 {"gmx", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.gmx", e, t},
685 {"gn", r, z[2547:2553], 0xa8, e, w{"fork.sth.dnsnode.net", "ns-gn.afrinic.net", "rip.psg.com"}, n, n, n, e, e, f},
686 {"godaddy", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.godaddy", "a2.nic.godaddy", "b0.nic.godaddy", "c0.nic.godaddy"}, n, n, n, "whois.afilias-srs.net", e, t},
687 {"gold", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gold", e, t},
688 {"goldpoint", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.goldpoint", e, t},
689 {"golf", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.golf", e, t},
690 {"goo", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
691 {"goodhands", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
692 {"goodyear", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.goodyear", "a2.nic.goodyear", "b0.nic.goodyear", "c0.nic.goodyear"}, n, n, n, "whois.nic.goodyear", e, f},
693 {"goog", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
694 {"google", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
695 {"gop", r, x, 0x40, "https://www.join.gop/", w{"dns1.nic.gop", "dns2.nic.gop", "dns3.nic.gop", "dns4.nic.gop", "dnsa.nic.gop", "dnsb.nic.gop", "dnsc.nic.gop", "dnsd.nic.gop"}, n, n, n, "whois.nic.gop", e, f},
696 {"got", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.got", "dns2.nic.got", "dns3.nic.got", "dns4.nic.got", "dnsa.nic.got", "dnsb.nic.got", "dnsc.nic.got", "dnsd.nic.got"}, n, n, n, "whois.nic.got", e, t},
697 {"gotv", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
698 {"gov", r, x, 0x1040, e, w{"a.gov-servers.net", "b.gov-servers.net", "c.gov-servers.net", "d.gov-servers.net"}, n, n, n, "whois.dotgov.gov", e, f},
699 {"gp", r, z[2553:2564], 0xa0, "https://www.nic.gp/", w{"a.lactld.org", "gp.cctld.authdns.ripe.net", "ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, "whois.nic.gp", e, f},
700 {"gq", r, x, 0xa0, e, w{"a.ns.gq", "b.ns.gq", "c.ns.gq", "d.ns.gq"}, n, n, n, "whois.dominio.gq", e, t},
701 {"gr", r, z[2564:2569], 0xa0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "gr-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, "https://grweb.ics.forth.gr/Whois?lang=en", t},
702 {"grainger", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.grainger", "ns2.dns.nic.grainger", "ns3.dns.nic.grainger", "ns4.dns.nic.grainger", "ns5.dns.nic.grainger", "ns6.dns.nic.grainger"}, n, n, n, "whois.nic.grainger", e, t},
703 {"graphics", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.graphics", e, t},
704 {"gratis", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gratis", e, t},
705 {"gree", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
706 {"green", r, x, 0x40, "https://get.green/", w{"a0.nic.green", "a2.nic.green", "b0.nic.green", "c0.nic.green"}, n, n, n, "whois.afilias.net", e, t},
707 {"gripe", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.gripe", e, t},
708 {"grocery", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
709 {"group", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.group", e, t},
710 {"gs", r, x, 0xa0, e, w{"ns.anycast.nic.gs", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.gs", e, f},
711 {"gt", r, z[2569:2576], 0xa0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, "http://www.gt/", f},
712 {"gu", r, z[2576:2583], 0xa0, "http://gadao.gov.gu/", w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, "http://gadao.gov.gu/domainsearch.htm", f},
713 {"guardian", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
714 {"guardianlife", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
715 {"guardianmedia", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
716 {"gucci", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.gucci", "dns2.nic.gucci", "dns3.nic.gucci", "dns4.nic.gucci", "dnsa.nic.gucci", "dnsb.nic.gucci", "dnsc.nic.gucci", "dnsd.nic.gucci"}, n, n, n, "whois.nic.gucci", e, t},
717 {"guge", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
718 {"guide", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.guide", e, t},
719 {"guitars", r, x, 0x40, "https://nic.guitars/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
720 {"guru", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.guru", e, t},
721 {"gw", r, x, 0xa0, e, w{"gw01.dns.pt", "gw03.dns.pt", "h.dns.pt"}, n, n, n, e, "http://nic.gw/en/whois/", f},
722 {"gy", r, z[2583:2587], 0xa0, e, w{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, n, "whois.registry.gy", e, f},
723 {"hair", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.hair", "b.nic.hair", "c.nic.hair", "d.nic.hair"}, n, n, n, "whois.nic.hair", e, t},
724 {"halal", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
725 {"hamburg", r, x, 0xc4, e, w{"a.dns.nic.hamburg", "m.dns.nic.hamburg", "n.dns.nic.hamburg"}, n, w{"Hamburg", "DE-HH"}, n, "whois.nic.hamburg", e, t},
726 {"hangout", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
727 {"haus", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.haus", e, t},
728 {"hbo", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.hbo", "ns2.dns.nic.hbo", "ns3.dns.nic.hbo", "ns4.dns.nic.hbo", "ns5.dns.nic.hbo", "ns6.dns.nic.hbo"}, n, n, n, "whois.nic.hbo", e, t},
729 {"hdfc", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.hdfc", "a2.nic.hdfc", "b0.nic.hdfc", "c0.nic.hdfc"}, n, n, n, "whois.nic.hdfc", e, f},
730 {"hdfcbank", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.hdfcbank", "a2.nic.hdfcbank", "b0.nic.hdfcbank", "c0.nic.hdfcbank"}, n, n, n, "whois.nic.hdfcbank", e, f},
731 {"health", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.health", "ns2.dns.nic.health", "ns3.dns.nic.health", "ns4.dns.nic.health", "ns5.dns.nic.health", "ns6.dns.nic.health"}, n, n, n, "whois.nic.health", e, t},
732 {"healthcare", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.healthcare", e, t},
733 {"heart", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
734 {"heinz", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
735 {"help", r, x, 0x40, "https://nic.help/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
736 {"helsinki", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.helsinki", "a2.nic.helsinki", "b0.nic.helsinki", "c0.nic.helsinki"}, n, n, n, "whois.nic.helsinki", e, t},
737 {"here", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
738 {"hermes", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.hermes", "a2.nic.hermes", "b0.nic.hermes", "c0.nic.hermes"}, n, n, n, "whois.afilias-srs.net", e, f},
739 {"hgtv", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.hgtv", e, f},
740 {"hilton", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
741 {"hiphop", r, x, 0x40, "https://nic.hiphop/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
742 {"hisamitsu", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
743 {"hitachi", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
744 {"hiv", r, x, 0x40, "https://nic.hiv/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
745 {"hk", r, z[2587:2596], 0xa0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, "whois.hkirc.hk", e, t},
746 {"hkt", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.hkt", "a2.nic.hkt", "b0.nic.hkt", "c0.nic.hkt"}, n, n, n, "whois.nic.hkt", e, t},
747 {"hm", r, x, 0xa0, "http://www.registry.hm/", w{"ns1.registry.hm", "ns2.registry.hm", "ns3.registry.hm"}, n, n, n, "whois.registry.hm", e, f},
748 {"hn", r, z[2596:2602], 0xa0, e, w{"a.lactld.org", "nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, "whois.nic.hn", e, f},
749 {"hockey", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.hockey", e, t},
750 {"holdings", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.holdings", e, t},
751 {"holiday", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.holiday", e, t},
752 {"home", r, x, 0x2140, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, t},
753 {"homedepot", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.homedepot", "a2.nic.homedepot", "b0.nic.homedepot", "c0.nic.homedepot"}, n, n, n, "whois.nic.homedepot", e, f},
754 {"homegoods", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.homegoods", "ns2.dns.nic.homegoods", "ns3.dns.nic.homegoods", "ns4.dns.nic.homegoods", "ns5.dns.nic.homegoods", "ns6.dns.nic.homegoods"}, n, n, n, "whois.nic.homegoods", e, f},
755 {"homes", r, x, 0x40, "https://nic.homes/", w{"a.nic.homes", "b.nic.homes", "c.nic.homes", "d.nic.homes"}, n, n, n, "whois.nic.homes", e, f},
756 {"homesense", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.homesense", "ns2.dns.nic.homesense", "ns3.dns.nic.homesense", "ns4.dns.nic.homesense", "ns5.dns.nic.homesense", "ns6.dns.nic.homesense"}, n, n, n, "whois.nic.homesense", e, f},
757 {"honda", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.honda", e, t},
758 {"honeywell", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.honeywell", e, f},
759 {"horse", r, x, 0x40, "http://nic.horse/", w{"dns1.nic.horse", "dns2.nic.horse", "dns3.nic.horse", "dns4.nic.horse", "dnsa.nic.horse", "dnsb.nic.horse", "dnsc.nic.horse", "dnsd.nic.horse"}, n, n, n, "whois.nic.horse", e, t},
760 {"hospital", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.hospital", e, t},
761 {"host", r, x, 0x40, e, w{"a.nic.host", "b.nic.host", "e.nic.host", "f.nic.host"}, n, n, n, "whois.nic.host", e, t},
762 {"hosting", r, x, 0x40, "https://nic.hosting/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
763 {"hot", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.hot", "dns2.nic.hot", "dns3.nic.hot", "dns4.nic.hot", "dnsa.nic.hot", "dnsb.nic.hot", "dnsc.nic.hot", "dnsd.nic.hot"}, n, n, n, "whois.nic.hot", e, t},
764 {"hoteis", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
765 {"hotel", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
766 {"hoteles", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.hoteles", "ns2.dns.nic.hoteles", "ns3.dns.nic.hoteles", "ns4.dns.nic.hoteles", "ns5.dns.nic.hoteles", "ns6.dns.nic.hoteles"}, n, n, n, "whois.nic.hoteles", e, t},
767 {"hotels", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.hotels", "ns2.dns.nic.hotels", "ns3.dns.nic.hotels", "ns4.dns.nic.hotels", "ns5.dns.nic.hotels", "ns6.dns.nic.hotels"}, n, n, n, "whois.nic.hotels", e, t},
768 {"hotmail", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
769 {"house", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.house", e, t},
770 {"how", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
771 {"hr", r, z[2602:2606], 0xa0, e, w{"hr-ns-1.carnet.hr", "n.dns.hr", "pch.carnet.hr"}, n, n, n, "whois.dns.hr", e, f},
772 {"hsbc", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.hsbc", "ns2.dns.nic.hsbc", "ns3.dns.nic.hsbc", "ns4.dns.nic.hsbc", "ns5.dns.nic.hsbc", "ns6.dns.nic.hsbc"}, n, n, n, "whois.nic.hsbc", e, t},
773 {"ht", r, z[2606:2623], 0xa0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, "whois.nic.ht", e, f},
774 {"htc", r, x, 0x2842, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
775 {"hu", r, z[2623:2657], 0xa0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "e.hu", "ns-com.nic.hu", "ns2.nic.fr"}, n, n, n, "whois.nic.hu", e, t},
776 {"hughes", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.hughes", "a2.nic.hughes", "b0.nic.hughes", "c0.nic.hughes"}, n, n, n, "whois.nic.hughes", e, f},
777 {"hyatt", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.hyatt", "ns2.dns.nic.hyatt", "ns3.dns.nic.hyatt", "ns4.dns.nic.hyatt", "ns5.dns.nic.hyatt", "ns6.dns.nic.hyatt"}, n, n, n, "whois.nic.hyatt", e, t},
778 {"hyundai", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.hyundai", e, t},
779 {"ibm", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.ibm", "b.nic.ibm", "c.nic.ibm", "d.nic.ibm"}, n, n, n, "whois.nic.ibm", e, f},
780 {"icbc", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.icbc", "a2.nic.icbc", "b0.nic.icbc", "c0.nic.icbc"}, n, n, n, "whois.nic.icbc", e, f},
781 {"ice", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ice", e, f},
782 {"icu", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.icu", "b.nic.icu", "c.nic.icu", "d.nic.icu"}, n, n, n, "whois.nic.icu", e, t},
783 {"id", r, z[2657:2669], 0xa0, "https://pandi.id/", w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id", "ns4.apnic.net"}, n, n, n, "whois.id", e, t},
784 {"idn", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
785 {"ie", r, z[2669:2674], 0xa0, "https://www.iedr.ie/", w{"b.ns.ie", "c.ns.ie", "d.ns.ie", "g.ns.ie", "h.ns.ie", "i.ns.ie"}, n, n, n, "whois.weare.ie", e, t},
786 {"ieee", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.ieee", "ns2.dns.nic.ieee", "ns3.dns.nic.ieee", "ns4.dns.nic.ieee", "ns5.dns.nic.ieee", "ns6.dns.nic.ieee"}, n, n, n, "whois.nic.ieee", e, t},
787 {"ifm", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.ifm", e, t},
788 {"iinet", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, "whois.aridnrs.net.au", e, f},
789 {"ikano", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.nic.ikano", "m.dns.nic.ikano", "n.dns.nic.ikano"}, n, n, n, "whois.nic.ikano", e, t},
790 {"il", r, z[2674:2682], 0xa8, "https://www.isoc.org.il/domain-name-registry", w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, "whois.isoc.org.il", e, t},
791 {"im", r, z[2682:2688], 0xa0, e, w{"barney.advsys.co.uk", "hoppy.iom.com", "ns4.ja.net", "pebbles.iom.com"}, n, n, n, "whois.nic.im", e, f},
792 {"imamat", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.imamat", "a2.nic.imamat", "b0.nic.imamat", "c0.nic.imamat"}, n, n, n, "whois.afilias-srs.net", e, f},
793 {"imdb", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.imdb", "dns2.nic.imdb", "dns3.nic.imdb", "dns4.nic.imdb", "dnsa.nic.imdb", "dnsb.nic.imdb", "dnsc.nic.imdb", "dnsd.nic.imdb"}, n, n, n, "whois.nic.imdb", e, t},
794 {"immo", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.immo", e, t},
795 {"immobilien", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.immobilien", e, t},
796 {"in", r, z[2688:2700], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.registry.in", e, f},
797 {"inc", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.inc", e, t},
798 {"indians", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
799 {"industries", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.industries", e, t},
800 {"infiniti", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
801 {"info", r, z[2700:2701], 0x40, "https://info.info/", w{"a0.info.afilias-nst.info", "a2.info.afilias-nst.info", "b0.info.afilias-nst.org", "b2.info.afilias-nst.org", "c0.info.afilias-nst.info", "d0.info.afilias-nst.org"}, n, n, n, "whois.afilias.net", e, t},
802 {"infosys", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
803 {"infy", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
804 {"ing", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
805 {"ink", r, x, 0x40, e, w{"a.nic.ink", "b.nic.ink", "c.nic.ink", "d.nic.ink"}, n, n, n, "whois.nic.ink", e, t},
806 {"institute", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.institute", e, t},
807 {"insurance", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.insurance", "b.nic.insurance", "c.nic.insurance", "d.nic.insurance", "e.nic.insurance", "f.nic.insurance"}, n, n, n, "whois.nic.insurance", e, f},
808 {"insure", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.insure", e, t},
809 {"int", r, z[2701:2702], 0x1040, e, w{"ns.uu.net", "ns0.ja.net", "sec2.authdns.ripe.net", "x.iana-servers.net", "y.iana-servers.net", "z.iana-servers.net"}, n, n, n, "whois.iana.org", e, f},
810 {"intel", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.intel", e, f},
811 {"international", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.international", e, t},
812 {"intuit", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.intuit", "ns2.dns.nic.intuit", "ns3.dns.nic.intuit", "ns4.dns.nic.intuit", "ns5.dns.nic.intuit", "ns6.dns.nic.intuit"}, n, n, n, "whois.nic.intuit", e, t},
813 {"investments", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.investments", e, t},
814 {"io", r, z[2702:2704], 0xe0, "https://www.nic.io/", w{"a0.nic.io", "a2.nic.io", "b0.nic.io", "c0.nic.io"}, n, n, n, "whois.nic.io", e, t},
815 {"ipiranga", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.ipiranga", "ns2.dns.nic.ipiranga", "ns3.dns.nic.ipiranga", "ns4.dns.nic.ipiranga", "ns5.dns.nic.ipiranga", "ns6.dns.nic.ipiranga"}, n, n, n, "whois.nic.ipiranga", e, t},
816 {"iq", r, z[2704:2714], 0xa0, e, w{"iq.cctld.authdns.ripe.net", "ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, "whois.cmc.iq", e, f},
817 {"ir", r, z[2714:2721], 0xa0, e, w{"a.nic.ir", "b.nic.ir", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, "whois.nic.ir", e, t},
818 {"ira", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
819 {"irish", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.irish", e, t},
820 {"is", r, x, 0xa0, e, w{"bes.isnic.is", "durinn.rhnet.is", "isgate.is", "sab.isnic.is", "sunic.sunet.se"}, n, n, n, "whois.isnic.is", e, t},
821 {"iselect", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.iselect", e, f},
822 {"islam", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
823 {"ismaili", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.ismaili", "a2.nic.ismaili", "b0.nic.ismaili", "c0.nic.ismaili"}, n, n, n, "whois.afilias-srs.net", e, f},
824 {"ist", r, x, 0xc4, "http://nic.ist/", w{"a0.nic.ist", "a2.nic.ist", "b0.nic.ist", "c0.nic.ist"}, n, w{"Istanbul", "TR-34"}, n, "whois.afilias-srs.net", e, t},
825 {"istanbul", r, x, 0xc4, "https://nic.istanbul/", w{"a0.nic.istanbul", "a2.nic.istanbul", "b0.nic.istanbul", "c0.nic.istanbul"}, n, w{"Istanbul", "TR-34"}, n, "whois.afilias-srs.net", e, t},
826 {"it", r, z[2721:3082], 0xa0, "https://www.nic.it/it", w{"a.dns.it", "dns.nic.it", "m.dns.it", "nameserver.cnr.it", "r.dns.it", "s.dns.it"}, n, n, n, "whois.nic.it", e, t},
827 {"itau", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.itau", "ns2.dns.nic.itau", "ns3.dns.nic.itau", "ns4.dns.nic.itau", "ns5.dns.nic.itau", "ns6.dns.nic.itau"}, n, n, n, "whois.nic.itau", e, t},
828 {"itv", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.itv", "a2.nic.itv", "b0.nic.itv", "c0.nic.itv"}, n, n, n, "whois.afilias-srs.net", e, t},
829 {"iveco", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.iveco", "a2.nic.iveco", "b0.nic.iveco", "c0.nic.iveco"}, n, n, n, "whois.nic.iveco", e, f},
830 {"iwc", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.iwc", e, f},
831 {"jaguar", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.jaguar", e, f},
832 {"java", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.java", e, f},
833 {"jcb", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
834 {"jcp", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
835 {"je", r, z[3082:3088], 0xa0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk", "e.ci-servers.net"}, n, n, n, "whois.je", e, f},
836 {"jeep", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.jeep", "a2.nic.jeep", "b0.nic.jeep", "c0.nic.jeep"}, n, n, n, "whois.afilias-srs.net", e, f},
837 {"jetzt", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.jetzt", e, t},
838 {"jewelry", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.jewelry", e, t},
839 {"jio", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.jio", "a2.nic.jio", "b0.nic.jio", "c0.nic.jio"}, n, n, n, "whois.nic.jio", e, f},
840 {"jlc", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.jlc", e, f},
841 {"jll", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.jll", "a2.nic.jll", "b0.nic.jll", "c0.nic.jll"}, n, n, n, "whois.afilias-srs.net", e, f},
842 {"jm", r, z[3088:3094], 0xa8, e, w{"jm.cctld.authdns.ripe.net", "ns.jm", "ns.utechjamaica.edu.jm", "ns3-jm.fsl.org.jm", "phloem.uoregon.edu"}, n, n, n, e, e, f},
843 {"jmp", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.jmp", "ns2.dns.nic.jmp", "ns3.dns.nic.jmp", "ns4.dns.nic.jmp", "ns5.dns.nic.jmp", "ns6.dns.nic.jmp"}, n, n, n, "whois.nic.jmp", e, t},
844 {"jnj", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.jnj", "ns2.dns.nic.jnj", "ns3.dns.nic.jnj", "ns4.dns.nic.jnj", "ns5.dns.nic.jnj", "ns6.dns.nic.jnj"}, n, n, n, "whois.nic.jnj", e, t},
845 {"jo", r, z[3094:3102], 0xa0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, "http://www.dns.jo/Whois.aspx", f},
846 {"jobs", r, x, 0x1040, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.jobs", e, f},
847 {"joburg", r, x, 0xc4, e, w{"coza1.dnsnode.net", "ns.coza.net.za", "ns2us.dns.business"}, n, w{"Johannesburg"}, n, "joburg-whois.registry.net.za", e, t},
848 {"jot", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.jot", "dns2.nic.jot", "dns3.nic.jot", "dns4.nic.jot", "dnsa.nic.jot", "dnsb.nic.jot", "dnsc.nic.jot", "dnsd.nic.jot"}, n, n, n, "whois.nic.jot", e, t},
849 {"joy", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.joy", "dns2.nic.joy", "dns3.nic.joy", "dns4.nic.joy", "dnsa.nic.joy", "dnsb.nic.joy", "dnsc.nic.joy", "dnsd.nic.joy"}, n, n, n, "whois.nic.joy", e, t},
850 {"jp", r, z[3102:3205], 0xa0, e, w{"a.dns.jp", "b.dns.jp", "c.dns.jp", "d.dns.jp", "e.dns.jp", "f.dns.jp", "g.dns.jp", "h.dns.jp"}, n, n, n, "whois.jprs.jp", e, t},
851 {"jpmorgan", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.jpmorgan", "ns2.dns.nic.jpmorgan", "ns3.dns.nic.jpmorgan", "ns4.dns.nic.jpmorgan", "ns5.dns.nic.jpmorgan", "ns6.dns.nic.jpmorgan"}, n, n, n, "whois.nic.jpmorgan", e, t},
852 {"jpmorganchase", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
853 {"jprs", r, x, 0x42, "https://newgtlds.icann.org/", w{"tld1.nic.jprs", "tld2.nic.jprs", "tld3.nic.jprs", "tld4.nic.jprs", "tld5.nic.jprs"}, n, n, n, e, e, t},
854 {"juegos", r, x, 0x40, "https://nic.juegos/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
855 {"juniper", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.juniper", e, f},
856 {"justforu", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
857 {"kaufen", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.kaufen", e, t},
858 {"kddi", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.kddi", e, t},
859 {"ke", r, z[3205:3214], 0xa8, "https://kenic.or.ke/", w{"kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, "whois.kenic.or.ke", e, f},
860 {"kerastase", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
861 {"kerryhotels", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerryhotels", e, f},
862 {"kerrylogisitics", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
863 {"kerrylogistics", r, x, 0, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerrylogistics", e, t},
864 {"kerryproperties", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kerryproperties", e, f},
865 {"ketchup", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
866 {"kfh", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.kfh", "b.nic.kfh", "c.nic.kfh", "d.nic.kfh"}, n, n, n, "whois.nic.kfh", e, f},
867 {"kg", r, z[3214:3220], 0xa0, e, w{"kg.cctld.authdns.ripe.net", "ns.kg"}, n, n, n, "whois.kg", e, f},
868 {"kh", r, z[3220:3227], 0xa0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
869 {"ki", r, z[3227:3239], 0xa0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, "whois.nic.ki", e, f},
870 {"kia", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.kia", e, t},
871 {"kid", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
872 {"kids", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
873 {"kiehls", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
874 {"kim", r, x, 0x40, "https://get.kim/", w{"a0.nic.kim", "a2.nic.kim", "b0.nic.kim", "c0.nic.kim"}, n, n, n, "whois.afilias.net", e, t},
875 {"kinder", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.kinder", "ns2.dns.nic.kinder", "ns3.dns.nic.kinder", "ns4.dns.nic.kinder", "ns5.dns.nic.kinder", "ns6.dns.nic.kinder"}, n, n, n, "whois.nic.kinder", e, t},
876 {"kindle", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.kindle", "dns2.nic.kindle", "dns3.nic.kindle", "dns4.nic.kindle", "dnsa.nic.kindle", "dnsb.nic.kindle", "dnsc.nic.kindle", "dnsd.nic.kindle"}, n, n, n, "whois.nic.kindle", e, t},
877 {"kitchen", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.kitchen", e, t},
878 {"kiwi", r, x, 0x40, e, w{"a.ns.nic.kiwi", "b.ns.nic.kiwi"}, n, n, n, "whois.nic.kiwi", e, t},
879 {"km", r, z[3239:3253], 0xa0, e, w{"dns1.nic.km", "dns2.nic.km", "ns-km.afrinic.net"}, n, n, n, e, e, f},
880 {"kn", r, z[3253:3259], 0xa0, "https://www.nic.kn/", w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.kn"}, n, n, n, "whois.nic.kn", e, f},
881 {"koeln", r, x, 0xc4, e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Cologne", "Koeln"}, n, "whois.ryce-rsp.com", e, t},
882 {"komatsu", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.komatsu", e, t},
883 {"konami", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
884 {"kone", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
885 {"kosher", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.kosher", "a2.nic.kosher", "b0.nic.kosher", "c0.nic.kosher"}, n, n, n, "whois.nic.kosher", e, f},
886 {"kp", r, z[3259:3263], 0xa0, e, w{"ns1.kptc.kp", "ns2.kptc.kp"}, n, n, n, e, e, f},
887 {"kpmg", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.kpmg", "ns2.dns.nic.kpmg", "ns3.dns.nic.kpmg", "ns4.dns.nic.kpmg", "ns5.dns.nic.kpmg", "ns6.dns.nic.kpmg"}, n, n, n, "whois.nic.kpmg", e, t},
888 {"kpn", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.kpn", "b.nic.kpn", "c.nic.kpn", "d.nic.kpn"}, n, n, n, e, e, f},
889 {"kr", r, z[3263:3292], 0xa0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, "whois.kr", e, t},
890 {"krd", r, x, 0x440, "https://newgtlds.icann.org/", w{"a.nic.krd", "b.nic.krd", "c.nic.krd", "d.nic.krd"}, n, n, n, "whois.nic.krd", e, f},
891 {"kred", r, x, 0x50, "https://newgtlds.icann.org/", w{"a.nic.kred", "b.nic.kred", "c.nic.kred", "d.nic.kred"}, n, n, n, "whois.nic.kred", e, t},
892 {"kuokgroup", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.kuokgroup", e, f},
893 {"kw", r, z[3292:3297], 0xa0, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, n, e, "http://www.kw/", f},
894 {"ky", r, z[3297:3302], 0xa0, "https://kyregistry.ky/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.kyregistry.ky", e, f},
895 {"kyknet", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
896 {"kyoto", r, x, 0xc4, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Kyoto", "JP-26"}, n, "whois.nic.kyoto", e, t},
897 {"kz", r, z[3302:3308], 0xa0, e, w{"ns.nic.kz", "ns1.nic.kz"}, n, n, n, "whois.nic.kz", e, f},
898 {"la", r, x, 0xa4, e, w{"ns1.nic.la", "ns2.nic.la", "ns3.nic.la", "ns4.nic.la"}, n, w{"Los Angeles"}, n, "whois.nic.la", e, t},
899 {"lacaixa", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.lacaixa", e, f},
900 {"ladbrokes", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.ladbrokes", e, t},
901 {"lamborghini", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.lamborghini", "a2.nic.lamborghini", "b0.nic.lamborghini", "c0.nic.lamborghini"}, n, n, n, "whois.afilias-srs.net", e, t},
902 {"lamer", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.lamer", "a2.nic.lamer", "b0.nic.lamer", "c0.nic.lamer"}, n, n, n, "whois.nic.lamer", e, f},
903 {"lancaster", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.lancaster", e, t},
904 {"lancia", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.lancia", "a2.nic.lancia", "b0.nic.lancia", "c0.nic.lancia"}, n, n, n, "whois.afilias-srs.net", e, f},
905 {"lancome", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.lancome", e, f},
906 {"land", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.land", e, t},
907 {"landrover", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.landrover", e, f},
908 {"lanxess", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.lanxess", "ns2.dns.nic.lanxess", "ns3.dns.nic.lanxess", "ns4.dns.nic.lanxess", "ns5.dns.nic.lanxess", "ns6.dns.nic.lanxess"}, n, n, n, "whois.nic.lanxess", e, t},
909 {"lasalle", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.lasalle", "a2.nic.lasalle", "b0.nic.lasalle", "c0.nic.lasalle"}, n, n, n, "whois.afilias-srs.net", e, f},
910 {"lat", r, x, 0x40, "https://www.nic.lat/en/", w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, "whois.nic.lat", e, t},
911 {"latino", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.latino", "a2.nic.latino", "b0.nic.latino", "c0.nic.latino"}, n, n, n, "whois.nic.latino", e, f},
912 {"latrobe", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.latrobe", "b.nic.latrobe", "c.nic.latrobe", "d.nic.latrobe"}, n, n, n, "whois.nic.latrobe", e, f},
913 {"law", r, x, 0x40, "https://nic.law/", w{"dns1.nic.law", "dns2.nic.law", "dns3.nic.law", "dns4.nic.law", "dnsa.nic.law", "dnsb.nic.law", "dnsc.nic.law", "dnsd.nic.law"}, n, n, n, "whois.nic.law", e, t},
914 {"lawyer", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.lawyer", e, t},
915 {"lb", r, z[3308:3313], 0xa8, e, w{"fork.sth.dnsnode.net", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, e, "http://www.aub.edu.lb/lbdr/", f},
916 {"lc", r, z[3313:3322], 0xa0, "http://www.nic.lc/", w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois.afilias-grs.info", e, f},
917 {"lds", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.lds", "a2.nic.lds", "b0.nic.lds", "c0.nic.lds"}, n, n, n, "whois.nic.lds", e, f},
918 {"lease", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.lease", e, t},
919 {"leclerc", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois-leclerc.nic.fr", e, t},
920 {"lefrak", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lefrak", e, f},
921 {"legal", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.legal", e, t},
922 {"lego", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lego", e, t},
923 {"lexus", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.lexus", e, t},
924 {"lgbt", r, x, 0x40, "https://get.lgbt/", w{"a0.nic.lgbt", "a2.nic.lgbt", "b0.nic.lgbt", "c0.nic.lgbt"}, n, n, n, "whois.afilias.net", e, t},
925 {"li", r, x, 0xa0, e, w{"a.nic.li", "b.nic.li", "c.nic.li", "e.nic.li", "f.nic.li", "g.nic.li"}, n, n, n, "whois.nic.li", e, t},
926 {"liaison", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.liaison", e, f},
927 {"lidl", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.lidl", "b.nic.lidl", "c.nic.lidl", "d.nic.lidl"}, n, n, n, "whois.nic.lidl", e, t},
928 {"life", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.life", e, t},
929 {"lifeinsurance", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.lifeinsurance", "ns2.dns.nic.lifeinsurance", "ns3.dns.nic.lifeinsurance", "ns4.dns.nic.lifeinsurance", "ns5.dns.nic.lifeinsurance", "ns6.dns.nic.lifeinsurance"}, n, n, n, "whois.nic.lifeinsurance", e, t},
930 {"lifestyle", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lifestyle", e, f},
931 {"lighting", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.lighting", e, t},
932 {"like", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.like", "dns2.nic.like", "dns3.nic.like", "dns4.nic.like", "dnsa.nic.like", "dnsb.nic.like", "dnsc.nic.like", "dnsd.nic.like"}, n, n, n, "whois.nic.like", e, t},
933 {"lilly", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.lilly", "ns2.dns.nic.lilly", "ns3.dns.nic.lilly", "ns4.dns.nic.lilly", "ns5.dns.nic.lilly", "ns6.dns.nic.lilly"}, n, n, n, "whois.nic.lilly", e, t},
934 {"limited", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.limited", e, t},
935 {"limo", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.limo", e, t},
936 {"lincoln", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.lincoln", "ns2.dns.nic.lincoln", "ns3.dns.nic.lincoln", "ns4.dns.nic.lincoln", "ns5.dns.nic.lincoln", "ns6.dns.nic.lincoln"}, n, n, n, "whois.nic.lincoln", e, t},
937 {"linde", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.linde", e, t},
938 {"link", r, x, 0x40, "https://nic.link/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
939 {"lipsy", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lipsy", e, f},
940 {"live", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.live", e, t},
941 {"livestrong", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
942 {"living", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
943 {"lixil", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.lixil", e, t},
944 {"lk", r, z[3322:3336], 0xa0, e, w{"c.nic.lk", "d.nic.lk", "l.nic.lk", "m.nic.lk", "ns1.ac.lk", "p.nic.lk", "pendragon.cs.purdue.edu", "t.nic.lk"}, n, n, n, "whois.nic.lk", e, f},
945 {"llc", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.llc", "a2.nic.llc", "b0.nic.llc", "c0.nic.llc"}, n, n, n, "whois.afilias.net", e, f},
946 {"llp", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
947 {"loan", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.loan", "ns2.dns.nic.loan", "ns3.dns.nic.loan", "ns4.dns.nic.loan", "ns5.dns.nic.loan", "ns6.dns.nic.loan"}, n, n, n, "whois.nic.loan", e, t},
948 {"loans", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.loans", e, t},
949 {"locker", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.locker", "a2.nic.locker", "b0.nic.locker", "c0.nic.locker"}, n, n, n, "whois.nic.locker", e, f},
950 {"locus", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.locus", "dns2.nic.locus", "dns3.nic.locus", "dns4.nic.locus", "dnsa.nic.locus", "dnsb.nic.locus", "dnsc.nic.locus", "dnsd.nic.locus"}, n, n, n, "whois.nic.locus", e, f},
951 {"loft", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.loft", "ns2.dns.nic.loft", "ns3.dns.nic.loft", "ns4.dns.nic.loft", "ns5.dns.nic.loft", "ns6.dns.nic.loft"}, n, n, n, "whois.nic.loft", e, f},
952 {"lol", r, x, 0x40, "https://nic.lol/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
953 {"london", r, x, 0xc4, "http://nic.london/", w{"dns1.nic.london", "dns2.nic.london", "dns3.nic.london", "dns4.nic.london", "dnsa.nic.london", "dnsb.nic.london", "dnsc.nic.london", "dnsd.nic.london"}, n, w{"London", "GB-LND", "GB-BDG", "GB-BNE", "GB-BEX", "GB-BEN", "GB-BRY", "GB-CMD", "GB-CRY", "GB-EAL", "GB-ENF", "GB-GRE", "GB-HCK", "GB-HMF", "GB-HRY", "GB-HRW", "GB-HAV", "GB-HIL", "GB-HNS", "GB-ISL", "GB-KEC", "GB-KTT", "GB-LBH", "GB-LEW", "GB-MRT", "GB-NWM", "GB-RDB", "GB-RIC", "GB-SWK", "GB-STN", "GB-TWH", "GB-WFT", "GB-WND", "GB-WSM"}, n, "whois.nic.london", e, t},
954 {"loreal", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
955 {"lotte", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.lotte", e, t},
956 {"lotto", r, x, 0x40, "https://nic.lotto/", w{"a0.nic.lotto", "a2.nic.lotto", "b0.nic.lotto", "c0.nic.lotto"}, n, n, n, "whois.afilias.net", e, t},
957 {"love", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.love", "b.nic.love", "c.nic.love", "d.nic.love"}, n, n, n, "whois.nic.love", e, t},
958 {"lpl", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.lpl", "b.nic.lpl", "c.nic.lpl", "d.nic.lpl"}, n, n, n, "whois.nic.lpl", e, t},
959 {"lplfinancial", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.lplfinancial", "b.nic.lplfinancial", "c.nic.lplfinancial", "d.nic.lplfinancial"}, n, n, n, "whois.nic.lplfinancial", e, t},
960 {"lr", r, z[3336:3342], 0xa8, e, w{"fork.sth.dnsnode.net", "ns-lr.afrinic.net", "rip.psg.com"}, n, n, n, e, e, f},
961 {"ls", r, z[3342:3348], 0xa0, "http://www.nic.ls/", w{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, n, "whois.nic.ls", e, f},
962 {"lt", r, z[3348:3349], 0xa0, e, w{"a.tld.lt", "b.tld.lt", "c.tld.lt", "d.tld.lt", "e.tld.lt", "f.tld.lt"}, n, n, n, "whois.domreg.lt", e, t},
963 {"ltd", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.ltd", e, t},
964 {"ltda", r, x, 0x40, "https://nic.ltda/", w{"a0.nic.ltda", "a2.nic.ltda", "b0.nic.ltda", "c0.nic.ltda"}, n, n, n, "whois.afilias-srs.net", e, f},
965 {"lu", r, x, 0xa0, e, w{"g.dns.lu", "i.dns.lu", "j.dns.lu", "k.dns.lu", "ns1.dns.lu", "p.dns.lu"}, n, n, n, "whois.dns.lu", e, t},
966 {"lundbeck", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.lundbeck", e, f},
967 {"lupin", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
968 {"luxe", r, x, 0x40, "http://nix.luxe/", w{"dns1.nic.luxe", "dns2.nic.luxe", "dns3.nic.luxe", "dns4.nic.luxe", "dnsa.nic.luxe", "dnsb.nic.luxe", "dnsc.nic.luxe", "dnsd.nic.luxe"}, n, n, n, "whois.nic.luxe", e, t},
969 {"luxury", r, x, 0x40, "https://nic.luxury/", w{"a.nic.luxury", "b.nic.luxury", "c.nic.luxury", "d.nic.luxury"}, n, n, n, "whois.nic.luxury", e, f},
970 {"lv", r, z[3349:3358], 0xa0, e, w{"a.nic.lv", "b.nic.lv", "c.nic.lv", "d.nic.lv", "sunic.sunet.se"}, n, n, n, "whois.nic.lv", e, t},
971 {"ly", r, z[3358:3367], 0xa0, "https://nic.ly/", w{"dns.lttnet.net", "dns1.lttnet.net", "ns-ly.afrinic.net", "pch.ltt.ly", "phloem.uoregon.edu"}, n, n, n, "whois.nic.ly", e, f},
972 {"ma", r, z[3367:3373], 0xa0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, "whois.registre.ma", e, f},
973 {"macys", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.macys", e, f},
974 {"madrid", r, x, 0xc4, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"Madrid", "ES-MD"}, n, "whois.nic.madrid", e, f},
975 {"maif", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
976 {"mail", r, x, 0x2140, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", n, n, n, n, e, e, t},
977 {"maison", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.maison", e, t},
978 {"makeup", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.makeup", "b.nic.makeup", "c.nic.makeup", "d.nic.makeup"}, n, n, n, "whois.nic.makeup", e, f},
979 {"man", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.man", e, t},
980 {"management", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.management", e, t},
981 {"mango", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.mango", e, t},
982 {"map", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
983 {"market", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.market", e, t},
984 {"marketing", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.marketing", e, t},
985 {"markets", r, x, 0x40, "https://bostonivy.co/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.markets", e, f},
986 {"marriott", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.marriott", "a2.nic.marriott", "b0.nic.marriott", "c0.nic.marriott"}, n, n, n, "whois.afilias-srs.net", e, f},
987 {"marshalls", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.marshalls", "ns2.dns.nic.marshalls", "ns3.dns.nic.marshalls", "ns4.dns.nic.marshalls", "ns5.dns.nic.marshalls", "ns6.dns.nic.marshalls"}, n, n, n, "whois.nic.marshalls", e, f},
988 {"maserati", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.maserati", "a2.nic.maserati", "b0.nic.maserati", "c0.nic.maserati"}, n, n, n, "whois.nic.maserati", e, f},
989 {"matrix", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
990 {"mattel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.mattel", "ns2.dns.nic.mattel", "ns3.dns.nic.mattel", "ns4.dns.nic.mattel", "ns5.dns.nic.mattel", "ns6.dns.nic.mattel"}, n, n, n, "whois.nic.mattel", e, t},
991 {"maybelline", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
992 {"mba", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.mba", e, t},
993 {"mc", r, z[3373:3375], 0xa0, "https://www.nic.mc/", w{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, n, e, e, f},
994 {"mcd", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
995 {"mcdonalds", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
996 {"mckinsey", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.mckinsey", "a2.nic.mckinsey", "b0.nic.mckinsey", "c0.nic.mckinsey"}, n, n, n, "whois.nic.mckinsey", e, f},
997 {"md", r, x, 0xa0, e, w{"nsa.tld.md", "nsb.tld.md", "nsc.dns.md", "nsf.dns.md", "nsr.dns.md"}, n, n, n, "whois.nic.md", e, f},
998 {"me", r, z[3375:3383], 0xe0, "https://domain.me/", w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, "whois.nic.me", e, f},
999 {"med", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.med", e, f},
1000 {"media", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.media", e, t},
1001 {"medical", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1002 {"meet", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1003 {"melbourne", r, x, 0xc4, "https://www.live.melbourne/", w{"a.nic.melbourne", "b.nic.melbourne", "c.nic.melbourne", "d.nic.melbourne"}, n, w{"Melbourne"}, n, "whois.nic.melbourne", e, f},
1004 {"meme", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1005 {"memorial", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.memorial", e, t},
1006 {"men", r, x, 0x40, "https://www.famousfourmedia.com/", w{"a.nic.men", "b.nic.men", "c.nic.men", "d.nic.men"}, n, n, n, "whois.nic.men", e, t},
1007 {"menu", r, x, 0x40, e, w{"a.nic.menu", "b.nic.menu", "c.nic.menu", "d.nic.menu"}, n, n, n, "whois.nic.menu", e, f},
1008 {"meo", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1009 {"merck", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1010 {"merckmsd", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
1011 {"metlife", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.metlife", e, f},
1012 {"mf", r, x, 0x8a0, "https://en.wikipedia.org/wiki/.mf", n, n, n, n, e, e, f},
1013 {"mg", r, z[3383:3394], 0xa0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, "whois.nic.mg", e, f},
1014 {"mh", r, x, 0xa8, e, w{"ns.amarshallinc.com", "ns.ntamar.net"}, n, n, n, e, e, f},
1015 {"miami", r, x, 0xc4, "http://nic.miami/", w{"dns1.nic.miami", "dns2.nic.miami", "dns3.nic.miami", "dns4.nic.miami", "dnsa.nic.miami", "dnsb.nic.miami", "dnsc.nic.miami", "dnsd.nic.miami"}, n, w{"Miami"}, n, "whois.nic.miami", e, t},
1016 {"microsoft", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
1017 {"mih", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1018 {"mii", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1019 {"mil", r, x, 0x1040, e, w{"con1.nipr.mil", "con2.nipr.mil", "eur1.nipr.mil", "eur2.nipr.mil", "pac1.nipr.mil", "pac2.nipr.mil"}, n, n, n, "is-1.nic.mil", e, f},
1020 {"mini", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.mini", "b.nic.mini", "c.nic.mini", "d.nic.mini"}, n, n, n, "whois.nic.mini", e, f},
1021 {"mint", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.mint", "ns2.dns.nic.mint", "ns3.dns.nic.mint", "ns4.dns.nic.mint", "ns5.dns.nic.mint", "ns6.dns.nic.mint"}, n, n, n, "whois.nic.mint", e, t},
1022 {"mit", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.mit", "a2.nic.mit", "b0.nic.mit", "c0.nic.mit"}, n, n, n, "whois.afilias-srs.net", e, f},
1023 {"mitek", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1024 {"mitsubishi", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
1025 {"mk", r, z[3394:3402], 0xa0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, "whois.marnet.mk", e, f},
1026 {"ml", r, z[3402:3408], 0xa0, e, w{"a.ns.ml", "b.ns.ml", "c.ns.ml", "d.ns.ml"}, n, n, n, "whois.dot.ml", e, t},
1027 {"mlb", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.mlb", "ns2.dns.nic.mlb", "ns3.dns.nic.mlb", "ns4.dns.nic.mlb", "ns5.dns.nic.mlb", "ns6.dns.nic.mlb"}, n, n, n, "whois.nic.mlb", e, t},
1028 {"mls", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.ns.nic.mls", "b.ns.nic.mls"}, n, n, n, "whois.nic.mls", e, t},
1029 {"mm", r, z[3408:3416], 0xa8, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, "whois.registry.gov.mm", e, f},
1030 {"mma", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.mma", e, t},
1031 {"mn", r, z[3416:3419], 0xa0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.magic.mn", "ns2.magic.mn", "ns3.magic.mn", "ns4.magic.mn"}, n, n, n, "whois.nic.mn", e, f},
1032 {"mnet", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1033 {"mo", r, z[3419:3425], 0xa0, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, "whois.monic.mo", e, f},
1034 {"mobi", r, x, 0x1040, "https://dotmobi.mobi/", w{"a0.mobi.afilias-nst.info", "a2.mobi.afilias-nst.info", "b0.mobi.afilias-nst.org", "b2.mobi.afilias-nst.org", "c0.mobi.afilias-nst.info", "d0.mobi.afilias-nst.org"}, n, n, n, "whois.nic.mobi", e, t},
1035 {"mobile", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.mobile", "a2.nic.mobile", "b0.nic.mobile", "c0.nic.mobile"}, n, n, n, "whois.nic.mobile", e, f},
1036 {"mobily", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.mobily", e, f},
1037 {"moda", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.moda", e, t},
1038 {"moe", r, x, 0x40, e, w{"ns1.dns.nic.moe", "ns2.dns.nic.moe", "ns3.dns.nic.moe", "ns4.dns.nic.moe", "ns5.dns.nic.moe", "ns6.dns.nic.moe"}, n, n, n, "whois.nic.moe", e, t},
1039 {"moi", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.moi", "dns2.nic.moi", "dns3.nic.moi", "dns4.nic.moi", "dnsa.nic.moi", "dnsb.nic.moi", "dnsc.nic.moi", "dnsd.nic.moi"}, n, n, n, "whois.nic.moi", e, t},
1040 {"mom", r, x, 0x40, "https://nic.mom/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
1041 {"monash", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.monash", "b.nic.monash", "c.nic.monash", "d.nic.monash"}, n, n, n, "whois.nic.monash", e, f},
1042 {"money", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.money", e, t},
1043 {"monster", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.monster", "b.nic.monster", "c.nic.monster", "d.nic.monster"}, n, n, n, "whois.nic.monster", e, f},
1044 {"montblanc", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1045 {"mopar", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
1046 {"mormon", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.mormon", "a2.nic.mormon", "b0.nic.mormon", "c0.nic.mormon"}, n, n, n, "whois.nic.mormon", e, f},
1047 {"mortgage", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.mortgage", e, t},
1048 {"moscow", r, x, 0xc4, "https://newgtlds.icann.org/", w{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, w{"Moscow", "RU-MOW"}, n, "whois.nic.moscow", e, f},
1049 {"moto", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.moto", "ns2.dns.nic.moto", "ns3.dns.nic.moto", "ns4.dns.nic.moto", "ns5.dns.nic.moto", "ns6.dns.nic.moto"}, n, n, n, "whois.nic.moto", e, t},
1050 {"motorcycles", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.motorcycles", "b.nic.motorcycles", "c.nic.motorcycles", "d.nic.motorcycles"}, n, n, n, "whois.nic.motorcycles", e, f},
1051 {"mov", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1052 {"movie", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.movie", e, t},
1053 {"movistar", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois-fe.movistar.tango.knipp.de", e, f},
1054 {"mozaic", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1055 {"mp", r, z[3425:3429], 0xa0, "https://get.mp/", w{"ns1.nic.mp", "ns2.nic.mp", "ns3.nic.mp", "ns4.nic.mp"}, n, n, n, "whois.nic.mp", e, f},
1056 {"mq", r, x, 0xa0, "https://www.dom-enic.com/", w{"ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, n, "whois.mediaserv.net", e, f},
1057 {"mr", r, z[3429:3433], 0xa0, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, "whois.nic.mr", e, f},
1058 {"mrmuscle", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1059 {"mrporter", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1060 {"ms", r, z[3433:3437], 0xe0, e, w{"ms-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, n, "whois.nic.ms", e, f},
1061 {"msd", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
1062 {"mt", r, z[3437:3442], 0xa0, e, w{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, n, e, "https://www.nic.org.mt/dotmt/", f},
1063 {"mtn", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.mtn", "dns2.nic.mtn", "dns3.nic.mtn", "dns4.nic.mtn", "dnsa.nic.mtn", "dnsb.nic.mtn", "dnsc.nic.mtn", "dnsd.nic.mtn"}, n, n, n, "whois.nic.mtn", e, f},
1064 {"mtpc", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.mtpc", e, f},
1065 {"mtr", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.nic.mtr", "ns2.nic.mtr", "ns3.nic.mtr", "ns4.nic.mtr"}, n, n, n, "whois.nic.mtr", e, f},
1066 {"mu", r, z[3442:3451], 0xa0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, "whois.nic.mu", e, f},
1067 {"multichoice", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1068 {"museum", r, x, 0x1040, "https://welcome.museum/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.museum", e, t},
1069 {"music", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1070 {"mutual", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.mutual", "ns2.dns.nic.mutual", "ns3.dns.nic.mutual", "ns4.dns.nic.mutual", "ns5.dns.nic.mutual", "ns6.dns.nic.mutual"}, n, n, n, "whois.nic.mutual", e, t},
1071 {"mutualfunds", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1072 {"mutuelle", r, x, 0x840, "https://newgtlds.icann.org/", n, n, n, n, "whois-mutuelle.nic.fr", e, f},
1073 {"mv", r, z[3451:3465], 0xa0, e, w{"mv-ns.anycast.pch.net", "ns.dhivehinet.net.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, f},
1074 {"mw", r, z[3465:3475], 0xa0, "http://nic.mw/", w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, "whois.nic.mw", e, f},
1075 {"mx", r, z[3475:3480], 0xa0, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, "whois.mx", e, f},
1076 {"my", r, z[3480:3488], 0xa0, "https://mynic.my/", w{"a.mynic.centralnic-dns.com", "a.nic.my", "a1.nic.my", "b.mynic.centralnic-dns.com", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, "whois.mynic.my", e, t},
1077 {"mz", r, z[3488:3495], 0xa8, "https://www.domains.co.mz/", w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, "whois.nic.mz", e, f},
1078 {"mzansimagic", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1079 {"na", r, z[3495:3513], 0xa0, e, w{"anyc2.irondns.net", "etld-1.anycast.net", "na-ns.anycast.pch.net", "na.anycastdns.cz"}, n, n, n, "whois.na-nic.com.na", e, f},
1080 {"nab", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nab", e, f},
1081 {"nadex", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.nadex", e, f},
1082 {"nagoya", r, x, 0xc4, e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Nagoya-shi"}, n, "whois.nic.nagoya", e, t},
1083 {"name", r, z[3513:3516], 0x40, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.name", e, t},
1084 {"naspers", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1085 {"nationwide", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nationwide", e, f},
1086 {"natura", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, "whois.gtlds.nic.br", e, t},
1087 {"navy", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.navy", e, t},
1088 {"nba", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.nba", "ns2.dns.nic.nba", "ns3.dns.nic.nba", "ns4.dns.nic.nba", "ns5.dns.nic.nba", "ns6.dns.nic.nba"}, n, n, n, "whois.nic.nba", e, t},
1089 {"nc", r, z[3516:3519], 0xa0, e, w{"any-ns1.nc", "nc.cctld.authdns.ripe.net", "ns1.nc", "ns2.nc"}, n, n, n, "whois.nc", e, f},
1090 {"ne", r, z[3519:3524], 0xa0, e, w{"bow.rain.fr", "ne.cctld.authdns.ripe.net", "ns-ne.afrinic.net", "ns.intnet.ne"}, n, n, n, e, e, f},
1091 {"nec", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.nec", e, t},
1092 {"net", r, z[3524:3534], 0x40, "https://www.verisign.com/en_US/domain-names/net-domain-names/index.xhtml", w{"a.gtld-servers.net", "b.gtld-servers.net", "c.gtld-servers.net", "d.gtld-servers.net", "e.gtld-servers.net", "f.gtld-servers.net", "g.gtld-servers.net", "h.gtld-servers.net", "i.gtld-servers.net", "j.gtld-servers.net", "k.gtld-servers.net", "l.gtld-servers.net", "m.gtld-servers.net"}, n, n, n, "whois.verisign-grs.com", e, t},
1093 {"netaporter", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1094 {"netbank", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.netbank", "b.nic.netbank", "c.nic.netbank", "d.nic.netbank"}, n, n, n, "whois.nic.netbank", e, f},
1095 {"netflix", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.netflix", "ns2.dns.nic.netflix", "ns3.dns.nic.netflix", "ns4.dns.nic.netflix", "ns5.dns.nic.netflix", "ns6.dns.nic.netflix"}, n, n, n, "whois.nic.netflix", e, f},
1096 {"network", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.network", e, t},
1097 {"neustar", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.neustar", "ns2.dns.nic.neustar", "ns3.dns.nic.neustar", "ns4.dns.nic.neustar", "ns5.dns.nic.neustar", "ns6.dns.nic.neustar"}, n, n, n, "whois.nic.neustar", e, t},
1098 {"new", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1099 {"newholland", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.newholland", e, f},
1100 {"news", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.news", e, t},
1101 {"next", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.next", e, f},
1102 {"nextdirect", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nextdirect", e, f},
1103 {"nexus", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1104 {"nf", r, z[3534:3546], 0xa0, e, w{"ns.anycast.nic.nf", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.nf", e, f},
1105 {"nfl", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.nfl", "ns2.dns.nic.nfl", "ns3.dns.nic.nfl", "ns4.dns.nic.nfl", "ns5.dns.nic.nfl", "ns6.dns.nic.nfl"}, n, n, n, "whois.nic.nfl", e, t},
1106 {"ng", r, z[3546:3556], 0xa0, "https://web4africa.ng/ng-domains/", w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, "whois.nic.net.ng", e, f},
1107 {"ngo", r, x, 0x40, "https://pir.org/products/ngo-ong-domain/", w{"a0.nic.ngo", "a2.nic.ngo", "b0.nic.ngo", "b2.nic.ngo", "c0.nic.ngo", "d0.nic.ngo"}, n, n, n, "whois.publicinterestregistry.net", e, t},
1108 {"nhk", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.nhk", e, t},
1109 {"ni", r, z[3556:3571], 0xa8, "https://www.nic.ni/", w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, "http://www.nic.ni/", f},
1110 {"nico", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.nico", e, t},
1111 {"nike", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.nike", "ns2.dns.nic.nike", "ns3.dns.nic.nike", "ns4.dns.nic.nike", "ns5.dns.nic.nike", "ns6.dns.nic.nike"}, n, n, n, "whois.nic.nike", e, t},
1112 {"nikon", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nikon", e, f},
1113 {"ninja", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.ninja", e, t},
1114 {"nissan", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
1115 {"nissay", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.nissay", e, t},
1116 {"nl", r, z[3571:3577], 0xa0, e, w{"ns1.dns.nl", "ns2.dns.nl", "ns3.dns.nl"}, n, n, n, "whois.domain-registry.nl", e, f},
1117 {"no", r, z[3577:3587], 0xa0, e, w{"i.nic.no", "njet.norid.no", "not.norid.no", "x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, "whois.norid.no", e, t},
1118 {"nokia", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.nokia", "a2.nic.nokia", "b0.nic.nokia", "c0.nic.nokia"}, n, n, n, "whois.afilias-srs.net", e, t},
1119 {"northlandinsurance", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1120 {"northwesternmutual", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.northwesternmutual", "ns2.dns.nic.northwesternmutual", "ns3.dns.nic.northwesternmutual", "ns4.dns.nic.northwesternmutual", "ns5.dns.nic.northwesternmutual", "ns6.dns.nic.northwesternmutual"}, n, n, n, "whois.nic.northwesternmutual", e, t},
1121 {"norton", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.norton", e, t},
1122 {"now", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.now", "dns2.nic.now", "dns3.nic.now", "dns4.nic.now", "dnsa.nic.now", "dnsb.nic.now", "dnsc.nic.now", "dnsd.nic.now"}, n, n, n, "whois.nic.now", e, t},
1123 {"nowruz", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.ns.nic.nowruz", "b.ns.nic.nowruz", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.nowruz", e, f},
1124 {"nowtv", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.nowtv", "a2.nic.nowtv", "b0.nic.nowtv", "c0.nic.nowtv"}, n, n, n, "whois.nic.nowtv", e, t},
1125 {"np", r, z[3587:3733], 0xa8, e, w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, "http://register.mos.com.np/np-whois-lookup", f},
1126 {"nr", r, z[3733:3740], 0xa0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, "http://www.cenpac.net.nr/dns/whois.html", f},
1127 {"nra", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.nra", "a2.nic.nra", "b0.nic.nra", "c0.nic.nra"}, n, n, n, "whois.afilias-srs.net", e, f},
1128 {"nrw", r, x, 0x440, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"DE-NW"}, n, "whois.nic.nrw", e, t},
1129 {"ntt", r, x, 0x42, "https://newgtlds.icann.org/", w{"tld1.nic.ntt", "tld2.nic.ntt", "tld3.nic.ntt", "tld5.nic.ntt"}, n, n, n, e, e, t},
1130 {"nu", r, z[3740:3745], 0xe0, "https://www.nic.nu/", w{"a.ns.nu", "c.ns.nu", "d.ns.nu", "m.ns.nu", "y.ns.nu", "z.ns.nu"}, n, n, n, "whois.iis.nu", e, t},
1131 {"nyc", r, x, 0xc4, e, w{"ns1.dns.nic.nyc", "ns2.dns.nic.nyc", "ns3.dns.nic.nyc", "ns4.dns.nic.nyc", "ns5.dns.nic.nyc", "ns6.dns.nic.nyc"}, n, w{"New York City"}, n, "whois.nic.nyc", e, t},
1132 {"nz", r, z[3745:3760], 0xa0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, "whois.srs.net.nz", e, t},
1133 {"obi", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.obi", e, f},
1134 {"observer", r, x, 0x42, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.observer", e, f},
1135 {"off", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.off", e, f},
1136 {"office", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.office", "ns2.dns.nic.office", "ns3.dns.nic.office", "ns4.dns.nic.office", "ns5.dns.nic.office", "ns6.dns.nic.office"}, n, n, n, "whois.nic.office", e, t},
1137 {"okinawa", r, x, 0xc4, e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Okinawa", "JP-47"}, n, "whois.nic.okinawa", e, t},
1138 {"olayan", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.olayan", "b.nic.olayan", "c.nic.olayan", "d.nic.olayan"}, n, n, n, "whois.nic.olayan", e, t},
1139 {"olayangroup", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.olayangroup", "b.nic.olayangroup", "c.nic.olayangroup", "d.nic.olayangroup"}, n, n, n, "whois.nic.olayangroup", e, t},
1140 {"oldnavy", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.oldnavy", "ns2.dns.nic.oldnavy", "ns3.dns.nic.oldnavy", "ns4.dns.nic.oldnavy", "ns5.dns.nic.oldnavy", "ns6.dns.nic.oldnavy"}, n, n, n, "whois.nic.oldnavy", e, t},
1141 {"ollo", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.ollo", "a2.nic.ollo", "b0.nic.ollo", "c0.nic.ollo"}, n, n, n, "whois.nic.ollo", e, f},
1142 {"olympus", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1143 {"om", r, z[3760:3773], 0xa0, "http://www.registry.om/", w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, "whois.registry.om", e, f},
1144 {"omega", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.omega", e, t},
1145 {"one", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.one", "b.nic.one", "c.nic.one", "d.nic.one"}, n, n, n, "whois.nic.one", e, f},
1146 {"ong", r, x, 0x40, "https://pir.org/products/ngo-ong-domain/", w{"a0.nic.ong", "a2.nic.ong", "b0.nic.ong", "b2.nic.ong", "c0.nic.ong", "d0.nic.ong"}, n, n, n, "whois.publicinterestregistry.net", e, f},
1147 {"onl", r, x, 0x40, "https://nic.onl/", w{"a0.nic.onl", "a2.nic.onl", "b0.nic.onl", "c0.nic.onl"}, n, n, n, "whois.afilias-srs.net", e, t},
1148 {"online", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.online", "b.nic.online", "e.nic.online", "f.nic.online"}, n, n, n, "whois.nic.online", e, t},
1149 {"onyourside", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.onyourside", e, f},
1150 {"ooo", r, x, 0x40, e, w{"a.nic.ooo", "b.nic.ooo", "c.nic.ooo", "d.nic.ooo"}, n, n, n, "whois.nic.ooo", e, t},
1151 {"open", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.open", "ns2.dns.nic.open", "ns3.dns.nic.open", "ns4.dns.nic.open", "ns5.dns.nic.open", "ns6.dns.nic.open"}, n, n, n, "whois.nic.open", e, t},
1152 {"oracle", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.oracle", e, f},
1153 {"orange", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.orange", e, t},
1154 {"org", r, z[3773:3779], 0x40, "https://pir.org/products/org-domain/", w{"a0.org.afilias-nst.info", "a2.org.afilias-nst.info", "b0.org.afilias-nst.org", "b2.org.afilias-nst.org", "c0.org.afilias-nst.info", "d0.org.afilias-nst.org"}, n, n, n, "whois.pir.org", e, t},
1155 {"organic", r, x, 0x40, "https://get.organic/", w{"a0.nic.organic", "a2.nic.organic", "b0.nic.organic", "c0.nic.organic"}, n, n, n, "whois.afilias.net", e, t},
1156 {"orientexpress", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
1157 {"origin", r, x, 0, e, n, n, n, n, "whois.afilias-srs.net", e, t},
1158 {"origins", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.origins", "a2.nic.origins", "b0.nic.origins", "c0.nic.origins"}, n, n, n, "whois.nic.origins", e, f},
1159 {"osaka", r, x, 0xc4, "https://newgtlds.icann.org/", w{"ns1.dns.nic.osaka", "ns2.dns.nic.osaka", "ns3.dns.nic.osaka", "ns4.dns.nic.osaka", "ns5.dns.nic.osaka", "ns6.dns.nic.osaka"}, n, w{"Osaka", "JP-27"}, n, "whois.nic.osaka", e, t},
1160 {"otsuka", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.otsuka", e, t},
1161 {"ott", r, x, 0x48, "https://newgtlds.icann.org/", w{"a0.nic.ott", "a2.nic.ott", "b0.nic.ott", "c0.nic.ott"}, n, n, n, "whois.nic.ott", e, f},
1162 {"overheidnl", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1163 {"ovh", r, x, 0x40, e, w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois-ovh.nic.fr", e, t},
1164 {"pa", r, z[3779:3790], 0xa0, "http://www.nic.pa/", w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, "http://www.nic.pa/", f},
1165 {"page", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1166 {"pamperedchef", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1167 {"panasonic", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
1168 {"panerai", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.panerai", e, f},
1169 {"paris", r, x, 0xc4, e, w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr", "h.ext.nic.fr"}, n, w{"Paris", "FR-J"}, n, "whois-paris.nic.fr", e, t},
1170 {"pars", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.ns.nic.pars", "b.ns.nic.pars", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.pars", e, f},
1171 {"partners", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.partners", e, t},
1172 {"parts", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.parts", e, t},
1173 {"party", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.party", "ns2.dns.nic.party", "ns3.dns.nic.party", "ns4.dns.nic.party", "ns5.dns.nic.party", "ns6.dns.nic.party"}, n, n, n, "whois.nic.party", e, t},
1174 {"passagens", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.passagens", "ns2.dns.nic.passagens", "ns3.dns.nic.passagens", "ns4.dns.nic.passagens", "ns5.dns.nic.passagens", "ns6.dns.nic.passagens"}, n, n, n, "whois.nic.passagens", e, t},
1175 {"patagonia", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1176 {"patch", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1177 {"pay", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.pay", "dns2.nic.pay", "dns3.nic.pay", "dns4.nic.pay", "dnsa.nic.pay", "dnsb.nic.pay", "dnsc.nic.pay", "dnsd.nic.pay"}, n, n, n, "whois.nic.pay", e, t},
1178 {"payu", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1179 {"pccw", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.pccw", "a2.nic.pccw", "b0.nic.pccw", "c0.nic.pccw"}, n, n, n, "whois.nic.pccw", e, t},
1180 {"pe", r, z[3790:3799], 0xa0, "https://punto.pe/", w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, "kero.yachay.pe", e, t},
1181 {"persiangulf", r, x, 0xc0, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1182 {"pet", r, x, 0x40, "https://get.pet/", w{"a0.nic.pet", "a2.nic.pet", "b0.nic.pet", "c0.nic.pet"}, n, n, n, "whois.afilias.net", e, t},
1183 {"pets", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1184 {"pf", r, z[3799:3804], 0xa0, e, w{"ns1.mana.pf", "ns2.mana.pf"}, n, n, n, "whois.registry.pf", e, f},
1185 {"pfizer", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.pfizer", "ns2.dns.nic.pfizer", "ns3.dns.nic.pfizer", "ns4.dns.nic.pfizer", "ns5.dns.nic.pfizer", "ns6.dns.nic.pfizer"}, n, n, n, "whois.nic.pfizer", e, t},
1186 {"pg", r, z[3804:3810], 0xa0, e, w{"munnari.oz.au", "ns.uu.net", "ns1.tiare.net.pg", "ns1.unitech.ac.pg", "ns2.tiare.net.pg"}, n, n, n, e, e, f},
1187 {"ph", r, z[3810:3819], 0xa0, e, w{"1.ns.ph", "ns2.cuhk.edu.hk", "ns4.apnic.net", "ph.communitydns.net"}, w{"45.79.222.138"}, n, n, e, "http://www.dot.ph/whois", f},
1188 {"pharmacy", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.pharmacy", "dns2.nic.pharmacy", "dns3.nic.pharmacy", "dns4.nic.pharmacy", "dnsa.nic.pharmacy", "dnsb.nic.pharmacy", "dnsc.nic.pharmacy", "dnsd.nic.pharmacy"}, n, n, n, "whois.nic.pharmacy", e, t},
1189 {"phd", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1190 {"philips", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.philips", "b.nic.philips", "c.nic.philips", "d.nic.philips"}, n, n, n, "whois.nic.philips", e, f},
1191 {"phone", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.phone", "a2.nic.phone", "b0.nic.phone", "c0.nic.phone"}, n, n, n, "whois.nic.phone", e, f},
1192 {"photo", r, x, 0x40, "https://nic.photo/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
1193 {"photography", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.photography", e, t},
1194 {"photos", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.photos", e, t},
1195 {"physio", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.physio", "b.nic.physio", "c.nic.physio", "d.nic.physio"}, n, n, n, "whois.nic.physio", e, f},
1196 {"piaget", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.piaget", e, f},
1197 {"pics", r, x, 0x40, "https://nic.pics/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
1198 {"pictet", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
1199 {"pictures", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.pictures", e, t},
1200 {"pid", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.pid", "b.nic.pid", "c.nic.pid", "d.nic.pid"}, n, n, n, "whois.nic.pid", e, t},
1201 {"pin", r, x, 0x48, "https://newgtlds.icann.org/", w{"dns1.nic.pin", "dns2.nic.pin", "dns3.nic.pin", "dns4.nic.pin", "dnsa.nic.pin", "dnsb.nic.pin", "dnsc.nic.pin", "dnsd.nic.pin"}, n, n, n, "whois.nic.pin", e, t},
1202 {"ping", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.ping", "ns2.dns.nic.ping", "ns3.dns.nic.ping", "ns4.dns.nic.ping", "ns5.dns.nic.ping", "ns6.dns.nic.ping"}, n, n, n, "whois.nic.ping", e, f},
1203 {"pink", r, x, 0x40, "https://get.pink/", w{"a0.nic.pink", "a2.nic.pink", "b0.nic.pink", "b2.nic.pink", "c0.nic.pink"}, n, n, n, "whois.afilias.net", e, t},
1204 {"pioneer", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
1205 {"piperlime", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1206 {"pitney", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1207 {"pizza", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.pizza", e, t},
1208 {"pk", r, z[3819:3834], 0xa0, e, w{"root-c1.pknic.pk", "root-c2.pknic.pk", "root-e.pknic.pk", "root-s.pknic.pk"}, n, n, n, e, "http://www.pknic.net.pk/", f},
1209 {"pl", r, z[3834:4002], 0xa0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, "whois.dns.pl", e, t},
1210 {"place", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.place", e, t},
1211 {"play", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1212 {"playstation", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.playstation", e, t},
1213 {"plumbing", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.plumbing", e, t},
1214 {"plus", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.plus", e, t},
1215 {"pm", r, x, 0xa0, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.pm", e, t},
1216 {"pn", r, z[4002:4021], 0xa0, "https://www.nic.pn/", w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "fork.sth.dnsnode.net", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, "http://www.pitcairn.pn/PnRegistry/", f},
1217 {"pnc", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.pnc", "a2.nic.pnc", "b0.nic.pnc", "c0.nic.pnc"}, n, n, n, "whois.nic.pnc", e, f},
1218 {"pohl", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.pohl", "b.nic.pohl", "c.nic.pohl", "d.nic.pohl"}, n, n, n, "whois.nic.pohl", e, f},
1219 {"poker", r, x, 0x40, "https://get.poker/", w{"a0.nic.poker", "a2.nic.poker", "b0.nic.poker", "c0.nic.poker"}, n, n, n, "whois.afilias.net", e, t},
1220 {"politie", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.nic.politie", "ns2.nic.politie", "ns3.nic.politie"}, n, n, n, "whois.nic.politie", e, f},
1221 {"polo", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1222 {"porn", r, x, 0x41, "https://nic.porn/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, n, "whois.registrar.adult", e, t},
1223 {"post", r, x, 0x1040, "https://en.wikipedia.org/wiki/.post", w{"a0.post.afilias-nst.info", "a2.post.afilias-nst.info", "b0.post.afilias-nst.org", "b2.post.afilias-nst.org", "c0.post.afilias-nst.info", "d0.post.afilias-nst.org"}, n, n, n, "whois.dotpostregistry.net", e, f},
1224 {"pr", r, z[4021:4073], 0xa0, "https://domains.pr/", w{"a.lactld.org", "a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org", "pr-dns.denic.de"}, n, n, n, "whois.afilias-srs.net", e, t},
1225 {"pramerica", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.pramerica", "ns2.dns.nic.pramerica", "ns3.dns.nic.pramerica", "ns4.dns.nic.pramerica", "ns5.dns.nic.pramerica", "ns6.dns.nic.pramerica"}, n, n, n, "whois.nic.pramerica", e, t},
1226 {"praxi", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.praxi", "ns2.dns.nic.praxi", "ns3.dns.nic.praxi", "ns4.dns.nic.praxi", "ns5.dns.nic.praxi", "ns6.dns.nic.praxi"}, n, n, n, "whois.nic.praxi", e, f},
1227 {"press", r, x, 0x40, e, w{"a.nic.press", "b.nic.press", "e.nic.press", "f.nic.press"}, n, n, n, "whois.nic.press", e, t},
1228 {"prime", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.prime", "dns2.nic.prime", "dns3.nic.prime", "dns4.nic.prime", "dnsa.nic.prime", "dnsb.nic.prime", "dnsc.nic.prime", "dnsd.nic.prime"}, n, n, n, "whois.nic.prime", e, t},
1229 {"pro", r, z[4073:4109], 0x40, "https://registry.pro/", w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, "whois.afilias.net", e, t},
1230 {"prod", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1231 {"productions", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.productions", e, t},
1232 {"prof", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1233 {"progressive", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.progressive", "a2.nic.progressive", "b0.nic.progressive", "c0.nic.progressive"}, n, n, n, "whois.afilias-srs.net", e, f},
1234 {"promo", r, x, 0x40, "https://get.promo/", w{"a0.nic.promo", "a2.nic.promo", "b0.nic.promo", "c0.nic.promo"}, n, n, n, "whois.afilias.net", e, t},
1235 {"properties", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.properties", e, t},
1236 {"property", r, x, 0x40, "https://nic.property/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
1237 {"protection", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.protection", "b.nic.protection", "e.nic.protection", "f.nic.protection"}, n, n, n, "whois.nic.protection", e, t},
1238 {"pru", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.pru", "ns2.dns.nic.pru", "ns3.dns.nic.pru", "ns4.dns.nic.pru", "ns5.dns.nic.pru", "ns6.dns.nic.pru"}, n, n, n, "whois.nic.pru", e, t},
1239 {"prudential", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.prudential", "ns2.dns.nic.prudential", "ns3.dns.nic.prudential", "ns4.dns.nic.prudential", "ns5.dns.nic.prudential", "ns6.dns.nic.prudential"}, n, n, n, "whois.nic.prudential", e, t},
1240 {"ps", r, z[4109:4118], 0xa0, e, w{"dns1.gov.ps", "fork.sth.dnsnode.net", "ns1.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, n, "whois.pnina.ps", e, f},
1241 {"pt", r, z[4118:4127], 0xa0, e, w{"a.dns.pt", "b.dns.pt", "c.dns.pt", "d.dns.pt", "e.dns.pt", "g.dns.pt", "h.dns.pt", "ns.dns.br", "ns2.nic.fr"}, n, n, n, "whois.dns.pt", e, t},
1242 {"pub", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.pub", e, t},
1243 {"pw", r, z[4127:4138], 0xa0, e, w{"ns1.nic.pw", "ns2.nic.pw", "ns5.nic.pw", "ns6.nic.pw"}, n, n, n, "whois.nic.pw", e, t},
1244 {"pwc", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.pwc", "a2.nic.pwc", "b0.nic.pwc", "c0.nic.pwc"}, n, n, n, "whois.afilias-srs.net", e, f},
1245 {"py", r, z[4138:4146], 0xa8, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "m.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, "http://www.nic.py/consulta-datos.php", f},
1246 {"qa", r, z[4146:4154], 0xa0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, "whois.registry.qa", e, f},
1247 {"qpon", r, x, 0x40, e, w{"a.nic.qpon", "b.nic.qpon", "c.nic.qpon", "d.nic.qpon"}, n, n, n, "whois.nic.qpon", e, t},
1248 {"qtel", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1249 {"quebec", r, x, 0xc4, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"Quebec", "CA-QC"}, n, "whois.nic.quebec", e, t},
1250 {"quest", r, x, 0x42, "https://newgtlds.icann.org/", w{"a-cnic.nic.quest", "b-cnic.nic.quest", "c-cnic.nic.quest", "d-cnic.nic.quest"}, n, n, n, "whois.nic.quest", e, f},
1251 {"qvc", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.qvc", "ns2.dns.nic.qvc", "ns3.dns.nic.qvc", "ns4.dns.nic.qvc", "ns5.dns.nic.qvc", "ns6.dns.nic.qvc"}, n, n, n, "whois.nic.qvc", e, f},
1252 {"racing", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.racing", "ns2.dns.nic.racing", "ns3.dns.nic.racing", "ns4.dns.nic.racing", "ns5.dns.nic.racing", "ns6.dns.nic.racing"}, n, n, n, "whois.nic.racing", e, t},
1253 {"radio", r, x, 0x40, "https://www.nic.radio/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.radio", e, f},
1254 {"raid", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.raid", e, f},
1255 {"ram", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1256 {"re", r, z[4154:4157], 0xa0, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.re", e, t},
1257 {"read", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.read", "dns2.nic.read", "dns3.nic.read", "dns4.nic.read", "dnsa.nic.read", "dnsb.nic.read", "dnsc.nic.read", "dnsd.nic.read"}, n, n, n, "whois.nic.read", e, t},
1258 {"realestate", r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.realestate", e, t},
1259 {"realtor", r, x, 0x40, "https://www.claim.realtor/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
1260 {"realty", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.realty", e, t},
1261 {"recipes", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.recipes", e, t},
1262 {"red", r, x, 0x40, "https://get.red/", w{"a0.nic.red", "a2.nic.red", "b0.nic.red", "c0.nic.red"}, n, n, n, "whois.afilias.net", e, t},
1263 {"redken", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1264 {"redstone", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.redstone", "a2.nic.redstone", "b0.nic.redstone", "c0.nic.redstone"}, n, n, n, "whois.nic.redstone", e, f},
1265 {"redumbrella", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.redumbrella", "a2.nic.redumbrella", "b0.nic.redumbrella", "c0.nic.redumbrella"}, n, n, n, "whois.afilias-srs.net", e, f},
1266 {"rehab", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.rehab", e, t},
1267 {"reise", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.reise", e, t},
1268 {"reisen", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.reisen", e, t},
1269 {"reit", r, x, 0x50, "https://newgtlds.icann.org/", w{"a.nic.reit", "b.nic.reit", "c.nic.reit", "d.nic.reit"}, n, n, n, "whois.nic.reit", e, f},
1270 {"reliance", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.reliance", "a2.nic.reliance", "b0.nic.reliance", "c0.nic.reliance"}, n, n, n, "whois.nic.reliance", e, f},
1271 {"ren", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.ren", e, f},
1272 {"rent", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.rent", "b.nic.rent", "c.nic.rent", "d.nic.rent"}, n, n, n, "whois.nic.rent", e, t},
1273 {"rentals", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.rentals", e, t},
1274 {"repair", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.repair", e, t},
1275 {"report", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.report", e, t},
1276 {"republican", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.republican", e, t},
1277 {"rest", r, x, 0x40, e, w{"a.nic.rest", "b.nic.rest", "c.nic.rest", "d.nic.rest"}, n, n, n, "whois.nic.rest", e, t},
1278 {"restaurant", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.restaurant", e, t},
1279 {"retirement", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1280 {"review", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.review", "ns2.dns.nic.review", "ns3.dns.nic.review", "ns4.dns.nic.review", "ns5.dns.nic.review", "ns6.dns.nic.review"}, n, n, n, "whois.nic.review", e, t},
1281 {"reviews", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.reviews", e, t},
1282 {"rexroth", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.rexroth", e, f},
1283 {"rich", r, x, 0x40, "https://nic.rich/", w{"a0.nic.rich", "a2.nic.rich", "b0.nic.rich", "c0.nic.rich"}, n, n, n, "whois.afilias-srs.net", e, t},
1284 {"richardli", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.richardli", "a2.nic.richardli", "b0.nic.richardli", "c0.nic.richardli"}, n, n, n, "whois.nic.richardli", e, t},
1285 {"ricoh", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.ricoh", e, t},
1286 {"rightathome", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.rightathome", e, f},
1287 {"ril", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.ril", "a2.nic.ril", "b0.nic.ril", "c0.nic.ril"}, n, n, n, "whois.nic.ril", e, f},
1288 {"rio", r, x, 0xc4, "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, w{"Rio de Janeiro", "BR-RJ"}, n, "whois.gtlds.nic.br", e, t},
1289 {"rip", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.rip", e, t},
1290 {"rmit", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.rmit", "b.nic.rmit", "c.nic.rmit", "d.nic.rmit"}, n, n, n, "whois.nic.rmit", e, f},
1291 {"ro", r, z[4157:4174], 0xa0, e, w{"dns-at.rotld.ro", "dns-c.rotld.ro", "dns-ro.denic.de", "primary.rotld.ro", "sec-dns-a.rotld.ro", "sec-dns-b.rotld.ro"}, n, n, n, "whois.rotld.ro", e, f},
1292 {"rocher", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.rocher", "ns2.dns.nic.rocher", "ns3.dns.nic.rocher", "ns4.dns.nic.rocher", "ns5.dns.nic.rocher", "ns6.dns.nic.rocher"}, n, n, n, "whois.nic.rocher", e, t},
1293 {"rocks", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.rocks", e, t},
1294 {"rockwool", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1295 {"rodeo", r, x, 0x40, "http://nic.rodeo/", w{"dns1.nic.rodeo", "dns2.nic.rodeo", "dns3.nic.rodeo", "dns4.nic.rodeo", "dnsa.nic.rodeo", "dnsb.nic.rodeo", "dnsc.nic.rodeo", "dnsd.nic.rodeo"}, n, n, n, "whois.nic.rodeo", e, t},
1296 {"rogers", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.rogers", "a2.nic.rogers", "b0.nic.rogers", "c0.nic.rogers"}, n, n, n, "whois.afilias-srs.net", e, f},
1297 {"roma", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1298 {"room", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.room", "dns2.nic.room", "dns3.nic.room", "dns4.nic.room", "dnsa.nic.room", "dnsb.nic.room", "dnsc.nic.room", "dnsd.nic.room"}, n, n, n, "whois.nic.room", e, t},
1299 {"root", r, x, 0x40, e, n, n, n, n, e, e, f},
1300 {"rs", r, z[4174:4180], 0xa0, e, w{"a.nic.rs", "b.nic.rs", "f.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, "whois.rnids.rs", e, t},
1301 {"rsvp", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1302 {"ru", r, z[4180:4208], 0xa0, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, n, "whois.tcinet.ru", e, t},
1303 {"rugby", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.rugby", "b.nic.rugby", "c.nic.rugby", "d.nic.rugby"}, n, n, n, "whois.nic.rugby", e, f},
1304 {"ruhr", r, x, 0x440, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"DE-NW"}, n, "whois.nic.ruhr", e, t},
1305 {"run", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.run", e, t},
1306 {"rw", r, z[4208:4218], 0xa0, "https://ricta.org.rw/", w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, "whois.ricta.org.rw", e, f},
1307 {"rwe", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.rwe", e, t},
1308 {"ryukyu", r, x, 0x440, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"JP-46", "JP-47"}, n, "whois.nic.ryukyu", e, t},
1309 {"sa", r, z[4218:4226], 0xa0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, "whois.nic.net.sa", e, f},
1310 {"saarland", r, x, 0x4c0, e, w{"a.nic.saarland", "b.nic.saarland", "c.nic.saarland", "d.nic.saarland"}, n, w{"DE-SL"}, n, "whois.nic.saarland", e, t},
1311 {"safe", r, x, 0x48, "https://newgtlds.icann.org/", w{"dns1.nic.safe", "dns2.nic.safe", "dns3.nic.safe", "dns4.nic.safe", "dnsa.nic.safe", "dnsb.nic.safe", "dnsc.nic.safe", "dnsd.nic.safe"}, n, n, n, "whois.nic.safe", e, t},
1312 {"safety", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.safety", "ns2.dns.nic.safety", "ns3.dns.nic.safety", "ns4.dns.nic.safety", "ns5.dns.nic.safety", "ns6.dns.nic.safety"}, n, n, n, "whois.nic.safety", e, t},
1313 {"safeway", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1314 {"sakura", r, x, 0x42, "https://newgtlds.icann.org/", w{"tld1.nic.sakura", "tld2.nic.sakura", "tld3.nic.sakura", "tld5.nic.sakura"}, n, n, n, e, e, t},
1315 {"sale", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.sale", e, t},
1316 {"salon", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.salon", e, t},
1317 {"samsclub", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.samsclub", e, f},
1318 {"samsung", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.samsung.centralnic-dns.com", "ns2.samsung.centralnic-dns.com", "ns3.samsung.centralnic-dns.com", "ns4.samsung.centralnic-dns.com"}, n, n, n, "whois.nic.samsung", e, t},
1319 {"sandvik", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.sandvik", "b.nic.sandvik", "c.nic.sandvik", "d.nic.sandvik"}, n, n, n, "whois.nic.sandvik", e, t},
1320 {"sandvikcoromant", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.sandvikcoromant", "b.nic.sandvikcoromant", "c.nic.sandvikcoromant", "d.nic.sandvikcoromant"}, n, n, n, "whois.nic.sandvikcoromant", e, t},
1321 {"sanofi", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.sanofi", e, f},
1322 {"sap", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.sap", e, t},
1323 {"sapo", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1324 {"sapphire", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1325 {"sarl", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.sarl", e, t},
1326 {"sas", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.sas", "ns2.dns.nic.sas", "ns3.dns.nic.sas", "ns4.dns.nic.sas", "ns5.dns.nic.sas", "ns6.dns.nic.sas"}, n, n, n, "whois.nic.sas", e, t},
1327 {"save", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.save", "dns2.nic.save", "dns3.nic.save", "dns4.nic.save", "dnsa.nic.save", "dnsb.nic.save", "dnsc.nic.save", "dnsd.nic.save"}, n, n, n, "whois.nic.save", e, t},
1328 {"saxo", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.saxo", "b.nic.saxo", "c.nic.saxo", "d.nic.saxo"}, n, n, n, "whois.nic.saxo", e, f},
1329 {"sb", r, z[4226:4231], 0xa0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, "whois.nic.net.sb", e, f},
1330 {"sbi", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.sbi", "a2.nic.sbi", "b0.nic.sbi", "c0.nic.sbi"}, n, n, n, "whois.nic.sbi", e, f},
1331 {"sbs", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.sbs", "b.nic.sbs", "c.nic.sbs", "d.nic.sbs"}, n, n, n, "whois.nic.sbs", e, t},
1332 {"sc", r, z[4231:4236], 0xe0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "ns1.nic.sc"}, n, n, n, "whois2.afilias-grs.net", e, t},
1333 {"sca", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.sca", e, t},
1334 {"scb", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.scb", "b.nic.scb", "c.nic.scb", "d.nic.scb"}, n, n, n, "whois.nic.scb", e, t},
1335 {"schaeffler", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.nic.schaeffler", "m.dns.nic.schaeffler", "n.dns.nic.schaeffler"}, n, n, n, "whois.afilias-srs.net", e, t},
1336 {"schmidt", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.schmidt", "b.nic.schmidt", "c.nic.schmidt", "d.nic.schmidt"}, n, n, n, "whois.nic.schmidt", e, f},
1337 {"scholarships", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.scholarships", "a2.nic.scholarships", "b0.nic.scholarships", "c0.nic.scholarships"}, n, n, n, "whois.nic.scholarships", e, f},
1338 {"school", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.school", e, t},
1339 {"schule", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.schule", e, t},
1340 {"schwarz", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.schwarz", "b.nic.schwarz", "c.nic.schwarz", "d.nic.schwarz"}, n, n, n, "whois.nic.schwarz", e, t},
1341 {"schwarzgroup", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1342 {"science", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.science", "ns2.dns.nic.science", "ns3.dns.nic.science", "ns4.dns.nic.science", "ns5.dns.nic.science", "ns6.dns.nic.science"}, n, n, n, "whois.nic.science", e, t},
1343 {"scjohnson", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.scjohnson", e, f},
1344 {"scor", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.scor", e, f},
1345 {"scot", r, x, 0x440, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, w{"GB-SCT"}, n, "whois.nic.scot", e, t},
1346 {"sd", r, z[4236:4244], 0xa0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
1347 {"se", r, z[4244:4276], 0xa0, e, w{"a.ns.se", "b.ns.se", "c.ns.se", "f.ns.se", "g.ns.se", "i.ns.se", "m.ns.se", "x.ns.se", "y.ns.se", "z.ns.se"}, n, n, n, "whois.iis.se", e, t},
1348 {"search", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1349 {"seat", r, x, 0x42, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.seat", e, f},
1350 {"secure", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.secure", "dns2.nic.secure", "dns3.nic.secure", "dns4.nic.secure", "dnsa.nic.secure", "dnsb.nic.secure", "dnsc.nic.secure", "dnsd.nic.secure"}, n, n, n, "whois.nic.secure", e, t},
1351 {"security", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.security", "b.nic.security", "e.nic.security", "f.nic.security"}, n, n, n, "whois.nic.security", e, t},
1352 {"seek", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.seek", "b.nic.seek", "c.nic.seek", "d.nic.seek"}, n, n, n, "whois.nic.seek", e, f},
1353 {"select", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.select", "b.nic.select", "c.nic.select", "d.nic.select"}, n, n, n, "whois.nic.select", e, f},
1354 {"sener", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
1355 {"services", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.services", e, t},
1356 {"ses", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ses", e, f},
1357 {"seven", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.seven", "b.nic.seven", "c.nic.seven", "d.nic.seven"}, n, n, n, "whois.nic.seven", e, f},
1358 {"sew", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.sew", "a2.nic.sew", "b0.nic.sew", "c0.nic.sew"}, n, n, n, "whois.afilias-srs.net", e, f},
1359 {"sex", r, x, 0x41, "https://nic.sex/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, n, "whois.registrar.adult", e, t},
1360 {"sexy", r, x, 0x41, "https://nic.sexy/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
1361 {"sfr", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.sfr", "b.nic.sfr", "c.nic.sfr", "d.nic.sfr"}, n, n, n, "whois.nic.sfr", e, t},
1362 {"sg", r, z[4276:4282], 0xa0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, n, "whois.sgnic.sg", e, t},
1363 {"sh", r, z[4282:4289], 0xa0, "https://www.nic.sh/", w{"a0.nic.sh", "a2.nic.sh", "b0.nic.sh", "c0.nic.sh"}, n, n, n, "whois.nic.sh", e, t},
1364 {"shangrila", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.shangrila", e, f},
1365 {"sharp", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
1366 {"shaw", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.shaw", "a2.nic.shaw", "b0.nic.shaw", "c0.nic.shaw"}, n, n, n, "whois.afilias-srs.net", e, f},
1367 {"shell", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.shell", e, t},
1368 {"shia", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.ns.nic.shia", "b.ns.nic.shia", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.shia", e, f},
1369 {"shiksha", r, x, 0x40, "https://get.shiksha/", w{"a0.nic.shiksha", "a2.nic.shiksha", "b0.nic.shiksha", "c0.nic.shiksha"}, n, n, n, "whois.afilias.net", e, f},
1370 {"shoes", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.shoes", e, t},
1371 {"shop", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.shop", e, t},
1372 {"shopping", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.shopping", e, t},
1373 {"shopyourway", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1374 {"shouji", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, f},
1375 {"show", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.show", e, t},
1376 {"showtime", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.showtime", "a2.nic.showtime", "b0.nic.showtime", "c0.nic.showtime"}, n, n, n, "whois.afilias-srs.net", e, f},
1377 {"shriram", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
1378 {"si", r, z[4289:4296], 0xa0, e, w{"b.dns.si", "f.dns.si", "g.dns.si", "h.dns.si", "i.dns.si", "k.dns.si", "l.dns.si"}, n, n, n, "whois.register.si", e, t},
1379 {"silk", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.silk", "dns2.nic.silk", "dns3.nic.silk", "dns4.nic.silk", "dnsa.nic.silk", "dnsb.nic.silk", "dnsc.nic.silk", "dnsd.nic.silk"}, n, n, n, "whois.nic.silk", e, t},
1380 {"sina", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.sina", "a2.nic.sina", "b0.nic.sina", "c0.nic.sina"}, n, n, n, "whois.nic.sina", e, t},
1381 {"singles", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.singles", e, t},
1382 {"site", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.site", "b.nic.site", "e.nic.site", "f.nic.site"}, n, n, n, "whois.nic.site", e, t},
1383 {"sj", r, x, 0xa8, e, w{"nac.no", "nn.uninett.no", "server.nordu.net"}, n, n, n, e, e, f},
1384 {"sk", r, x, 0xa0, e, w{"a.tld.sk", "b.tld.sk", "c.tld.sk", "e.tld.sk", "f.tld.sk", "g.tld.sk", "h.tld.sk"}, n, n, n, "whois.sk-nic.sk", e, f},
1385 {"ski", r, x, 0x40, "https://domains.ski/", w{"a0.nic.ski", "a2.nic.ski", "b0.nic.ski", "c0.nic.ski"}, n, n, n, "whois.afilias.net", e, t},
1386 {"skin", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.skin", "b.nic.skin", "c.nic.skin", "d.nic.skin"}, n, n, n, "whois.nic.skin", e, f},
1387 {"skolkovo", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1388 {"sky", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.sky", e, t},
1389 {"skydrive", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1390 {"skype", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.skype", "ns2.dns.nic.skype", "ns3.dns.nic.skype", "ns4.dns.nic.skype", "ns5.dns.nic.skype", "ns6.dns.nic.skype"}, n, n, n, "whois.nic.skype", e, t},
1391 {"sl", r, z[4296:4301], 0xa0, "https://www.nic.sl/", w{"ns1.neoip.com", "ns2.neoip.com"}, n, n, n, "whois.nic.sl", e, f},
1392 {"sling", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.sling", "a2.nic.sling", "b0.nic.sling", "c0.nic.sling"}, n, n, n, "whois.nic.sling", e, f},
1393 {"sm", r, x, 0xa0, e, w{"dns.intelcom.sm", "dns.omniway.sm", "ns3.telecomitalia.sm", "sm.cctld.authdns.ripe.net"}, n, n, n, "whois.nic.sm", e, f},
1394 {"smart", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.smart", "b.nic.smart", "c.nic.smart", "d.nic.smart"}, n, n, n, "whois.nic.smart", e, f},
1395 {"smile", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.smile", "dns2.nic.smile", "dns3.nic.smile", "dns4.nic.smile", "dnsa.nic.smile", "dnsb.nic.smile", "dnsc.nic.smile", "dnsd.nic.smile"}, n, n, n, "whois.nic.smile", e, t},
1396 {"sn", r, z[4301:4308], 0xa8, e, w{"censvrns0001.ird.fr", "ns-sn.nic.fr", "ns.ucad.sn", "ns1.sonatel.sn", "sn.cctld.authdns.ripe.net"}, n, n, n, "whois.nic.sn", e, f},
1397 {"sncf", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.sncf", e, t},
1398 {"so", r, z[4308:4312], 0xa0, e, w{"d.nic.so", "e.nic.so"}, n, n, n, "whois.nic.so", e, f},
1399 {"soccer", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.soccer", e, t},
1400 {"social", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.social", e, t},
1401 {"softbank", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.softbank", e, t},
1402 {"software", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.software", e, t},
1403 {"sohu", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.sohu", e, t},
1404 {"solar", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.solar", e, t},
1405 {"solutions", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.solutions", e, t},
1406 {"song", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.song", "ns2.dns.nic.song", "ns3.dns.nic.song", "ns4.dns.nic.song", "ns5.dns.nic.song", "ns6.dns.nic.song"}, n, n, n, "whois.nic.song", e, t},
1407 {"sony", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.sony", e, t},
1408 {"soy", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1409 {"spa", r, x, 0x50, "http://www.nic.spa/", w{"a0.nic.spa", "a2.nic.spa", "b0.nic.spa", "c0.nic.spa"}, n, n, n, "whois.afilias-srs.net", e, t},
1410 {"space", r, z[4312:4313], 0x40, "https://newgtlds.icann.org/", w{"a.nic.space", "b.nic.space", "e.nic.space", "f.nic.space"}, n, n, n, "whois.nic.space", e, t},
1411 {"spiegel", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.ksregistry.net", e, f},
1412 {"sport", r, x, 0x40, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.sport", e, f},
1413 {"sports", r, x, 0x2040, "https://gtldresult.icann.org/applicationstatus/applicationdetails/604", n, n, n, n, e, e, t},
1414 {"spot", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.spot", "dns2.nic.spot", "dns3.nic.spot", "dns4.nic.spot", "dnsa.nic.spot", "dnsb.nic.spot", "dnsc.nic.spot", "dnsd.nic.spot"}, n, n, n, "whois.nic.spot", e, t},
1415 {"spreadbetting", r, x, 0x40, "https://bostonivy.co/", w{"a.nic.spreadbetting", "b.nic.spreadbetting", "c.nic.spreadbetting", "d.nic.spreadbetting"}, n, n, n, "whois.nic.spreadbetting", e, f},
1416 {"sr", r, x, 0xe0, e, w{"ns1.sr.net", "ns2.sr.net"}, n, n, n, e, "http://www.register.sr/", f},
1417 {"srl", r, x, 0x40, "https://www.internetx.info/en/", w{"a0.nic.srl", "a2.nic.srl", "b0.nic.srl", "c0.nic.srl"}, n, n, n, "whois.afilias-srs.net", e, f},
1418 {"srt", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
1419 {"ss", r, z[4313:4320], 0, e, w{"b.ns.tznic.or.tz", "ns-ss.afrinic.net", "pch.nic.ss", "root.nic.ss", "ssnic.anycastdns.cz"}, n, n, n, "whois.nic.ss", e, t},
1420 {"st", r, z[4320:4333], 0xa0, e, w{"dns-au.st", "dns-st.bahnhof.net", "dns-us.st", "ns1.bahnhof.net"}, n, n, n, "whois.nic.st", e, f},
1421 {"stada", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.stada", "a2.nic.stada", "b0.nic.stada", "c0.nic.stada"}, n, n, n, "whois.afilias-srs.net", e, t},
1422 {"staples", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.staples", "ns2.dns.nic.staples", "ns3.dns.nic.staples", "ns4.dns.nic.staples", "ns5.dns.nic.staples", "ns6.dns.nic.staples"}, n, n, n, "whois.nic.staples", e, t},
1423 {"star", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.star", "a2.nic.star", "b0.nic.star", "c0.nic.star"}, n, n, n, "whois.nic.star", e, t},
1424 {"starhub", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.starhub", e, f},
1425 {"statebank", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.statebank", "a2.nic.statebank", "b0.nic.statebank", "c0.nic.statebank"}, n, n, n, "whois.nic.statebank", e, f},
1426 {"statefarm", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.statefarm", "ns2.dns.nic.statefarm", "ns3.dns.nic.statefarm", "ns4.dns.nic.statefarm", "ns5.dns.nic.statefarm", "ns6.dns.nic.statefarm"}, n, n, n, "whois.nic.statefarm", e, t},
1427 {"statoil", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.statoil", e, f},
1428 {"stc", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.stc", "b.nic.stc", "c.nic.stc", "d.nic.stc"}, n, n, n, "whois.nic.stc", e, f},
1429 {"stcgroup", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.stcgroup", "b.nic.stcgroup", "c.nic.stcgroup", "d.nic.stcgroup"}, n, n, n, "whois.nic.stcgroup", e, f},
1430 {"stockholm", r, x, 0xc4, "https://newgtlds.icann.org/", w{"a0.nic.stockholm", "a2.nic.stockholm", "b0.nic.stockholm", "c0.nic.stockholm"}, n, w{"Stockholm", "SE-AB"}, n, "whois.afilias-srs.net", e, t},
1431 {"storage", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.storage", "b.nic.storage", "c.nic.storage", "d.nic.storage"}, n, n, n, "whois.nic.storage", e, t},
1432 {"store", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.store", "b.nic.store", "e.nic.store", "f.nic.store"}, n, n, n, "whois.nic.store", e, t},
1433 {"stream", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.stream", "ns2.dns.nic.stream", "ns3.dns.nic.stream", "ns4.dns.nic.stream", "ns5.dns.nic.stream", "ns6.dns.nic.stream"}, n, n, n, "whois.nic.stream", e, t},
1434 {"stroke", r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1435 {"studio", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.studio", e, t},
1436 {"study", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.study", "b.nic.study", "c.nic.study", "d.nic.study"}, n, n, n, "whois.nic.study", e, f},
1437 {"style", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.style", e, t},
1438 {"su", r, z[4333:4385], 0xe0, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, n, "whois.tcinet.ru", e, t},
1439 {"sucks", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.sucks", "b.nic.sucks", "c.nic.sucks", "d.nic.sucks"}, n, n, n, "whois.nic.sucks", e, f},
1440 {"supersport", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1441 {"supplies", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.supplies", e, t},
1442 {"supply", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.supply", e, t},
1443 {"support", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.support", e, t},
1444 {"surf", r, x, 0x40, "http://nic.surf/", w{"dns1.nic.surf", "dns2.nic.surf", "dns3.nic.surf", "dns4.nic.surf", "dnsa.nic.surf", "dnsb.nic.surf", "dnsc.nic.surf", "dnsd.nic.surf"}, n, n, n, "whois.nic.surf", e, t},
1445 {"surgery", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.surgery", e, t},
1446 {"suzuki", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.suzuki", e, t},
1447 {"sv", r, z[4385:4390], 0xa0, e, w{"a.lactld.org", "auth02.ns.uu.net", "cir.red.sv", "dns-ext.nic.cr", "ns.dns.br", "ns.uu.net", "sir.red.sv", "sv.cctld.authdns.ripe.net"}, n, n, n, e, "http://www.svnet.org.sv/", f},
1448 {"svr", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1449 {"swatch", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.swatch", e, t},
1450 {"swiftcover", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.swiftcover", "ns2.dns.nic.swiftcover", "ns3.dns.nic.swiftcover", "ns4.dns.nic.swiftcover", "ns5.dns.nic.swiftcover", "ns6.dns.nic.swiftcover"}, n, n, n, "whois.nic.swiftcover", e, t},
1451 {"swiss", r, x, 0x50, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net", "g.nic.swiss", "ns15.rcode0.net", "u.nic.swiss"}, n, n, n, "whois.nic.swiss", e, t},
1452 {"sx", r, x, 0xa0, "https://en.wikipedia.org/wiki/.sx", w{"ns1.ns.sx", "ns2.ns.sx"}, n, n, n, "whois.sx", e, f},
1453 {"sy", r, z[4390:4396], 0xa0, "http://www.ste.gov.sy/", w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, "whois.tld.sy", e, f},
1454 {"sydney", r, x, 0xc4, "https://www.iconic.sydney/", w{"a.nic.sydney", "b.nic.sydney", "c.nic.sydney", "d.nic.sydney"}, n, w{"Sydney"}, n, "whois.nic.sydney", e, f},
1455 {"symantec", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.symantec", e, t},
1456 {"systems", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.systems", e, t},
1457 {"sz", r, z[4396:4399], 0xa0, e, w{"ns1.sispa.org.sz", "rip.psg.com", "sz.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
1458 {"tab", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.tab", "b.nic.tab", "c.nic.tab", "d.nic.tab"}, n, n, n, "whois.nic.tab", e, f},
1459 {"taipei", r, x, 0xc4, "https://newgtlds.icann.org/", w{"ns1.dns.nic.taipei", "ns2.dns.nic.taipei", "ns3.dns.nic.taipei", "ns4.dns.nic.taipei", "ns5.dns.nic.taipei", "ns6.dns.nic.taipei"}, n, w{"Taipei", "TW-TPQ"}, n, "whois.nic.taipei", e, t},
1460 {"talk", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.talk", "dns2.nic.talk", "dns3.nic.talk", "dns4.nic.talk", "dnsa.nic.talk", "dnsb.nic.talk", "dnsc.nic.talk", "dnsd.nic.talk"}, n, n, n, "whois.nic.talk", e, t},
1461 {"taobao", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.taobao", "ns2.dns.nic.taobao", "ns3.dns.nic.taobao", "ns4.dns.nic.taobao", "ns5.dns.nic.taobao", "ns6.dns.nic.taobao"}, n, n, n, "whois.nic.taobao", e, t},
1462 {"target", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.target", "ns2.dns.nic.target", "ns3.dns.nic.target", "ns4.dns.nic.target", "ns5.dns.nic.target", "ns6.dns.nic.target"}, n, n, n, "whois.nic.target", e, t},
1463 {"tata", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1464 {"tatamotors", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tatamotors", e, f},
1465 {"tatar", r, x, 0x440, "https://newgtlds.icann.org/", w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, w{"RU-TA"}, n, "whois.nic.tatar", e, f},
1466 {"tattoo", r, x, 0x40, "https://nic.tattoo/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.uniregistry.net", e, t},
1467 {"tax", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tax", e, t},
1468 {"taxi", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.taxi", e, t},
1469 {"tc", r, z[4399:4432], 0xa0, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, n, "whois.nic.tc", e, f},
1470 {"tci", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.ns.nic.tci", "b.ns.nic.tci", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.tci", e, f},
1471 {"td", r, z[4432:4436], 0xa0, "http://nic.td/", w{"anycastdns1.nic.td", "anycastdns2.nic.td", "ns-td.afrinic.net", "pch.nic.td"}, n, n, n, "whois.nic.td", e, f},
1472 {"tdk", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.tdk", "ns2.dns.nic.tdk", "ns3.dns.nic.tdk", "ns4.dns.nic.tdk", "ns5.dns.nic.tdk", "ns6.dns.nic.tdk"}, n, n, n, "whois.nic.tdk", e, t},
1473 {"team", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.team", e, t},
1474 {"tech", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.tech", "b.nic.tech", "e.nic.tech", "f.nic.tech"}, n, n, n, "whois.nic.tech", e, t},
1475 {"technology", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.technology", e, t},
1476 {"tel", r, x, 0x1040, e, w{"ns1.dns.nic.tel", "ns2.dns.nic.tel", "ns3.dns.nic.tel", "ns4.dns.nic.tel", "ns5.dns.nic.tel", "ns6.dns.nic.tel", "ns7.dns.nic.tel", "ns8.dns.nic.tel"}, n, n, n, "whois.nic.tel", e, t},
1477 {"telecity", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.telecity", e, f},
1478 {"telefonica", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois-fe.telefonica.tango.knipp.de", e, f},
1479 {"temasek", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.temasek", "a2.nic.temasek", "b0.nic.temasek", "c0.nic.temasek"}, n, n, n, "whois.afilias-srs.net", e, t},
1480 {"tennis", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tennis", e, t},
1481 {"terra", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1482 {"teva", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.teva", "ns2.dns.nic.teva", "ns3.dns.nic.teva", "ns4.dns.nic.teva", "ns5.dns.nic.teva", "ns6.dns.nic.teva"}, n, n, n, "whois.nic.teva", e, t},
1483 {"tf", r, z[4436:4450], 0xa0, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.tf", e, t},
1484 {"tg", r, x, 0xa0, "http://www.nic.tg/", w{"ns1.admin.net", "ns1.nic.tg", "ns2.admin.net", "ns2.nic.tg", "ns3.admin.net", "ns4.admin.net", "ns5.admin.net", "tld.cafe.tg"}, n, n, n, "whois.nic.tg", e, f},
1485 {"th", r, z[4450:4457], 0xa8, "https://www.thnic.co.th/", w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, "whois.thnic.co.th", e, t},
1486 {"thai", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1487 {"thd", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.thd", "a2.nic.thd", "b0.nic.thd", "c0.nic.thd"}, n, n, n, "whois.nic.thd", e, f},
1488 {"theater", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.theater", e, t},
1489 {"theatre", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.theatre", "b.nic.theatre", "c.nic.theatre", "d.nic.theatre"}, n, n, n, "whois.nic.theatre", e, t},
1490 {"theguardian", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1491 {"thehartford", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1492 {"tiaa", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tiaa", e, f},
1493 {"tickets", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.tickets", "b.nic.tickets", "c.nic.tickets", "d.nic.tickets"}, n, n, n, "whois.nic.tickets", e, t},
1494 {"tienda", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tienda", e, t},
1495 {"tiffany", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.tiffany", e, t},
1496 {"tiffay", r, x, 0, e, n, n, n, n, "whois.nic.tiffany", e, t},
1497 {"tiia", r, x, 0, e, n, n, n, n, e, e, t},
1498 {"tips", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tips", e, t},
1499 {"tires", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tires", e, t},
1500 {"tirol", r, x, 0x440, "https://newgtlds.icann.org/", w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"AT-7"}, n, "whois.nic.tirol", e, t},
1501 {"tj", r, z[4457:4478], 0xa0, e, w{"ns1.nic.tj", "ns2.tojikiston.com", "phloem.uoregon.edu", "tj.cctld.authdns.ripe.net"}, n, n, n, e, "http://www.nic.tj/whois.html", f},
1502 {"tjmaxx", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.tjmaxx", "ns2.dns.nic.tjmaxx", "ns3.dns.nic.tjmaxx", "ns4.dns.nic.tjmaxx", "ns5.dns.nic.tjmaxx", "ns6.dns.nic.tjmaxx"}, n, n, n, "whois.nic.tjmaxx", e, f},
1503 {"tjx", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.tjx", "ns2.dns.nic.tjx", "ns3.dns.nic.tjx", "ns4.dns.nic.tjx", "ns5.dns.nic.tjx", "ns6.dns.nic.tjx"}, n, n, n, "whois.nic.tjx", e, f},
1504 {"tk", r, x, 0xa0, e, w{"a.ns.tk", "b.ns.tk", "c.ns.tk", "d.ns.tk"}, n, n, n, "whois.dot.tk", e, t},
1505 {"tkmaxx", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.tkmaxx", "ns2.dns.nic.tkmaxx", "ns3.dns.nic.tkmaxx", "ns4.dns.nic.tkmaxx", "ns5.dns.nic.tkmaxx", "ns6.dns.nic.tkmaxx"}, n, n, n, "whois.nic.tkmaxx", e, f},
1506 {"tl", r, z[4478:4485], 0xa0, e, w{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, "whois.nic.tl", e, f},
1507 {"tm", r, z[4485:4493], 0xa0, "http://nic.tm/", w{"ns-a1.tm", "ns-a2.tm", "ns-a3.tm", "ns-a4.tm", "ns-d1.tm", "ns-l1.tm", "ns-y1.tm"}, n, n, n, "whois.nic.tm", e, t},
1508 {"tmall", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.tmall", "ns2.dns.nic.tmall", "ns3.dns.nic.tmall", "ns4.dns.nic.tmall", "ns5.dns.nic.tmall", "ns6.dns.nic.tmall"}, n, n, n, "whois.nic.tmall", e, t},
1509 {"tn", r, z[4493:4512], 0xa0, e, w{"ns-tn.afrinic.net", "ns1.ati.tn", "ns2.ati.tn", "ns2.nic.fr", "pch.ati.tn", "rip.psg.com"}, n, n, n, "whois.ati.tn", e, f},
1510 {"to", r, x, 0xa0, "https://www.tonic.to/", w{"colo.tonic.to", "frankfurt.tonic.to", "helsinki.tonic.to", "newyork.tonic.to", "singapore.tonic.to", "sydney.tonic.to", "tonic.to"}, n, n, n, "whois.tonic.to", e, t},
1511 {"today", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.today", e, t},
1512 {"tokyo", r, x, 0xc4, e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Tokyo", "JP-13"}, n, "whois.nic.tokyo", e, t},
1513 {"tools", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tools", e, t},
1514 {"top", r, x, 0x40, "http://www.nic.top/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.top", e, t},
1515 {"toray", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.toray", e, t},
1516 {"toshiba", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.toshiba", e, t},
1517 {"total", r, x, 0x42, "https://newgtlds.icann.org/", w{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.total", e, t},
1518 {"tour", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1519 {"tours", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.tours", e, t},
1520 {"town", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.town", e, t},
1521 {"toyota", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.toyota", e, t},
1522 {"toys", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.toys", e, t},
1523 {"tp", r, z[4512:4515], 0x8a0, e, n, n, n, n, e, e, f},
1524 {"tr", r, z[4515:4536], 0xa8, "https://www.nic.tr/", w{"ns31.nic.tr", "ns34.nic.tr", "ns35.nic.tr", "ns41.nic.tr", "ns42.nic.tr", "ns61.nic.tr", "ns71.nic.tr"}, n, n, n, "whois.nic.tr", e, t},
1525 {"trade", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.trade", "ns2.dns.nic.trade", "ns3.dns.nic.trade", "ns4.dns.nic.trade", "ns5.dns.nic.trade", "ns6.dns.nic.trade"}, n, n, n, "whois.nic.trade", e, t},
1526 {"tradershotels", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1527 {"trading", r, x, 0x40, "https://bostonivy.co/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.trading", e, f},
1528 {"training", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.training", e, t},
1529 {"transformers", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1530 {"translations", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1531 {"transunion", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1532 {"travel", r, x, 0x1040, "https://www.travel.domains/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.travel", e, f},
1533 {"travelchannel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.travelchannel", e, f},
1534 {"travelers", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.travelers", "a2.nic.travelers", "b0.nic.travelers", "c0.nic.travelers"}, n, n, n, "whois.afilias-srs.net", e, f},
1535 {"travelersinsurance", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.travelersinsurance", "a2.nic.travelersinsurance", "b0.nic.travelersinsurance", "c0.nic.travelersinsurance"}, n, n, n, "whois.afilias-srs.net", e, f},
1536 {"travelguard", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1537 {"trust", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.trust", e, f},
1538 {"trv", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.trv", "a2.nic.trv", "b0.nic.trv", "c0.nic.trv"}, n, n, n, "whois.afilias-srs.net", e, f},
1539 {"tt", r, z[4536:4568], 0xa0, e, w{"a.lactld.org", "ns3.nic.mx", "pch.nic.tt", "ripe.nic.tt"}, n, n, n, e, "http://www.nic.tt/cgi-bin/search.pl", f},
1540 {"tube", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.tube", "ns2.dns.nic.tube", "ns3.dns.nic.tube", "ns4.dns.nic.tube", "ns5.dns.nic.tube", "ns6.dns.nic.tube"}, n, n, n, "whois.nic.tube", e, f},
1541 {"tui", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.tui", "b.nic.tui", "c.nic.tui", "d.nic.tui"}, n, n, n, "whois.nic.tui", e, f},
1542 {"tunes", r, x, 0x48, "https://newgtlds.icann.org/", w{"dns1.nic.tunes", "dns2.nic.tunes", "dns3.nic.tunes", "dns4.nic.tunes", "dnsa.nic.tunes", "dnsb.nic.tunes", "dnsc.nic.tunes", "dnsd.nic.tunes"}, n, n, n, "whois.nic.tunes", e, t},
1543 {"tushu", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.tushu", "dns2.nic.tushu", "dns3.nic.tushu", "dns4.nic.tushu", "dnsa.nic.tushu", "dnsb.nic.tushu", "dnsc.nic.tushu", "dnsd.nic.tushu"}, n, n, n, "whois.nic.tushu", e, t},
1544 {"tv", r, x, 0xe0, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "tvwhois.verisign-grs.com", e, t},
1545 {"tvs", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.tvs", "a2.nic.tvs", "b0.nic.tvs", "c0.nic.tvs"}, n, n, n, "whois.nic.tvs", e, f},
1546 {"tw", r, z[4568:4581], 0xa0, e, w{"a.dns.tw", "anytld.apnic.net", "b.dns.tw", "c.dns.tw", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw", "ns.twnic.net"}, n, n, n, "whois.twnic.net.tw", e, t},
1547 {"tz", r, z[4581:4593], 0xa8, e, w{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns-tz.afrinic.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, n, "whois.tznic.or.tz", e, f},
1548 {"ua", r, z[4593:4659], 0xa0, "http://www.nic.net.ua/", w{"cd1.ns.ua", "ho1.ns.ua", "in1.ns.ua", "pch.ns.ua"}, n, n, n, "whois.ua", e, t},
1549 {"ubank", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ubank", e, f},
1550 {"ubs", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.ubs", e, f},
1551 {"uconnect", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.afilias-srs.net", e, f},
1552 {"ug", r, z[4659:4668], 0xa0, e, w{"anycast.eahd.or.ug", "ns-ug.afrinic.net", "ns.icann.org", "root.eahd.or.ug", "ug.cctld.authdns.ripe.net"}, n, n, n, "whois.co.ug", e, f},
1553 {"uk", r, z[4668:4678], 0xa0, "https://www.nominet.uk/", w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, "whois.nic.uk", e, f},
1554 {"ultrabook", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1555 {"um", r, x, 0x8a0, e, n, n, n, n, e, e, f},
1556 {"ummah", r, x, 0x2042, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1557 {"unicom", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.unicom", e, f},
1558 {"unicorn", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1559 {"university", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.university", e, t},
1560 {"uno", r, x, 0x40, e, w{"a.nic.uno", "b.nic.uno", "c.nic.uno", "d.nic.uno"}, n, n, n, "whois.nic.uno", e, f},
1561 {"uol", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, "whois.gtlds.nic.br", e, t},
1562 {"ups", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.ups", "a2.nic.ups", "b0.nic.ups", "c0.nic.ups"}, n, n, n, "whois.nic.ups", e, f},
1563 {"us", r, z[4678:4738], 0xa0, e, w{"a.cctld.us", "b.cctld.us", "c.cctld.us", "e.cctld.us", "f.cctld.us", "k.cctld.us"}, n, n, n, "whois.nic.us", e, f},
1564 {"uy", r, z[4738:4744], 0xa0, e, w{"a.lactld.org", "a.nic.uy", "b.nic.uy", "d.nic.uy", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx"}, n, n, n, "whois.nic.org.uy", e, f},
1565 {"uz", r, z[4744:4758], 0xa0, e, w{"ns1.uz", "ns2.uz", "ns3.uz", "ns4.uz", "ns5.uz", "ns6.uz", "ns7.uz"}, n, n, n, "whois.cctld.uz", e, f},
1566 {"va", r, x, 0xa0, e, w{"dns.nic.it", "john.vatican.va", "michael.vatican.va", "osiris.namex.it", "seth.namex.it", "va.cctld.authdns.ripe.net"}, n, n, n, "whois.iana.org", e, f},
1567 {"vacations", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.vacations", e, t},
1568 {"vana", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.vana", e, f},
1569 {"vanguard", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.vanguard", e, f},
1570 {"vanish", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1571 {"vc", r, z[4758:4761], 0xe0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, "whois2.afilias-grs.net", e, f},
1572 {"ve", r, z[4761:4772], 0xa8, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, "whois.nic.ve", e, t},
1573 {"vegas", r, x, 0xc4, "http://nic.vegas/", w{"a0.nic.vegas", "a2.nic.vegas", "b0.nic.vegas", "c0.nic.vegas"}, n, w{"Las Vegas"}, n, "whois.afilias-srs.net", e, f},
1574 {"ventures", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.ventures", e, t},
1575 {"verisign", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.verisign", e, t},
1576 {"xn--vermgensberater-ctb" /* vermögensberater */, r, x, 0x48, "https://newgtlds.icann.org/", w{"a.nic.xn--vermgensberater-ctb", "b.nic.xn--vermgensberater-ctb", "c.nic.xn--vermgensberater-ctb", "d.nic.xn--vermgensberater-ctb"}, n, n, n, "whois.nic.xn--vermgensberater-ctb", e, f},
1577 {"xn--vermgensberatung-pwb" /* vermögensberatung */, r, x, 0x48, "https://newgtlds.icann.org/", w{"a.nic.xn--vermgensberatung-pwb", "b.nic.xn--vermgensberatung-pwb", "c.nic.xn--vermgensberatung-pwb", "d.nic.xn--vermgensberatung-pwb"}, n, n, n, "whois.nic.xn--vermgensberatung-pwb", e, f},
1578 {"versicherung", r, x, 0x40, e, w{"a.dns.nic.versicherung", "m.dns.nic.versicherung", "n.dns.nic.versicherung"}, n, n, n, "whois.nic.versicherung", e, t},
1579 {"vet", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.vet", e, t},
1580 {"vg", r, z[4772:4773], 0xa0, e, w{"a.nic.vg", "b.nic.vg", "c.nic.vg", "d.nic.vg"}, w{"88.198.29.97"}, n, n, "whois.nic.vg", e, f},
1581 {"vi", r, z[4773:4779], 0xa8, "https://secure.nic.vi/", w{"auth100.ns.uu.net", "auth110.ns.uu.net", "ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, "https://secure.nic.vi/whois-lookup/", f},
1582 {"viajes", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.viajes", e, t},
1583 {"video", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.video", e, t},
1584 {"vig", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.vig", "a2.nic.vig", "b0.nic.vig", "c0.nic.vig"}, n, n, n, "whois.afilias-srs.net", e, f},
1585 {"viking", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.viking", "a2.nic.viking", "b0.nic.viking", "c0.nic.viking"}, n, n, n, "whois.afilias-srs.net", e, f},
1586 {"villas", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.villas", e, t},
1587 {"vin", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.vin", e, t},
1588 {"vip", r, x, 0x40, "http://nic.vip/", w{"dns1.nic.vip", "dns2.nic.vip", "dns3.nic.vip", "dns4.nic.vip", "dnsa.nic.vip", "dnsb.nic.vip", "dnsc.nic.vip", "dnsd.nic.vip"}, n, n, n, "whois.nic.vip", e, t},
1589 {"virgin", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.virgin", "dns2.nic.virgin", "dns3.nic.virgin", "dns4.nic.virgin", "dnsa.nic.virgin", "dnsb.nic.virgin", "dnsc.nic.virgin", "dnsd.nic.virgin"}, n, n, n, "whois.nic.virgin", e, f},
1590 {"visa", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.visa", e, t},
1591 {"vision", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.vision", e, t},
1592 {"vista", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.vista", e, f},
1593 {"vistaprint", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.vistaprint", e, f},
1594 {"viva", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.viva", "b.nic.viva", "c.nic.viva", "d.nic.viva"}, n, n, n, "whois.nic.viva", e, f},
1595 {"vivo", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.vivo", "ns2.dns.nic.vivo", "ns3.dns.nic.vivo", "ns4.dns.nic.vivo", "ns5.dns.nic.vivo", "ns6.dns.nic.vivo"}, n, n, n, "whois.nic.vivo", e, t},
1596 {"vlaanderen", r, x, 0x440, "https://newgtlds.icann.org/", w{"a.nsset.vlaanderen", "b.nsset.vlaanderen", "c.nsset.vlaanderen", "d.nsset.vlaanderen", "y.nsset.vlaanderen", "z.nsset.vlaanderen"}, n, w{"BE-VLG"}, n, "whois.nic.vlaanderen", e, t},
1597 {"vn", r, z[4779:4791], 0xa0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, "http://www.vnnic.vn/en/domain", t},
1598 {"vodka", r, x, 0x40, "http://nic.vodka/", w{"dns1.nic.vodka", "dns2.nic.vodka", "dns3.nic.vodka", "dns4.nic.vodka", "dnsa.nic.vodka", "dnsb.nic.vodka", "dnsc.nic.vodka", "dnsd.nic.vodka"}, n, n, n, "whois.nic.vodka", e, t},
1599 {"volkswagen", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.volkswagen", "a2.nic.volkswagen", "b0.nic.volkswagen", "c0.nic.volkswagen"}, n, n, n, "whois.afilias-srs.net", e, t},
1600 {"volvo", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.volvo", e, f},
1601 {"vons", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1602 {"vote", r, x, 0x40, "https://get.vote/", w{"a0.nic.vote", "a2.nic.vote", "b0.nic.vote", "c0.nic.vote"}, n, n, n, "whois.afilias.net", e, t},
1603 {"voting", r, x, 0x40, e, w{"a.nic.voting", "b.nic.voting", "c.nic.voting", "d.nic.voting"}, n, n, n, "whois.nic.voting", e, t},
1604 {"voto", r, x, 0x40, "https://get.voto/", w{"a0.nic.voto", "a2.nic.voto", "b0.nic.voto", "c0.nic.voto"}, n, n, n, "whois.afilias.net", e, t},
1605 {"voyage", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.voyage", e, t},
1606 {"vu", r, z[4791:4796], 0xa0, e, w{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, n, "whois.dnrs.neustar", e, f},
1607 {"vuelos", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.vuelos", "ns2.dns.nic.vuelos", "ns3.dns.nic.vuelos", "ns4.dns.nic.vuelos", "ns5.dns.nic.vuelos", "ns6.dns.nic.vuelos"}, n, n, n, "whois.nic.vuelos", e, t},
1608 {"wales", r, x, 0x4c0, "https://ourhomeonline.wales/", w{"dns1.nic.wales", "dns2.nic.wales", "dns3.nic.wales", "dns4.nic.wales", "dnsa.nic.wales", "dnsb.nic.wales", "dnsc.nic.wales", "dnsd.nic.wales"}, n, w{"GB-WLS"}, n, "whois.nic.wales", e, t},
1609 {"walmart", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.walmart", e, f},
1610 {"walter", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.walter", "b.nic.walter", "c.nic.walter", "d.nic.walter"}, n, n, n, "whois.nic.walter", e, t},
1611 {"wang", r, x, 0x40, e, w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1612 {"wanggou", r, x, 0x48, "https://newgtlds.icann.org/", w{"dns1.nic.wanggou", "dns2.nic.wanggou", "dns3.nic.wanggou", "dns4.nic.wanggou", "dnsa.nic.wanggou", "dnsb.nic.wanggou", "dnsc.nic.wanggou", "dnsd.nic.wanggou"}, n, n, n, "whois.nic.wanggou", e, t},
1613 {"warman", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.warman", e, f},
1614 {"watch", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.watch", e, t},
1615 {"watches", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.watches", "a2.nic.watches", "b0.nic.watches", "c0.nic.watches"}, n, n, n, "whois.nic.watches", e, t},
1616 {"weather", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.weather", "ns2.dns.nic.weather", "ns3.dns.nic.weather", "ns4.dns.nic.weather", "ns5.dns.nic.weather", "ns6.dns.nic.weather"}, n, n, n, "whois.nic.weather", e, t},
1617 {"weatherchannel", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.weatherchannel", "ns2.dns.nic.weatherchannel", "ns3.dns.nic.weatherchannel", "ns4.dns.nic.weatherchannel", "ns5.dns.nic.weatherchannel", "ns6.dns.nic.weatherchannel"}, n, n, n, "whois.nic.weatherchannel", e, f},
1618 {"web", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1619 {"webcam", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.webcam", "ns2.dns.nic.webcam", "ns3.dns.nic.webcam", "ns4.dns.nic.webcam", "ns5.dns.nic.webcam", "ns6.dns.nic.webcam"}, n, n, n, "whois.nic.webcam", e, t},
1620 {"weber", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.weber", e, t},
1621 {"webjet", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1622 {"webs", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1623 {"website", r, x, 0x40, e, w{"a.nic.website", "b.nic.website", "e.nic.website", "f.nic.website"}, n, n, n, "whois.nic.website", e, t},
1624 {"wed", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.emdns.uk", "dns2.emdns.uk", "dns3.emdns.uk", "dns4.emdns.uk", "dnsa.emdns.uk", "dnsb.emdns.uk", "dnsc.emdns.uk", "dnsd.emdns.uk"}, n, n, n, "whois.nic.wed", e, f},
1625 {"wedding", r, x, 0x40, "http://nic.wedding/", w{"dns1.nic.wedding", "dns2.nic.wedding", "dns3.nic.wedding", "dns4.nic.wedding", "dnsa.nic.wedding", "dnsb.nic.wedding", "dnsc.nic.wedding", "dnsd.nic.wedding"}, n, n, n, "whois.nic.wedding", e, t},
1626 {"weibo", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.weibo", "a2.nic.weibo", "b0.nic.weibo", "c0.nic.weibo"}, n, n, n, "whois.nic.weibo", e, t},
1627 {"weir", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, f},
1628 {"wf", r, x, 0xa0, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.wf", e, t},
1629 {"whoswho", r, x, 0x40, "https://newgtlds.icann.org/", w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.whoswho", e, t},
1630 {"wien", r, x, 0xc4, e, w{"dns.ryce-rsp.com", "ns1.dns.business", "ns1.ryce-rsp.com"}, n, w{"Vienna", "AT-9"}, n, "whois.nic.wien", e, t},
1631 {"wiki", r, x, 0x40, e, w{"a.nic.wiki", "b.nic.wiki", "c.nic.wiki", "d.nic.wiki"}, n, n, n, "whois.nic.wiki", e, t},
1632 {"williamhill", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.dns.nic.williamhill", "ns2.dns.nic.williamhill", "ns3.dns.nic.williamhill", "ns4.dns.nic.williamhill", "ns5.dns.nic.williamhill", "ns6.dns.nic.williamhill"}, n, n, n, "whois.nic.williamhill", e, f},
1633 {"wilmar", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1634 {"win", r, x, 0x40, "https://www.famousfourmedia.com/", w{"ns1.dns.nic.win", "ns2.dns.nic.win", "ns3.dns.nic.win", "ns4.dns.nic.win", "ns5.dns.nic.win", "ns6.dns.nic.win"}, n, n, n, "whois.nic.win", e, t},
1635 {"windows", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
1636 {"wine", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.wine", e, t},
1637 {"winners", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.winners", "ns2.dns.nic.winners", "ns3.dns.nic.winners", "ns4.dns.nic.winners", "ns5.dns.nic.winners", "ns6.dns.nic.winners"}, n, n, n, "whois.nic.winners", e, f},
1638 {"wme", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.wme", "b.nic.wme", "c.nic.wme", "d.nic.wme"}, n, n, n, "whois.nic.wme", e, t},
1639 {"wolterskluwer", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.wolterskluwer", "a2.nic.wolterskluwer", "b0.nic.wolterskluwer", "c0.nic.wolterskluwer"}, n, n, n, "whois.nic.wolterskluwer", e, t},
1640 {"woodside", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.woodside", "b.nic.woodside", "c.nic.woodside", "d.nic.woodside"}, n, n, n, "whois.nic.woodside", e, f},
1641 {"work", r, x, 0x40, "http://nic.work/", w{"dns1.nic.work", "dns2.nic.work", "dns3.nic.work", "dns4.nic.work", "dnsa.nic.work", "dnsb.nic.work", "dnsc.nic.work", "dnsd.nic.work"}, n, n, n, "whois.nic.work", e, t},
1642 {"works", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.works", e, t},
1643 {"world", r, x, 0x40, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.world", e, t},
1644 {"wow", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.wow", "dns2.nic.wow", "dns3.nic.wow", "dns4.nic.wow", "dnsa.nic.wow", "dnsb.nic.wow", "dnsc.nic.wow", "dnsd.nic.wow"}, n, n, n, "whois.nic.wow", e, t},
1645 {"ws", r, z[4796:4801], 0xe0, "https://www.worldsite.ws/", w{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, w{"64.70.19.203"}, n, n, "whois.website.ws", e, t},
1646 {"wtc", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.nic.wtc", "b.nic.wtc", "c.nic.wtc", "d.nic.wtc"}, n, n, n, "whois.nic.wtc", e, f},
1647 {"wtf", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.wtf", e, t},
1648 {"xbox", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, e, e, t},
1649 {"xerox", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xerox", e, f},
1650 {"xfinity", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.xfinity", "dns2.nic.xfinity", "dns3.nic.xfinity", "dns4.nic.xfinity", "dnsa.nic.xfinity", "dnsb.nic.xfinity", "dnsc.nic.xfinity", "dnsd.nic.xfinity"}, n, n, n, "whois.nic.xfinity", e, f},
1651 {"xihuan", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, f},
1652 {"xin", r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xin", "a2.nic.xin", "b0.nic.xin", "c0.nic.xin"}, n, n, n, "whois.nic.xin", e, f},
1653 {"xperia", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xperia", e, f},
1654 {"xxx", r, x, 0x41, "https://nic.xxx/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns5.uniregistry.net", "ns6.uniregistry.info"}, n, n, n, "whois.registrar.adult", e, t},
1655 {"xyz", r, x, 0x40, e, w{"generationxyz.nic.xyz", "x.nic.xyz", "y.nic.xyz", "z.nic.xyz"}, n, n, n, "whois.nic.xyz", e, t},
1656 {"yachts", r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.yachts", "b.nic.yachts", "c.nic.yachts", "d.nic.yachts"}, n, n, n, "whois.nic.yachts", e, f},
1657 {"yahoo", r, x, 0x42, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.yahoo", e, t},
1658 {"yamaxun", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.yamaxun", "dns2.nic.yamaxun", "dns3.nic.yamaxun", "dns4.nic.yamaxun", "dnsa.nic.yamaxun", "dnsb.nic.yamaxun", "dnsc.nic.yamaxun", "dnsd.nic.yamaxun"}, n, n, n, "whois.nic.yamaxun", e, t},
1659 {"yandex", r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, "whois.nic.yandex", e, f},
1660 {"ye", r, z[4801:4809], 0xa8, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, f},
1661 {"yellowpages", r, x, 0x48, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1662 {"yodobashi", r, x, 0x42, "https://newgtlds.icann.org/", w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, n, "whois.nic.gmo", e, t},
1663 {"yoga", r, x, 0x40, "http://nic.yoga/", w{"dns1.nic.yoga", "dns2.nic.yoga", "dns3.nic.yoga", "dns4.nic.yoga", "dnsa.nic.yoga", "dnsb.nic.yoga", "dnsc.nic.yoga", "dnsd.nic.yoga"}, n, n, n, "whois.nic.yoga", e, t},
1664 {"yokohama", r, x, 0xc4, e, w{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, w{"Yokohama"}, n, "whois.nic.yokohama", e, t},
1665 {"you", r, x, 0x40, "https://newgtlds.icann.org/", w{"dns1.nic.you", "dns2.nic.you", "dns3.nic.you", "dns4.nic.you", "dnsa.nic.you", "dnsb.nic.you", "dnsc.nic.you", "dnsd.nic.you"}, n, n, n, "whois.nic.you", e, t},
1666 {"youtube", r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1667 {"yt", r, x, 0xa0, e, w{"d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, n, "whois.nic.yt", e, t},
1668 {"yu", r, z[4809:4815], 0x8a0, e, n, n, n, n, e, e, f},
1669 {"yun", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, f},
1670 {"za", r, z[4815:4842], 0xa8, e, w{"nsza.is.co.za", "za-ns.anycast.pch.net", "za1.dnsnode.net"}, n, n, n, "whois.nic.za", e, f},
1671 {"zappos", r, x, 0x42, "https://newgtlds.icann.org/", w{"dns1.nic.zappos", "dns2.nic.zappos", "dns3.nic.zappos", "dns4.nic.zappos", "dnsa.nic.zappos", "dnsb.nic.zappos", "dnsc.nic.zappos", "dnsd.nic.zappos"}, n, n, n, "whois.nic.zappos", e, t},
1672 {"zara", r, x, 0x42, "https://newgtlds.icann.org/", w{"a0.nic.zara", "a2.nic.zara", "b0.nic.zara", "c0.nic.zara"}, n, n, n, "whois.afilias-srs.net", e, t},
1673 {"zero", r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.zero", "ns2.dns.nic.zero", "ns3.dns.nic.zero", "ns4.dns.nic.zero", "ns5.dns.nic.zero", "ns6.dns.nic.zero"}, n, n, n, "whois.nic.zero", e, t},
1674 {"zip", r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1675 {"zippo", r, x, 0x42, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.zippo", e, f},
1676 {"zm", r, z[4842:4850], 0xa0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, "whois.zicta.zm", e, f},
1677 {"zone", r, x, 0x40, e, w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.zone", e, t},
1678 {"zuerich", r, x, 0xc4, "http://nic.zuerich/", w{"a.nic.zuerich", "b.nic.zuerich", "c.nic.zuerich", "d.nic.zuerich"}, n, w{"Zurich", "CH-ZH"}, w{"de-CH"}, "whois.nic.zuerich", e, t},
1679 {"zulu", r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, f},
1680 {"zw", r, z[4850:4854], 0xa0, e, w{"ns1.liquidtelecom.net", "ns1zim.telone.co.zw", "ns2.liquidtelecom.net", "ns2zim.telone.co.zw", "zw-ns.anycast.pch.net"}, n, n, n, e, "http://www.zispa.org.zw/", f},
1681 {"xn--jxalpdlp" /* δοκιμή */, r, x, 0x40, e, n, n, n, n, e, e, t},
1682 {"xn--qxam" /* ελ */, r, x, 0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, "https://grweb.ics.forth.gr/public/whois.jsp?lang=en", t},
1683 {"xn--qxa6a" /* ευ */, r, x, 0, e, w{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, n, "whois.eu", e, t},
1684 {"xn--90ae" /* бг */, r, x, 0, e, w{"a.nic.bg", "b.nic.bg", "c.nic.bg", "d.nic.bg", "e.nic.bg", "p.nic.bg"}, n, n, n, "whois.imena.bg", e, t},
1685 {"xn--90ais" /* бел */, r, x, 0x40, e, w{"dns1.tld.hosterby.com", "dns2.tld.hosterby.com", "dns3.tld.hosterby.com", "dns4.tld.hosterby.com", "dns5.tld.hosterby.com", "dns6.tld.hosterby.com"}, n, n, n, "whois.cctld.by", e, t},
1686 {"xn--d1acj3b" /* дети */, r, x, 0x40, e, w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, n, "whois.nic.xn--d1acj3b", e, t},
1687 {"xn--e1a4c" /* ею */, r, x, 0, e, w{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, n, "whois.eu", e, t},
1688 {"xn--80akhbyknj4f" /* испытание */, r, x, 0x40, e, n, n, n, n, e, e, t},
1689 {"xn--80aqecdr1a" /* католик */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--80aqecdr1a", "b.nic.xn--80aqecdr1a", "c.nic.xn--80aqecdr1a", "d.nic.xn--80aqecdr1a"}, n, n, n, "whois.nic.xn--80aqecdr1a", e, t},
1690 {"xn--j1aef" /* ком */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--j1aef", e, t},
1691 {"xn--d1alf" /* мкд */, r, x, 0x40, "https://newgtlds.icann.org/", w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, "whois.marnet.mk", e, t},
1692 {"xn--l1acc" /* мон */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.idn.mn", "ns2.idn.mn", "ns3.idn.mn"}, n, n, n, e, e, t},
1693 {"xn--80adxhks" /* москва */, r, x, 0xc4, e, w{"a.dns.flexireg.ru", "b.dns.flexireg.net", "c.dns.flexireg.org", "d.dns.flexireg.domains"}, n, w{"Moscow"}, n, "whois.nic.xn--80adxhks", e, t},
1694 {"xn--80asehdb" /* онлайн */, r, x, 0x40, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.xn--80asehdb", e, t},
1695 {"xn--c1avg" /* орг */, r, x, 0x40, "https://pir.org/products/opr-domain/", w{"a0.nic.xn--c1avg", "a2.nic.xn--c1avg", "b0.nic.xn--c1avg", "c0.nic.xn--c1avg"}, n, n, n, "whois.publicinterestregistry.net", e, t},
1696 {"xn--p1acf" /* рус */, r, z[4854:5054], 0x40, "https://newgtlds.icann.org/", w{"ns1.anycastdns.cz", "ns1.nic.xn--p1acf", "ns2.anycastdns.cz", "ns2.nic.xn--p1acf"}, n, n, n, "whois.nic.xn--p1acf", e, t},
1697 {"xn--p1ai" /* рф */, r, z[5054:5057], 0xa0, "https://cctld.ru/", w{"a.dns.ripn.net", "b.dns.ripn.net", "d.dns.ripn.net", "e.dns.ripn.net", "f.dns.ripn.net"}, n, n, w{"ru-RU"}, "whois.tcinet.ru", e, t},
1698 {"xn--80aswg" /* сайт */, r, x, 0x40, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.xn--80aswg", e, t},
1699 {"xn--90a3ac" /* срб */, r, z[5057:5062], 0x40, e, w{"a.nic.rs", "b.nic.rs", "f.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, "whois.rnids.rs", e, t},
1700 {"xn--j1amh" /* укр */, r, x, 0xe0, "http://uanic.net/", w{"dns1.u-registry.com", "dns2.u-registry.net", "dns3.dotukr.com", "nsi.uanic.net", "tier1.num.net.ua"}, n, n, w{"crh-UA", "mul-Cyrl-UA", "ru-UA", "uk-UA"}, "whois.dotukr.com", e, t},
1701 {"xn--80ao21a" /* қаз */, r, x, 0x40, e, w{"ns.nic.kz", "ns1.nic.kz"}, n, n, n, "whois.nic.kz", e, t},
1702 {"xn--y9a3aq" /* հայ */, r, x, 0x40, e, w{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am"}, n, n, n, "whois.amnic.net", e, t},
1703 {"xn--deba0ad" /* טעסט */, r, x, 0x40, e, n, n, n, n, e, e, t},
1704 {"xn--4dbrk0ce" /* ישראל */, r, x, 0, e, w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, "whois.isoc.org.il", e, t},
1705 {"xn--9dbq2a" /* קום */, r, x, 0, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--9dbq2a", e, t},
1706 {"xn--hgbk6aj7f53bba" /* آزمایشی */, r, x, 0x40, e, n, n, n, n, e, e, t},
1707 {"xn--kgbechtv" /* إختبار */, r, x, 0x40, e, n, n, n, n, e, e, t},
1708 {"xn--mgbca7dzdo" /* ابوظبي */, r, x, 0x40, "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, n, "whois.nic.xn--mgbca7dzdo", e, t},
1709 {"xn--mgbaakc7dvf" /* اتصالات */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--mgbaakc7dvf", "b.nic.xn--mgbaakc7dvf", "c.nic.xn--mgbaakc7dvf", "d.nic.xn--mgbaakc7dvf"}, n, n, n, "whois.centralnic.com", e, t},
1710 {"xn--mgba3a3ejt" /* ارامكو */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--mgba3a3ejt", "ns2.dns.nic.xn--mgba3a3ejt", "ns3.dns.nic.xn--mgba3a3ejt", "ns4.dns.nic.xn--mgba3a3ejt", "ns5.dns.nic.xn--mgba3a3ejt", "ns6.dns.nic.xn--mgba3a3ejt"}, n, n, n, "whois.nic.xn--mgba3a3ejt", e, t},
1711 {"xn--mgbayh7gpa" /* الاردن */, r, x, 0x40, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, "http://idn.jo/whois_a.aspx", t},
1712 {"xn--mgbcpq6gpa1a" /* البحرين */, r, x, 0, e, w{"a.nic.xn--mgbcpq6gpa1a", "b.nic.xn--mgbcpq6gpa1a", "c.nic.xn--mgbcpq6gpa1a", "d.nic.xn--mgbcpq6gpa1a"}, n, n, n, e, e, t},
1713 {"xn--lgbbat1ad8j" /* الجزائر */, r, x, 0x40, "https://newgtlds.icann.org/", w{"idn1.nic.dz", "idn2.nic.dz"}, n, n, n, "whois.nic.dz", e, t},
1714 {"xn--mgberp4a5d4ar" /* السعودية */, r, x, 0xa0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, w{"ar-SA"}, "whois.nic.net.sa", e, t},
1715 {"xn--mgba7c0bbn0a" /* العليان */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--mgba7c0bbn0a", "b.nic.xn--mgba7c0bbn0a", "c.nic.xn--mgba7c0bbn0a", "d.nic.xn--mgba7c0bbn0a"}, n, n, n, "whois.nic.xn--mgba7c0bbn0a", e, t},
1716 {"xn--mgbc0a9azcg" /* المغرب */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, "whois.iam.net.ma", e, t},
1717 {"xn--mgbaam7a8h" /* امارات */, r, x, 0xa0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "nsext-pch.aedns.ae"}, n, n, w{"ar-AE"}, "whois.aeda.net.ae", e, t},
1718 {"xn--mgba3a4f16a" /* ایران */, r, x, 0x40, e, w{"a.nic.ir", "ns.irnic.ir"}, n, n, n, "whois.nic.ir", e, t},
1719 {"xn--mgbbh1a" /* بارت */, r, z[5062:5063], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"ks-IN"}, "whois.registry.in", e, t},
1720 {"xn--mgbab2bd" /* بازار */, r, x, 0x40, e, w{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, n, "whois.nic.xn--mgbab2bd", e, t},
1721 {"xn--ngbe9e0a" /* بيتك */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--ngbe9e0a", "b.nic.xn--ngbe9e0a", "c.nic.xn--ngbe9e0a", "d.nic.xn--ngbe9e0a"}, n, n, n, "whois.nic.xn--ngbe9e0a", e, t},
1722 {"xn--mgbbh1a71e" /* بھارت */, r, z[5063:5064], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"ur-IN"}, "whois.registry.in", e, t},
1723 {"xn--pgbs0dh" /* تونس */, r, x, 0x40, e, w{"ns-tn.afrinic.net", "ns1.ati.tn", "ns2.ati.tn", "ns2.nic.fr", "pch.ati.tn", "rip.psg.com"}, n, n, n, "whois.ati.tn", e, t},
1724 {"xn--mgbpl2fh" /* سودان */, r, x, 0x40, e, w{"ans1.sis.sd", "pch.sis.sd"}, n, n, n, e, e, t},
1725 {"xn--ogbpf8fl" /* سورية */, r, x, 0x40, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, "whois.tld.sy", e, t},
1726 {"xn--ngbc5azd" /* شبكة */, r, x, 0x40, "https://www.dotshabaka.com/", w{"a.nic.xn--ngbc5azd", "b.nic.xn--ngbc5azd", "c.nic.xn--ngbc5azd", "d.nic.xn--ngbc5azd"}, n, n, n, "whois.nic.xn--ngbc5azd", e, t},
1727 {"xn--mgbtx2b" /* عراق */, r, x, 0, e, w{"dyn1.cmc.iq", "dyn2.cmc.iq", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, "whois.cmc.iq", e, t},
1728 {"xn--ngbrx" /* عرب */, r, x, 0x40, "https://newgtlds.icann.org/", w{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, n, n, "whois.nic.xn--ngbrx", e, t},
1729 {"xn--mgb9awbf" /* عمان */, r, x, 0x40, "https://newgtlds.icann.org/", w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, "whois.registry.om", e, t},
1730 {"xn--ygbi2ammx" /* فلسطين */, r, x, 0x40, e, w{"dns1.gov.ps", "dns3.gov.ps", "idn.pnina.ps", "ns1.pnina.ps"}, n, n, n, "whois.pnina.ps", e, t},
1731 {"xn--wgbl6a" /* قطر */, r, x, 0x40, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, "whois.registry.qa", e, t},
1732 {"xn--mgbi4ecexp" /* كاثوليك */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--mgbi4ecexp", "b.nic.xn--mgbi4ecexp", "c.nic.xn--mgbi4ecexp", "d.nic.xn--mgbi4ecexp"}, n, n, n, "whois.nic.xn--mgbi4ecexp", e, t},
1733 {"xn--fhbei" /* كوم */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--fhbei", e, t},
1734 {"xn--pgb3ceoj" /* كيوتل */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1735 {"xn--wgbh1c" /* مصر */, r, x, 0xa0, e, w{"ns1.dotmasr.eg", "ns2.dotmasr.eg", "ns3.dotmasr.eg"}, n, n, w{"ar-EG"}, "whois.dotmasr.eg", e, t},
1736 {"xn--mgbx4cd0ab" /* مليسيا */, r, x, 0x40, e, w{"a.mynic.centralnic-dns.com", "a.nic.my", "a1.nic.my", "b.mynic.centralnic-dns.com", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, "whois.mynic.my", e, t},
1737 {"xn--mgbb9fbpob" /* موبايلي */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--mgbb9fbpob", e, t},
1738 {"xn--mgbah1a3hjkrd" /* موريتانيا */, r, x, 0, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, "whois.nic.mr", e, t},
1739 {"xn--mgbv6cfpo" /* موزايك */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1740 {"xn--4gbrim" /* موقع */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xn--4gbrim", "a2.nic.xn--4gbrim", "b0.nic.xn--4gbrim", "c0.nic.xn--4gbrim"}, n, n, n, "whois.afilias-srs.net", e, t},
1741 {"xn--mgbt3dhd" /* همراه */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.ns.nic.xn--mgbt3dhd", "b.ns.nic.xn--mgbt3dhd", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, w{"Iran"}, n, "whois.nic.xn--mgbt3dhd", e, t},
1742 {"xn--mgbai9azgqp6j" /* پاکستان */, r, x, 0, e, w{"ns.ntc.net.pk", "ns1.ntc.net.pk", "ns2.ntc.net.pk"}, n, n, n, e, e, t},
1743 {"xn--mgbgu82a" /* ڀارت */, r, z[5064:5065], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"sd-IN"}, "whois.registry.in", e, t},
1744 {"xn--11b4c3d" /* कॉम */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--11b4c3d", e, t},
1745 {"xn--c2br7g" /* नेट */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--c2br7g", e, t},
1746 {"xn--11b5bs3a9aj6g" /* परीक्षा */, r, x, 0x40, e, n, n, n, n, e, e, t},
1747 {"xn--h2brj9c" /* भारत */, r, z[5065:5066], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"hi-IN"}, "whois.registry.in", e, t},
1748 {"xn--h2breg3eve" /* भारतम् */, r, z[5066:5067], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"sa-IN"}, "whois.registry.in", e, t},
1749 {"xn--h2brj9c8c" /* भारोत */, r, z[5067:5068], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"sat-Olck-IN"}, "whois.registry.in", e, t},
1750 {"xn--i1b6b1a6a2e" /* संगठन */, r, x, 0x40, "https://pir.org/products/hindi-domain/", w{"a0.nic.xn--i1b6b1a6a2e", "a2.nic.xn--i1b6b1a6a2e", "b0.nic.xn--i1b6b1a6a2e", "c0.nic.xn--i1b6b1a6a2e"}, n, n, n, "whois.publicinterestregistry.net", e, t},
1751 {"xn--54b7fta0cc" /* বাংলা */, r, x, 0, e, w{"bayanno.btcl.net.bd", "bd-ns.anycast.pch.net", "ekushey.btcl.net.bd"}, n, n, n, e, e, t},
1752 {"xn--45brj9c" /* ভারত */, r, z[5068:5070], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"bn-IN"}, "whois.registry.in", e, t},
1753 {"xn--45br5cyl" /* ভাৰত */, r, z[5070:5071], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"as-IN"}, "whois.registry.in", e, t},
1754 {"xn--s9brj9c" /* ਭਾਰਤ */, r, z[5071:5072], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"pa-Guru-IN"}, "whois.registry.in", e, t},
1755 {"xn--gecrj9c" /* ભારત */, r, z[5072:5073], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"gu-IN"}, "whois.registry.in", e, t},
1756 {"xn--3hcrj9c" /* ଭାରତ */, r, z[5073:5074], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"or-IN"}, "whois.registry.in", e, t},
1757 {"xn--xkc2dl3a5ee0h" /* இந்தியா */, r, z[5074:5075], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"ta-IN"}, "whois.registry.in", e, t},
1758 {"xn--xkc2al3hye2a" /* இலங்கை */, r, x, 0x40, "https://newgtlds.icann.org/", w{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk", "ns3.ac.lk"}, n, n, n, "whois.nic.lk", e, t},
1759 {"xn--clchc0ea0b2g2a9gcd" /* சிங்கப்பூர் */, r, x, 0x40, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, n, "whois.sgnic.sg", e, t},
1760 {"xn--hlcj6aya9esc7a" /* பரிட்சை */, r, x, 0x40, e, n, n, n, n, e, e, t},
1761 {"xn--fpcrj9c3d" /* భారత్ */, r, z[5075:5076], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"te-IN"}, "whois.registry.in", e, t},
1762 {"xn--2scrj9c" /* ಭಾರತ */, r, z[5076:5077], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"kn-IN"}, "whois.registry.in", e, t},
1763 {"xn--rvc1e0am3e" /* ഭാരതം */, r, z[5077:5078], 0xa0, "https://www.registry.in/", w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, w{"ml-IN"}, "whois.registry.in", e, t},
1764 {"xn--fzc2c9e2c" /* ලංකා */, r, x, 0x40, e, w{"lk.communitydns.net", "nic.lk-anycast.pch.net", "ns-c.nic.lk", "ns-d.nic.lk", "ns-l.nic.lk", "ns-t.nic.lk", "ns1.ac.lk", "ns3.ac.lk"}, n, n, n, "whois.nic.lk", e, t},
1765 {"xn--42c2d9a" /* คอม */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--42c2d9a", e, t},
1766 {"xn--o3cw4h" /* ไทย */, r, z[5078:5079], 0x40, e, w{"a.thains.co.th", "b.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, "whois.thnic.co.th", e, t},
1767 {"xn--q7ce6a" /* ລາວ */, r, x, 0, e, w{"a.xn--q7ce6a.centralnic-dns.com", "b.xn--q7ce6a.centralnic-dns.com", "c.xn--q7ce6a.centralnic-dns.com", "d.xn--q7ce6a.centralnic-dns.com"}, n, n, n, "whois.nic.la", e, t},
1768 {"xn--node" /* გე */, r, x, 0, "https://newgtlds.icann.org/", w{"a.xn--node.globalanycastcloud.freenom.net", "b.xn--node.globalanycastcloud.freenom.net", "c.xn--node.globalanycastcloud.freenom.net", "d.xn--node.globalanycastcloud.freenom.net", "xn--node.ns.anycast.pch.net"}, w{"188.93.95.11"}, n, n, "whois.itdc.ge", e, t},
1769 {"xn--q9jyb4c" /* みんな */, r, x, 0x40, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1770 {"xn--cckwcxetd" /* アマゾン */, r, x, 0x42, "http://nic.xn--cckwcxetd/", w{"dns1.nic.xn--cckwcxetd", "dns2.nic.xn--cckwcxetd", "dns3.nic.xn--cckwcxetd", "dns4.nic.xn--cckwcxetd", "dnsa.nic.xn--cckwcxetd", "dnsb.nic.xn--cckwcxetd", "dnsc.nic.xn--cckwcxetd", "dnsd.nic.xn--cckwcxetd"}, n, n, n, "whois.nic.xn--cckwcxetd", e, t},
1771 {"xn--gckr3f0f" /* クラウド */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--gckr3f0f", "ns2.dns.nic.xn--gckr3f0f", "ns3.dns.nic.xn--gckr3f0f", "ns4.dns.nic.xn--gckr3f0f", "ns5.dns.nic.xn--gckr3f0f", "ns6.dns.nic.xn--gckr3f0f"}, n, n, n, "whois.nic.xn--gckr3f0f", e, t},
1772 {"xn--qcka1pmc" /* グーグル */, r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1773 {"xn--tckwe" /* コム */, r, x, 0, e, w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--tckwe", e, t},
1774 {"xn--cck2b3b" /* ストア */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--cck2b3b", "ns2.dns.nic.xn--cck2b3b", "ns3.dns.nic.xn--cck2b3b", "ns4.dns.nic.xn--cck2b3b", "ns5.dns.nic.xn--cck2b3b", "ns6.dns.nic.xn--cck2b3b"}, n, n, n, "whois.nic.xn--cck2b3b", e, t},
1775 {"xn--1ck2e1b" /* セール */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--1ck2e1b", "ns2.dns.nic.xn--1ck2e1b", "ns3.dns.nic.xn--1ck2e1b", "ns4.dns.nic.xn--1ck2e1b", "ns5.dns.nic.xn--1ck2e1b", "ns6.dns.nic.xn--1ck2e1b"}, n, n, n, "whois.nic.xn--1ck2e1b", e, t},
1776 {"xn--zckzah" /* テスト */, r, x, 0x40, e, n, n, n, n, e, e, t},
1777 {"xn--bck1b9a5dre4c" /* ファッション */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--bck1b9a5dre4c", "ns2.dns.nic.xn--bck1b9a5dre4c", "ns3.dns.nic.xn--bck1b9a5dre4c", "ns4.dns.nic.xn--bck1b9a5dre4c", "ns5.dns.nic.xn--bck1b9a5dre4c", "ns6.dns.nic.xn--bck1b9a5dre4c"}, n, n, n, "whois.nic.xn--bck1b9a5dre4c", e, t},
1778 {"xn--eckvdtc9d" /* ポイント */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--eckvdtc9d", "ns2.dns.nic.xn--eckvdtc9d", "ns3.dns.nic.xn--eckvdtc9d", "ns4.dns.nic.xn--eckvdtc9d", "ns5.dns.nic.xn--eckvdtc9d", "ns6.dns.nic.xn--eckvdtc9d"}, n, n, n, "whois.nic.xn--eckvdtc9d", e, t},
1779 {"xn--4gq48lf9j" /* 一号店 */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1780 {"xn--rhqv96g" /* 世界 */, r, x, 0, e, w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.nic.xn--rhqv96g", e, t},
1781 {"xn--fiq64b" /* 中信 */, r, x, 0x42, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1782 {"xn--fiqs8s" /* 中国 */, r, x, 0, "http://cnnic.cn/", w{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, w{"218.241.116.40"}, n, w{"zh-Hans-CN"}, "cwhois.cnnic.cn", e, t},
1783 {"xn--fiqz9s" /* 中國 */, r, x, 0x80, "http://cnnic.cn/", w{"h.dns.cn", "i.dns.cn", "j.dns.cn", "k.dns.cn", "l.dns.cn", "m.dns.cn", "n.dns.cn"}, w{"218.241.116.40"}, n, w{"zh-Hant-CN"}, "cwhois.cnnic.cn", e, t},
1784 {"xn--fiq228c5hs" /* 中文网 */, r, x, 0x40, e, w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, t},
1785 {"xn--jlq480n2rg" /* 亚马逊 */, r, x, 0x42, "http://nic.xn--jlq480n2rg/", w{"dns1.nic.xn--jlq480n2rg", "dns2.nic.xn--jlq480n2rg", "dns3.nic.xn--jlq480n2rg", "dns4.nic.xn--jlq480n2rg", "dnsa.nic.xn--jlq480n2rg", "dnsb.nic.xn--jlq480n2rg", "dnsc.nic.xn--jlq480n2rg", "dnsd.nic.xn--jlq480n2rg"}, n, n, n, "whois.nic.xn--jlq480n2rg", e, t},
1786 {"xn--vhquv" /* 企业 */, r, x, 0, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.xn--vhquv", e, t},
1787 {"xn--1qqw23a" /* 佛山 */, r, x, 0xc4, "https://newgtlds.icann.org/", w{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, w{"Foshan"}, n, "whois.ngtld.cn", e, t},
1788 {"xn--vuq861b" /* 信息 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, t},
1789 {"xn--nyqy26a" /* 健康 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.nic.xn--nyqy26a", e, t},
1790 {"xn--45q11c" /* 八卦 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.xn--45q11c", e, t},
1791 {"xn--55qx5d" /* 公司 */, r, x, 0, e, w{"a.ngtld.cn", "b.ngtld.cn", "c.ngtld.cn", "d.ngtld.cn", "e.ngtld.cn"}, n, n, n, "whois.ngtld.cn", e, t},
1792 {"xn--55qw42g" /* 公益 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, n, "whois.conac.cn", e, t},
1793 {"xn--kprw13d" /* 台湾 */, r, x, 0, e, w{"anytld.apnic.net", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw"}, n, n, w{"zh-Hans-TW"}, "whois.twnic.net.tw", e, t},
1794 {"xn--kpry57d" /* 台灣 */, r, x, 0, e, w{"anytld.apnic.net", "d.dns.tw", "e.dns.tw", "f.dns.tw", "g.dns.tw", "h.dns.tw"}, n, n, w{"zh-Hant-TW"}, "whois.twnic.net.tw", e, t},
1795 {"xn--czru2d" /* 商城 */, r, x, 0, e, w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1796 {"xn--czrs0t" /* 商店 */, r, x, 0, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.xn--czrs0t", e, t},
1797 {"xn--czr694b" /* 商标 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, e, e, t},
1798 {"xn--w4rs40l" /* 嘉里 */, r, x, 0, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--w4rs40l", e, t},
1799 {"xn--w4r85el8fhu5dnra" /* 嘉里大酒店 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--w4r85el8fhu5dnra", e, t},
1800 {"xn--3ds443g" /* 在线 */, r, x, 0, e, w{"ns1.teleinfo.cn", "ns2.teleinfoo.com", "ns3.teleinfo.cn", "ns4.teleinfoo.com"}, n, n, n, "whois.teleinfo.cn", e, t},
1801 {"xn--3oq18vl8pn36a" /* 大众汽车 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xn--3oq18vl8pn36a", "a2.nic.xn--3oq18vl8pn36a", "b0.nic.xn--3oq18vl8pn36a", "c0.nic.xn--3oq18vl8pn36a"}, n, n, n, "whois.nic.xn--3oq18vl8pn36a", e, t},
1802 {"xn--pssy2u" /* 大拿 */, r, x, 0, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--pssy2u", e, t},
1803 {"xn--tiq49xqyj" /* 天主教 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--tiq49xqyj", "b.nic.xn--tiq49xqyj", "c.nic.xn--tiq49xqyj", "d.nic.xn--tiq49xqyj"}, n, n, n, "whois.nic.xn--tiq49xqyj", e, t},
1804 {"xn--fjq720a" /* 娱乐 */, r, x, 0, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.xn--fjq720a", e, t},
1805 {"xn--fct429k" /* 家電 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--fct429k", "ns2.dns.nic.xn--fct429k", "ns3.dns.nic.xn--fct429k", "ns4.dns.nic.xn--fct429k", "ns5.dns.nic.xn--fct429k", "ns6.dns.nic.xn--fct429k"}, n, n, n, "whois.nic.xn--fct429k", e, t},
1806 {"xn--estv75g" /* 工行 */, r, x, 0, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--estv75g", e, t},
1807 {"xn--xhq521b" /* 广东 */, r, x, 0, "https://newgtlds.icann.org/", w{"ta.ngtld.cn", "tb.ngtld.cn", "tc.ngtld.cn", "td.ngtld.cn", "te.ngtld.cn"}, n, n, n, "whois.ngtld.cn", e, t},
1808 {"xn--6rtwn" /* 广州 */, r, x, 0x2000, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1809 {"xn--9krt00a" /* 微博 */, r, x, 0, "https://newgtlds.icann.org/", w{"a0.nic.xn--9krt00a", "a2.nic.xn--9krt00a", "b0.nic.xn--9krt00a", "c0.nic.xn--9krt00a"}, n, n, n, "whois.nic.xn--9krt00a", e, t},
1810 {"xn--30rr7y" /* 慈善 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1811 {"xn--6qq986b3xl" /* 我爱你 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1812 {"xn--kput3i" /* 手机 */, r, x, 0, "https://newgtlds.icann.org/", w{"a0.nic.xn--kput3i", "a2.nic.xn--kput3i", "b0.nic.xn--kput3i", "c0.nic.xn--kput3i"}, n, n, n, "whois.nic.xn--kput3i", e, t},
1813 {"xn--kpu716f" /* 手表 */, r, x, 0, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--kpu716f", e, t},
1814 {"xn--otu796d" /* 招聘 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, e, e, t},
1815 {"xn--zfr164b" /* 政务 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.conac.cn", "ns2.conac.cn", "ns3.conac.cn", "ns4.conac.cn", "ns5.conac.cn"}, n, n, n, "whois.conac.cn", e, t},
1816 {"xn--mxtq1m" /* 政府 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.nic.xn--mxtq1m", "b.nic.xn--mxtq1m", "c.nic.xn--mxtq1m", "d.nic.xn--mxtq1m"}, n, n, n, "whois.nic.xn--mxtq1m", e, t},
1817 {"xn--yfro4i67o" /* 新加坡 */, r, x, 0x40, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "ns4.apnic.net", "pch.sgzones.sg"}, n, n, n, "whois.sgnic.sg", e, t},
1818 {"xn--efvy88h" /* 新闻 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.xn--efvy88h", e, t},
1819 {"xn--9et52u" /* 时尚 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1820 {"xn--kcrx7bb75ajk3b" /* 普利司通 */, r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1821 {"xn--rovu88b" /* 書籍 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--rovu88b", "ns2.dns.nic.xn--rovu88b", "ns3.dns.nic.xn--rovu88b", "ns4.dns.nic.xn--rovu88b", "ns5.dns.nic.xn--rovu88b", "ns6.dns.nic.xn--rovu88b"}, n, n, n, "whois.nic.xn--rovu88b", e, t},
1822 {"xn--nqv7f" /* 机构 */, r, x, 0x40, "https://pir.org/products/chinese2char-domain/", w{"a0.nic.xn--nqv7f", "a2.nic.xn--nqv7f", "b0.nic.xn--nqv7f", "c0.nic.xn--nqv7f"}, n, n, n, "whois.publicinterestregistry.net", e, t},
1823 {"xn--tqq33ed31aqia" /* 机构体制 */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1824 {"xn--dkwm73cwpn" /* 欧莱雅 */, r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1825 {"xn--0zwm56d" /* 测试 */, r, x, 0, e, n, n, n, n, e, e, t},
1826 {"xn--b4w605ferd" /* 淡马锡 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xn--b4w605ferd", "a2.nic.xn--b4w605ferd", "b0.nic.xn--b4w605ferd", "c0.nic.xn--b4w605ferd"}, n, n, n, "whois.afilias-srs.net", e, t},
1827 {"xn--fes124c" /* 深圳 */, r, x, 0x2000, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1828 {"xn--g6w251d" /* 測試 */, r, x, 0, e, n, n, n, n, e, e, t},
1829 {"xn--unup4y" /* 游戏 */, r, x, 0, "https://newgtlds.icann.org/", w{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, n, "whois.nic.xn--unup4y", e, t},
1830 {"xn--mix891f" /* 澳門 */, r, x, 0, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, "whois.monic.mo", e, t},
1831 {"xn--3pxu8k" /* 点看 */, r, x, 0, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--3pxu8k", e, t},
1832 {"xn--pbt977c" /* 珠宝 */, r, x, 0, "https://newgtlds.icann.org/", n, n, n, n, "whois.nic.xn--pbt977c", e, t},
1833 {"xn--hxt035cmppuel" /* 盛貿飯店 */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1834 {"xn--6frz82g" /* 移动 */, r, x, 0, e, w{"a0.nic.xn--6frz82g", "a2.nic.xn--6frz82g", "b0.nic.xn--6frz82g", "c0.nic.xn--6frz82g"}, n, n, n, "whois.afilias.net", e, t},
1835 {"xn--nqv7fs00ema" /* 组织机构 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xn--nqv7fs00ema", "a2.nic.xn--nqv7fs00ema", "b0.nic.xn--nqv7fs00ema", "c0.nic.xn--nqv7fs00ema"}, n, n, n, "whois.nic.xn--nqv7fs00ema", e, t},
1836 {"xn--ses554g" /* 网址 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.xn--ses554g", e, t},
1837 {"xn--hxt814e" /* 网店 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.xn--hxt814e", e, t},
1838 {"xn--5tzm5g" /* 网站 */, r, x, 0, "https://nic.xn--5tzm5g/", w{"a0.nic.xn--5tzm5g", "a2.nic.xn--5tzm5g", "b0.nic.xn--5tzm5g", "c0.nic.xn--5tzm5g"}, n, n, n, "whois.nic.xn--5tzm5g", e, t},
1839 {"xn--io0a7i" /* 网络 */, r, x, 0, e, w{"a.ngtld.cn", "b.ngtld.cn", "c.ngtld.cn", "d.ngtld.cn", "e.ngtld.cn"}, n, n, n, "whois.ngtld.cn", e, t},
1840 {"xn--8y0a063a" /* 联通 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.nic.xn--8y0a063a", e, t},
1841 {"xn--jlq61u9w7b" /* 诺基亚 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xn--jlq61u9w7b", "a2.nic.xn--jlq61u9w7b", "b0.nic.xn--jlq61u9w7b", "c0.nic.xn--jlq61u9w7b"}, n, n, n, "whois.nic.xn--jlq61u9w7b", e, t},
1842 {"xn--flw351e" /* 谷歌 */, r, x, 0x42, "https://www.registry.google/", w{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, n, "whois.nic.google", e, t},
1843 {"xn--g2xx48c" /* 购物 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--g2xx48c", "ns2.dns.nic.xn--g2xx48c", "ns3.dns.nic.xn--g2xx48c", "ns4.dns.nic.xn--g2xx48c", "ns5.dns.nic.xn--g2xx48c", "ns6.dns.nic.xn--g2xx48c"}, n, n, n, "whois.nic.xn--g2xx48c", e, t},
1844 {"xn--55qx5d8y0buji4b870u" /* 通用电气公司 */, r, x, 0x40, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1845 {"xn--gk3at1e" /* 通販 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--gk3at1e", "ns2.dns.nic.xn--gk3at1e", "ns3.dns.nic.xn--gk3at1e", "ns4.dns.nic.xn--gk3at1e", "ns5.dns.nic.xn--gk3at1e", "ns6.dns.nic.xn--gk3at1e"}, n, n, n, "whois.nic.xn--gk3at1e", e, t},
1846 {"xn--3bst00m" /* 集团 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, "whois.gtld.knet.cn", e, t},
1847 {"xn--fzys8d69uvgm" /* 電訊盈科 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a0.nic.xn--fzys8d69uvgm", "a2.nic.xn--fzys8d69uvgm", "b0.nic.xn--fzys8d69uvgm", "c0.nic.xn--fzys8d69uvgm"}, n, n, n, "whois.nic.xn--fzys8d69uvgm", e, t},
1848 {"xn--kcrx77d1x4a" /* 飞利浦 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"a.nic.xn--kcrx77d1x4a", "b.nic.xn--kcrx77d1x4a", "c.nic.xn--kcrx77d1x4a", "d.nic.xn--kcrx77d1x4a"}, n, n, n, "whois.nic.xn--kcrx77d1x4a", e, t},
1849 {"xn--jvr189m" /* 食品 */, r, x, 0, "https://newgtlds.icann.org/", w{"ns1.dns.nic.xn--jvr189m", "ns2.dns.nic.xn--jvr189m", "ns3.dns.nic.xn--jvr189m", "ns4.dns.nic.xn--jvr189m", "ns5.dns.nic.xn--jvr189m", "ns6.dns.nic.xn--jvr189m"}, n, n, n, "whois.nic.xn--jvr189m", e, t},
1850 {"xn--imr513n" /* 餐厅 */, r, x, 0, "https://newgtlds.icann.org/", w{"a.zdnscloud.com", "b.zdnscloud.com", "c.zdnscloud.com", "d.zdnscloud.com", "f.zdnscloud.com", "g.zdnscloud.com", "i.zdnscloud.com", "j.zdnscloud.com"}, n, n, n, e, e, t},
1851 {"xn--5su34j936bgsg" /* 香格里拉 */, r, x, 0x40, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--5su34j936bgsg", e, t},
1852 {"xn--j6w193g" /* 香港 */, r, z[5079:5085], 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, w{"zh-Hans-HK"}, "whois.hkirc.hk", e, t},
1853 {"xn--j6w470d71issc" /* 香港電訊 */, r, x, 0x2040, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1854 {"xn--c1yn36f" /* 點看 */, r, x, 0, "https://newgtlds.icann.org/", n, n, n, n, e, e, t},
1855 {"xn--t60b56a" /* 닷넷 */, r, x, 0, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--t60b56a", e, t},
1856 {"xn--mk1bu44c" /* 닷컴 */, r, x, 0, "https://newgtlds.icann.org/", w{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, n, "whois.nic.xn--mk1bu44c", e, t},
1857 {"xn--cg4bki" /* 삼성 */, r, x, 0x42, "https://newgtlds.icann.org/", w{"ns1.xn--cg4bki.centralnic-dns.com", "ns2.xn--cg4bki.centralnic-dns.com", "ns3.xn--cg4bki.centralnic-dns.com", "ns4.xn--cg4bki.centralnic-dns.com"}, n, n, n, "whois.kr", e, t},
1858 {"xn--9t4b11yi5a" /* 테스트 */, r, x, 0x40, e, n, n, n, n, e, e, t},
1859 {"xn--3e0b707e" /* 한국 */, r, x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, "whois.kr", e, t},
1860 {"com.ac", &z[10], x, 0x800, e, n, n, n, n, e, e, f},
1861 {"gov.ac", &z[10], x, 0x800, e, n, n, n, n, e, e, f},
1862 {"mil.ac", &z[10], x, 0, e, n, n, n, n, e, e, f},
1863 {"net.ac", &z[10], x, 0x800, e, n, n, n, n, e, e, f},
1864 {"org.ac", &z[10], x, 0x800, e, n, n, n, n, e, e, f},
1865 {"nom.ad", &z[19], x, 0, e, w{"dnsc.ad", "dnsm.ad"}, n, n, n, e, e, f},
1866 {"ac.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, f},
1867 {"co.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, t},
1868 {"gov.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, f},
1869 {"mil.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, f},
1870 {"name.ae", &z[23], x, 0, e, n, n, n, n, e, e, f},
1871 {"net.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, f},
1872 {"org.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, f},
1873 {"pro.ae", &z[23], x, 0, e, n, n, n, n, e, e, f},
1874 {"sch.ae", &z[23], x, 0, e, w{"ns1.aedns.ae", "ns2.aedns.ae", "ns4.apnic.net", "nsext-pch.aedns.ae"}, n, n, n, e, e, f},
1875 {"airport.aero", &z[25], x, 0, e, n, n, n, n, e, e, t},
1876 {"cargo.aero", &z[25], x, 0, e, n, n, n, n, e, e, t},
1877 {"charter.aero", &z[25], x, 0, e, n, n, n, n, e, e, t},
1878 {"bank.af", &z[27], x, 0, e, w{"ns-us.1and1-dns.com", "ns-us.1and1-dns.us"}, n, n, n, e, e, f},
1879 {"com.af", &z[27], x, 0, e, w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
1880 {"edu.af", &z[27], x, 0, e, w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
1881 {"gov.af", &z[27], x, 0, e, w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
1882 {"hotel.af", &z[27], x, 0, e, n, n, n, n, e, e, f},
1883 {"law.af", &z[27], x, 0, e, n, n, n, n, e, e, f},
1884 {"music.af", &z[27], x, 0, e, w{"josh.ns.cloudflare.com", "lady.ns.cloudflare.com"}, n, n, n, e, e, f},
1885 {"net.af", &z[27], x, 0, e, w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
1886 {"org.af", &z[27], x, 0, e, w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
1887 {"tv.af", &z[27], x, 0, e, w{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
1888 {"co.ag", &z[32], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
1889 {"com.ag", &z[32], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
1890 {"net.ag", &z[32], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
1891 {"nom.ag", &z[32], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
1892 {"ok.ag", &z[32], x, 0, e, w{"ns1.domainname.at", "ns3.domainname.at", "ns4.domainname.at"}, n, n, n, e, e, t},
1893 {"org.ag", &z[32], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
1894 {"com.ai", &z[35], x, 0, e, w{"pch.whois.ai"}, n, n, n, e, e, f},
1895 {"net.ai", &z[35], x, 0, e, w{"pch.whois.ai"}, n, n, n, e, e, f},
1896 {"off.ai", &z[35], x, 0, e, w{"pch.whois.ai"}, n, n, n, e, e, f},
1897 {"org.ai", &z[35], x, 0, e, w{"pch.whois.ai"}, n, n, n, e, e, f},
1898 {"com.al", &z[42], x, 0, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, f},
1899 {"edu.al", &z[42], x, 0, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, f},
1900 {"gov.al", &z[42], x, 0, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, f},
1901 {"inima.al", &z[42], x, 0, e, w{"ns1.he.net", "ns2.he.net", "ns3.he.net", "ns4.he.net", "ns5.he.net"}, n, n, n, e, e, f},
1902 {"net.al", &z[42], x, 0, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, f},
1903 {"org.al", &z[42], x, 0, e, w{"al.cctld.authdns.ripe.net", "ns-al.isti.cnr.it", "ns1.nic.al", "ns2.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, n, e, e, f},
1904 {"soros.al", &z[42], x, 0, e, w{"ns1.hostmonster.com", "ns2.hostmonster.com"}, n, n, n, e, e, f},
1905 {"tirana.al", &z[42], x, 0, e, w{"ns3.albtelecom.net", "ns4.albtelecom.net"}, n, n, n, e, e, f},
1906 {"uniti.al", &z[42], x, 0, e, n, n, n, n, e, e, f},
1907 {"upt.al", &z[42], x, 0, e, w{"abcom.abcom.com.al", "smtphub.abcom.com.al"}, n, n, n, e, e, f},
1908 {"co.am", &z[54], x, 0, e, n, n, n, n, e, e, f},
1909 {"com.am", &z[54], x, 0, e, n, n, n, n, e, e, f},
1910 {"net.am", &z[54], x, 0, e, n, n, n, n, e, e, f},
1911 {"north.am", &z[54], x, 0, e, w{"ns1.instradns.com", "ns2.instradns.com"}, n, n, n, e, e, f},
1912 {"org.am", &z[54], x, 0, e, n, n, n, n, e, e, f},
1913 {"radio.am", &z[54], x, 0, e, w{"a.nic.fm", "b.nic.fm", "c.nic.fm", "d.nic.fm"}, n, n, n, e, e, t},
1914 {"south.am", &z[54], x, 0, e, w{"ns1.instradns.com", "ns2.instradns.com"}, n, n, n, e, e, f},
1915 {"com.an", &z[63], x, 0x800, e, n, n, n, n, e, e, f},
1916 {"edu.an", &z[63], x, 0x800, e, n, n, n, n, e, e, f},
1917 {"net.an", &z[63], x, 0x800, e, n, n, n, n, e, e, f},
1918 {"org.an", &z[63], x, 0x800, e, n, n, n, n, e, e, f},
1919 {"co.ao", &z[71], z[5085:5087], 0, e, w{"fred.nic.ao", "ns-ext.nic.cz", "ns0.nic.ao", "ns02.fccn.pt", "ns2.reg.it.ao"}, n, n, n, e, e, f},
1920 {"ed.ao", &z[71], x, 0, e, n, n, n, n, e, e, f},
1921 {"gv.ao", &z[71], x, 0, e, n, n, n, n, e, e, f},
1922 {"it.ao", &z[71], x, 0, e, w{"fred.nic.ao", "ns-ext.nic.cz", "ns0.nic.ao", "ns02.fccn.pt", "ns2.reg.it.ao"}, n, n, n, e, e, f},
1923 {"og.ao", &z[71], x, 0, e, n, n, n, n, e, e, f},
1924 {"pb.ao", &z[71], x, 0, e, n, n, n, n, e, e, f},
1925 {"com.aq", &z[76], x, 0, e, w{"ns1.internet.com.pe", "ns2.internet.com.pe"}, n, n, n, e, e, f},
1926 {"com.ar", &z[79], x, 0, e, w{"a.dns.ar", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, t},
1927 {"edu.ar", &z[79], z[5087:5088], 0, e, w{"a.riu.edu.ar", "b.riu.edu.ar", "noc.uncu.edu.ar", "ns1.uba.ar", "ns2.switch.ch", "unlp.unlp.edu.ar"}, n, n, n, e, e, f},
1928 {"gob.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, f},
1929 {"gov.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, f},
1930 {"int.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, t},
1931 {"mil.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, t},
1932 {"net.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, t},
1933 {"org.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, t},
1934 {"tur.ar", &z[79], x, 0, e, w{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "f.dns.ar"}, n, n, n, e, e, t},
1935 {"e164.arpa", &z[85], x, 0x8, e, w{"ns3.afrinic.net", "ns3.lacnic.net", "ns4.apnic.net", "pri.authdns.ripe.net", "rirns.arin.net"}, n, n, n, "whois.ripe.net", e, f},
1936 {"in-addr.arpa", &z[85], x, 0x8, e, w{"a.in-addr-servers.arpa", "b.in-addr-servers.arpa", "c.in-addr-servers.arpa", "d.in-addr-servers.arpa", "e.in-addr-servers.arpa", "f.in-addr-servers.arpa"}, n, n, n, e, e, f},
1937 {"ip6.arpa", &z[85], x, 0x8, e, w{"a.ip6-servers.arpa", "b.ip6-servers.arpa", "c.ip6-servers.arpa", "d.ip6-servers.arpa", "e.ip6-servers.arpa", "f.ip6-servers.arpa"}, n, n, n, e, e, f},
1938 {"iris.arpa", &z[85], x, 0x8, e, w{"a.iana-servers.net", "b.iana-servers.net", "c.iana-servers.net", "ns3.lacnic.net", "ns4.apnic.net"}, n, n, n, e, e, f},
1939 {"uri.arpa", &z[85], x, 0x8, e, w{"a.iana-servers.net", "b.iana-servers.net", "c.iana-servers.net", "ns3.lacnic.net", "ns4.apnic.net"}, n, n, n, e, e, f},
1940 {"urn.arpa", &z[85], x, 0x8, e, w{"a.iana-servers.net", "b.iana-servers.net", "c.iana-servers.net", "ns3.lacnic.net", "ns4.apnic.net"}, n, n, n, e, e, f},
1941 {"ac.at", &z[93], x, 0, e, w{"d.ns.at", "n.ns.at", "ns1.univie.ac.at", "ns2.univie.ac.at"}, n, n, n, e, e, f},
1942 {"co.at", &z[93], x, 0, e, n, n, n, n, e, e, f},
1943 {"gv.at", &z[93], x, 0, e, w{"dns1.statistik.gv.at", "ns12.govix.at", "ns3.wien.at", "ns4.wien.gv.at", "ns7.univie.ac.at", "ns8.univie.ac.at"}, n, n, n, e, e, f},
1944 {"or.at", &z[93], x, 0, e, n, n, n, n, e, e, f},
1945 {"priv.at", &z[93], x, 0, e, w{"adns3.utanet.at", "mosthamster.nic.priv.at", "ns2.inode.at", "ns2.nextlayer.at", "ns5.univie.ac.at", "priv-ns.sil.at", "sec1.rcode0.net"}, n, n, n, "whois.nic.priv.at", e, t},
1946 {"act.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1947 {"asn.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
1948 {"com.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
1949 {"conf.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1950 {"csiro.au", &z[96], x, 0, e, w{"ns1.aarnet.net.au", "ns1.csiro.au", "ns2.aarnet.net.au", "ns2.csiro.au", "ns3.aarnet.net.au", "ns3.csiro.au"}, n, n, n, e, e, f},
1951 {"edu.au", &z[96], z[5088:5096], 0, "https://www.domainname.edu.au/", w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1952 {"gov.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1953 {"id.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1954 {"info.au", &z[96], x, 0x800, "http://www.aunic.net/", n, n, n, n, e, e, f},
1955 {"net.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, "eleanba.connect.com.au", e, t},
1956 {"nsw.au", &z[96], x, 0x80, e, w{"q.au", "r.au", "s.au", "t.au"}, n, w{"AU-NSW"}, n, e, e, f},
1957 {"nt.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1958 {"org.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
1959 {"oz.au", &z[96], x, 0, e, w{"munnari.oz.au", "ns.sw.oz.au", "rip.psg.com"}, n, n, n, e, e, f},
1960 {"qld.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1961 {"sa.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1962 {"tas.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1963 {"telememo.au", &z[96], x, 0x800, e, n, n, n, n, e, e, f},
1964 {"vic.au", &z[96], x, 0, "http://www.aucd.org.au/", w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1965 {"wa.au", &z[96], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, f},
1966 {"com.aw", &z[108], x, 0, e, w{"ns1.setarnet.aw", "ns2.setarnet.aw"}, n, n, n, e, e, f},
1967 {"bilesuvar.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1968 {"biz.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1969 {"co.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1970 {"com.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1971 {"edu.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1972 {"ganja.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1973 {"gov.az", &z[113], x, 0, e, w{"ns1.gov.az", "ns2.gov.az", "ns3.gov.az", "ns4.gov.az"}, n, n, n, e, e, f},
1974 {"imishli.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1975 {"info.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1976 {"int.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1977 {"mil.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1978 {"name.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1979 {"net.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1980 {"org.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1981 {"pp.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1982 {"pro.az", &z[113], x, 0, e, n, n, n, n, e, e, f},
1983 {"samux.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1984 {"shamaxi.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1985 {"shusha.az", &z[113], x, 0, e, w{"ns1.gov.az", "ns2.gov.az"}, n, n, n, e, e, t},
1986 {"sumgait.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1987 {"zaqatala.az", &z[113], x, 0, e, n, n, n, n, e, e, t},
1988 {"co.ba", &z[115], x, 0, e, w{"ns1.co.ba", "ns2.co.ba", "ns3.co.ba"}, w{"176.9.45.78"}, n, n, e, e, t},
1989 {"com.ba", &z[115], x, 0, e, w{"ns1.hosting.bhtelecom.ba", "ns2.hosting.bhtelecom.ba", "ns3.hosting.bhtelecom.ba"}, w{"195.222.33.180"}, n, n, e, e, f},
1990 {"edu.ba", &z[115], x, 0, e, w{"auth03.ns.uu.net", "ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, e, f},
1991 {"gov.ba", &z[115], x, 0, e, w{"auth03.ns.uu.net", "ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, e, f},
1992 {"mil.ba", &z[115], x, 0, e, w{"bosna.utic.net.ba", "sava.utic.net.ba"}, n, n, n, e, e, f},
1993 {"net.ba", &z[115], x, 0, e, w{"auth03.ns.uu.net", "ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, e, f},
1994 {"org.ba", &z[115], x, 0, e, w{"auth03.ns.uu.net", "ns.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, e, f},
1995 {"rs.ba", &z[115], x, 0, e, w{"a.ns.rs.ba", "b.ns.rs.ba", "c.ns.rs.ba"}, n, n, n, e, e, f},
1996 {"unbi.ba", &z[115], x, 0, e, w{"linhost01.utic.net.ba", "sava.utic.net.ba"}, n, n, n, e, e, f},
1997 {"unmo.ba", &z[115], x, 0, e, w{"dns2019.unmo.ba", "pdc2019.unmo.ba", "web2019.unmo.ba"}, n, n, n, e, e, f},
1998 {"unsa.ba", &z[115], x, 0, e, w{"bosna.utic.net.ba", "sava.utic.net.ba", "una.utic.net.ba"}, n, n, n, e, e, f},
1999 {"untz.ba", &z[115], x, 0, e, w{"gradina.untz.ba", "slatina.untz.ba"}, n, n, n, e, e, f},
2000 {"unze.ba", &z[115], x, 0, e, w{"ns1.first-ns.de", "pi.unze.ba", "robotns2.second-ns.de", "robotns3.second-ns.com"}, n, n, n, e, e, f},
2001 {"biz.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2002 {"co.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2003 {"com.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2004 {"gov.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2005 {"info.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2006 {"net.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2007 {"org.bb", &z[133], x, 0, e, w{"bds-tlcm-ns-001.gov.bb", "bds-tlcm-ns-002.gov.bb", "ns1.nic.bb", "ns2.nic.bb", "ns3.nic.bb", "ns4.nic.bb", "ns5.nic.bb"}, n, n, n, e, e, f},
2008 {"store.bb", &z[133], x, 0, e, n, n, n, n, e, e, f},
2009 {"tv.bb", &z[133], x, 0, e, n, n, n, n, e, e, f},
2010 {"ac.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2011 {"com.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2012 {"edu.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2013 {"gov.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2014 {"mil.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2015 {"net.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2016 {"org.bd", &z[140], x, 0, e, w{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, n, e, e, f},
2017 {"gov.bf", &z[151], x, 0, e, w{"ntoo.gov.bf", "oubri.gov.bf"}, n, n, n, e, e, f},
2018 {"0.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2019 {"1.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2020 {"2.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2021 {"3.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2022 {"4.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2023 {"5.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2024 {"6.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2025 {"7.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2026 {"8.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2027 {"9.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2028 {"a.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2029 {"b.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2030 {"c.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2031 {"d.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2032 {"e.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2033 {"f.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2034 {"g.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2035 {"h.bg", &z[152], x, 0, "https://www.register.bg/user/", n, n, n, n, e, e, f},
2036 {"i.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2037 {"j.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2038 {"k.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2039 {"l.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2040 {"m.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2041 {"n.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2042 {"o.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2043 {"p.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2044 {"q.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2045 {"r.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2046 {"s.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2047 {"t.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2048 {"u.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2049 {"v.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2050 {"w.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2051 {"x.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2052 {"y.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2053 {"z.bg", &z[152], x, 0, e, n, n, n, n, e, e, f},
2054 {"biz.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2055 {"cc.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2056 {"com.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2057 {"edu.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2058 {"gov.bh", &z[153], x, 0, e, w{"ns1.gov.bh", "ns2.gov.bh"}, n, n, n, e, e, f},
2059 {"info.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2060 {"net.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2061 {"org.bh", &z[153], x, 0, e, w{"a.bh.centralnic-dns.com", "b.bh.centralnic-dns.com", "c.bh.centralnic-dns.com", "d.bh.centralnic-dns.com"}, n, n, n, e, e, f},
2062 {"co.bi", &z[155], x, 0, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, f},
2063 {"com.bi", &z[155], x, 0, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, f},
2064 {"edu.bi", &z[155], x, 0, e, w{"bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, f},
2065 {"gov.bi", &z[155], x, 0, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, t},
2066 {"info.bi", &z[155], x, 0, e, w{"bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns-bi.ripe.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, t},
2067 {"mo.bi", &z[155], x, 0, e, w{"ns1.hostinger.com", "ns2.hostinger.com", "ns3.hostinger.com", "ns4.hostinger.com"}, n, n, n, e, e, t},
2068 {"net.bi", &z[155], x, 0, e, n, n, n, n, e, e, t},
2069 {"or.bi", &z[155], x, 0, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, f},
2070 {"org.bi", &z[155], x, 0, e, w{"anyns.nic.bi", "bi.cctld.authdns.ripe.net", "ns-bi.afrinic.net", "ns.nic.bi", "ns1.nic.bi"}, n, n, n, e, e, f},
2071 {"ote.bi", &z[155], x, 0, e, n, n, n, n, e, e, t},
2072 {"1x.biz", &z[162], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "1x.biz"}, n, n, e, e, t},
2073 {"auz.biz", &z[162], x, 0, e, w{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, n, e, e, f},
2074 {"asso.bj", &z[163], x, 0, e, w{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, n, e, e, f},
2075 {"barreau.bj", &z[163], x, 0, e, w{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, n, e, e, f},
2076 {"com.bj", &z[163], x, 0, e, w{"ns.cocca.fr", "ns1.nic.bj", "ns2.nic.bj", "pch.nic.bj"}, n, n, n, e, e, f},
2077 {"edu.bj", &z[163], x, 0, e, w{"ns.cocca.fr", "ns1.nic.bj", "ns2.nic.bj", "pch.nic.bj", "pch.nic.fr"}, n, n, n, e, e, f},
2078 {"gouv.bj", &z[163], x, 0, e, w{"ns01.gouv.bj", "ns02.gouv.bj"}, n, n, n, e, e, f},
2079 {"gov.bj", &z[163], x, 0, e, w{"nakayo.leland.bj", "ns1.intnet.bj"}, n, n, n, e, e, f},
2080 {"mil.bj", &z[163], x, 0, e, w{"ns01.gouv.bj", "ns1.jenysas.bj"}, n, n, n, e, e, f},
2081 {"art.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "art.blog"}, n, n, e, e, t},
2082 {"business.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "business.blog"}, n, n, e, e, t},
2083 {"car.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "car.blog"}, n, n, e, e, t},
2084 {"code.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "code.blog"}, n, n, e, e, t},
2085 {"family.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "family.blog"}, n, n, e, e, t},
2086 {"fashion.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "fashion.blog"}, n, n, e, e, t},
2087 {"finance.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "finance.blog"}, n, n, e, e, t},
2088 {"fitness.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "fitness.blog"}, n, n, e, e, t},
2089 {"food.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "food.blog"}, n, n, e, e, t},
2090 {"game.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "game.blog"}, n, n, e, e, t},
2091 {"health.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "health.blog"}, n, n, e, e, t},
2092 {"home.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "home.blog"}, n, n, e, e, t},
2093 {"law.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "law.blog"}, n, n, e, e, t},
2094 {"movie.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "movie.blog"}, n, n, e, e, t},
2095 {"music.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "music.blog"}, n, n, e, e, t},
2096 {"news.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "news.blog"}, n, n, e, e, t},
2097 {"photo.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "photo.blog"}, n, n, e, e, t},
2098 {"poetry.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "poetry.blog"}, n, n, e, e, t},
2099 {"politics.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "politics.blog"}, n, n, e, e, t},
2100 {"school.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "school.blog"}, n, n, e, e, t},
2101 {"science.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "science.blog"}, n, n, e, e, t},
2102 {"sport.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "sport.blog"}, n, n, e, e, t},
2103 {"tech.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "tech.blog"}, n, n, e, e, t},
2104 {"travel.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "travel.blog"}, n, n, e, e, t},
2105 {"video.blog", &z[168], x, 0, e, w{"ns1.automattic.com", "ns2.automattic.com", "ns3.automattic.com", "ns4.automattic.com"}, w{"192.0.78.30", "192.0.78.31", "video.blog"}, n, n, e, e, t},
2106 {"water.blog", &z[168], x, 0, e, w{"ns1.wordpress.com", "ns2.wordpress.com", "ns3.wordpress.com"}, n, n, n, e, e, t},
2107 {"com.bm", &z[172], x, 0, e, n, n, n, n, e, e, f},
2108 {"edu.bm", &z[172], x, 0, e, n, n, n, n, e, e, f},
2109 {"gov.bm", &z[172], x, 0, e, w{"dns1.gov.bm", "dns2.gov.bm", "dns3.gov.bm"}, n, n, n, e, e, f},
2110 {"net.bm", &z[172], x, 0, e, n, n, n, n, e, e, f},
2111 {"org.bm", &z[172], x, 0, e, n, n, n, n, e, e, f},
2112 {"com.bn", &z[175], x, 0, e, w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, e, e, f},
2113 {"edu.bn", &z[175], x, 0, e, w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, e, e, f},
2114 {"gov.bn", &z[175], x, 0, e, w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, e, e, t},
2115 {"net.bn", &z[175], x, 0, e, w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, e, e, f},
2116 {"org.bn", &z[175], x, 0, e, w{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, n, e, e, f},
2117 {"com.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2118 {"edu.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2119 {"gob.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2120 {"gov.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2121 {"int.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2122 {"mil.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2123 {"net.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2124 {"org.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2125 {"tv.bo", &z[178], x, 0, e, n, n, n, n, e, e, f},
2126 {"abc.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2127 {"adm.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2128 {"adv.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2129 {"agr.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2130 {"am.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2131 {"aparecida.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2132 {"app.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2133 {"arq.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2134 {"art.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2135 {"ato.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2136 {"b.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2137 {"belem.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2138 {"bhz.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2139 {"bib.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2140 {"bio.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2141 {"blog.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2142 {"bmd.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2143 {"boavista.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2144 {"bsb.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2145 {"campinas.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2146 {"caxias.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2147 {"cim.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2148 {"cng.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2149 {"cnt.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2150 {"com.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2151 {"coop.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2152 {"coz.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2153 {"curitiba.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2154 {"des.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2155 {"det.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2156 {"dev.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2157 {"ecn.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2158 {"eco.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2159 {"edu.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2160 {"emp.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2161 {"enf.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2162 {"eng.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2163 {"esp.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2164 {"etc.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2165 {"eti.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2166 {"far.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2167 {"flog.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2168 {"floripa.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2169 {"fm.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2170 {"fnd.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2171 {"fortal.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2172 {"fot.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2173 {"foz.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2174 {"fst.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2175 {"g12.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2176 {"geo.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2177 {"ggf.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2178 {"gov.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2179 {"gru.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2180 {"imb.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2181 {"ind.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2182 {"inf.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2183 {"jampa.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2184 {"jor.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2185 {"jus.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2186 {"lel.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2187 {"log.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2188 {"macapa.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2189 {"maceio.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2190 {"manaus.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2191 {"mat.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2192 {"med.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2193 {"mil.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2194 {"mus.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2195 {"natal.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2196 {"net.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2197 {"nom.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2198 {"not.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2199 {"ntr.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2200 {"odo.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2201 {"org.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2202 {"palmas.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2203 {"poa.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2204 {"ppg.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2205 {"pro.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2206 {"psc.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2207 {"psi.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2208 {"qsl.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2209 {"radio.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2210 {"rec.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2211 {"recife.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2212 {"rep.br", &z[194], z[5096:5097], 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2213 {"rio.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2214 {"salvador.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2215 {"sec3.br", &z[194], x, 0, e, n, n, n, n, e, e, t},
2216 {"seg.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2217 {"sjc.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2218 {"slg.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2219 {"srv.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2220 {"taxi.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2221 {"tec.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2222 {"teo.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2223 {"tmp.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2224 {"trd.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2225 {"tur.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2226 {"tv.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2227 {"vet.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2228 {"vix.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2229 {"vlog.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2230 {"wiki.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2231 {"zlg.br", &z[194], x, 0, e, w{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, n, e, e, t},
2232 {"com.bs", &z[201], x, 0, e, n, n, n, n, e, e, f},
2233 {"edu.bs", &z[201], x, 0, e, n, n, n, n, e, e, f},
2234 {"gov.bs", &z[201], x, 0, e, w{"ib-ext1.gov.bs", "ib-ext2.gov.bs", "ibgb-ext1.gov.bs", "ibgb-ext2.gov.bs"}, n, n, n, e, e, f},
2235 {"net.bs", &z[201], x, 0, e, n, n, n, n, e, e, f},
2236 {"org.bs", &z[201], x, 0, e, n, n, n, n, e, e, f},
2237 {"we.bs", &z[201], x, 0, e, w{"ns1.nic.we.bs", "ns2.nic.we.bs"}, n, n, n, e, e, t},
2238 {"com.bt", &z[202], x, 0, e, w{"ns1.druknet.bt", "ns2.druknet.bt", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2239 {"edu.bt", &z[202], x, 0, e, w{"ns1.druknet.bt", "ns2.druknet.bt", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2240 {"gov.bt", &z[202], x, 0, e, w{"ns1.druknet.bt", "ns2.druknet.bt"}, n, n, n, e, e, t},
2241 {"net.bt", &z[202], x, 0, e, w{"ns1.druknet.bt", "ns2.druknet.bt"}, n, n, n, e, e, t},
2242 {"org.bt", &z[202], x, 0, e, w{"ns1.druknet.bt", "ns2.druknet.bt", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2243 {"ac.bw", &z[212], x, 0, e, n, n, n, n, e, e, t},
2244 {"co.bw", &z[212], x, 0, e, n, n, n, n, e, e, f},
2245 {"net.bw", &z[212], x, 0, e, n, n, n, n, e, e, f},
2246 {"org.bw", &z[212], x, 0, e, n, n, n, n, e, e, f},
2247 {"com.by", &z[214], x, 0, e, w{"a1.domain.by", "a2.domain.by"}, n, n, n, e, e, f},
2248 {"gov.by", &z[214], x, 0, e, w{"u1.hoster.by", "u2.hoster.by"}, n, n, n, e, e, f},
2249 {"mil.by", &z[214], x, 0, e, w{"ns1.oac.gov.by", "u1.hoster.by", "u2.hoster.by"}, n, n, n, e, e, f},
2250 {"minsk.by", &z[214], x, 0, e, w{"a1.domain.by", "a2.domain.by"}, n, n, n, e, e, f},
2251 {"net.by", &z[214], x, 0, e, w{"a1.domain.by", "a2.domain.by"}, n, n, n, e, e, f},
2252 {"co.bz", &z[215], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2253 {"com.bz", &z[215], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2254 {"edu.bz", &z[215], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2255 {"gov.bz", &z[215], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2256 {"net.bz", &z[215], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2257 {"org.bz", &z[215], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2258 {"za.bz", &z[215], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net", "ns5.centralnic.net"}, n, n, n, "whois.centralnic.com", e, t},
2259 {"ab.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2260 {"bc.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2261 {"co.ca", &z[217], x, 0x200, e, w{"primary.relay.co.ca", "quaternary.relay.co.ca", "quinary.relay.co.ca", "secondary.relay.co.ca", "senary.relay.co.ca", "tertiary.relay.co.ca"}, n, n, n, "whois.co.ca", e, t},
2262 {"gc.ca", &z[217], x, 0, e, w{"dns1.nrc.ca", "dns2.nrc.ca", "ns1.d-zone.ca", "ns2.d-zone.ca"}, n, n, n, e, e, f},
2263 {"mb.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2264 {"nb.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2265 {"nf.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2266 {"nl.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2267 {"ns.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2268 {"nt.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2269 {"nu.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2270 {"on.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2271 {"pe.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2272 {"qc.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2273 {"sk.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2274 {"yk.ca", &z[217], x, 0, e, n, n, n, n, e, e, f},
2275 {"com.cc", &z[256], x, 0, e, w{"ns-1287.awsdns-32.org", "ns-1613.awsdns-09.co.uk", "ns-472.awsdns-59.com", "ns-680.awsdns-21.net"}, n, n, n, e, e, t},
2276 {"edu.cc", &z[256], x, 0, e, w{"ns1.netdns.co.nz", "ns2.netdns.co.nz"}, n, n, n, e, e, t},
2277 {"net.cc", &z[256], x, 0, e, w{"ns-1028.awsdns-00.org", "ns-1980.awsdns-55.co.uk", "ns-218.awsdns-27.com", "ns-779.awsdns-33.net"}, n, n, n, e, e, t},
2278 {"org.cc", &z[256], x, 0, e, w{"ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, t},
2279 {"ac.cd", &z[257], x, 0, e, n, n, n, n, e, e, t},
2280 {"com.cd", &z[257], x, 0, e, n, n, n, n, e, e, t},
2281 {"edu.cd", &z[257], x, 0, e, n, n, n, n, e, e, t},
2282 {"gouv.cd", &z[257], x, 0, e, n, n, n, n, e, e, t},
2283 {"net.cd", &z[257], x, 0, e, w{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net"}, n, n, n, e, e, f},
2284 {"org.cd", &z[257], x, 0, e, n, n, n, n, e, e, f},
2285 {"ac.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2286 {"aeroport.ci", &z[285], x, 0, e, n, n, n, n, e, e, f},
2287 {"asso.ci", &z[285], x, 0, "https://www.nic.ci/", w{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, n, e, e, t},
2288 {"assoc.ci", &z[285], x, 0, e, n, n, n, n, e, e, t},
2289 {"co.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2290 {"com.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.cctld.authdns.ripe.net", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2291 {"ed.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.cctld.authdns.ripe.net", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2292 {"edu.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2293 {"go.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2294 {"gov.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2295 {"in.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "ns1.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2296 {"int.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2297 {"net.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2298 {"nom.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.cctld.authdns.ripe.net", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2299 {"or.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2300 {"org.ci", &z[285], x, 0, e, w{"any.nic.ci", "censvrns0001.ird.fr", "ci.hosting.nic.fr", "ns-ci.afrinic.net", "ns.nic.ci", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2301 {"presse.ci", &z[285], x, 0, e, w{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, n, e, e, f},
2302 {"biz.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2303 {"co.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2304 {"edu.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2305 {"gen.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2306 {"gov.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2307 {"info.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2308 {"net.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2309 {"org.ck", &z[295], x, 0, e, n, n, n, n, e, e, f},
2310 {"co.cm", &z[306], x, 0, e, w{"a.cm.dyntld.net", "b.cm.dyntld.net", "ns1.nic.cm", "ns2.nic.cm"}, n, n, n, e, e, f},
2311 {"com.cm", &z[306], x, 0, e, w{"a.cm.dyntld.net", "b.cm.dyntld.net", "ns1.nic.cm", "ns2.nic.cm"}, n, n, n, e, e, f},
2312 {"edu.cm", &z[306], x, 0, e, w{"ns1.nic.cm", "ns2.nic.cm"}, w{"85.25.140.105"}, n, n, e, e, t},
2313 {"net.cm", &z[306], x, 0, e, w{"a.cm.dyntld.net", "b.cm.dyntld.net", "ns1.nic.cm", "ns2.nic.cm"}, n, n, n, e, e, f},
2314 {"ac.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2315 {"ah.cn", &z[307], x, 0, "https://www.belizenic.bz/", w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2316 {"bj.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2317 {"com.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2318 {"cq.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2319 {"edu.cn", &z[307], x, 0, e, w{"deneb.dfn.de", "dns.edu.cn", "dns2.edu.cn", "ns2.cernet.net", "ns2.cuhk.hk"}, n, n, n, "whois.edu.cn", e, f},
2320 {"fj.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2321 {"gd.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2322 {"gov.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2323 {"gs.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2324 {"gx.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2325 {"gz.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2326 {"ha.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2327 {"hb.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2328 {"he.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2329 {"hi.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2330 {"hk.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2331 {"hl.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2332 {"hn.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2333 {"jl.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2334 {"js.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2335 {"jx.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2336 {"keyword.cn", &z[307], z[5097:5098], 0, e, w{"ns11.xincache.com", "ns12.xincache.com"}, n, n, n, e, e, t},
2337 {"ln.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2338 {"mil.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn", "ns3.mil.cn", "ns4.mil.cn"}, n, n, n, e, e, t},
2339 {"mo.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2340 {"net.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2341 {"nm.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2342 {"nx.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2343 {"org.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2344 {"qh.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2345 {"sc.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2346 {"sd.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2347 {"sh.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2348 {"sn.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2349 {"sx.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2350 {"tj.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2351 {"tw.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2352 {"xj.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2353 {"xz.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2354 {"yn.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2355 {"zj.cn", &z[307], x, 0, e, w{"a.dns.cn", "b.dns.cn", "c.dns.cn", "cns.cernet.net", "d.dns.cn", "e.dns.cn", "f.dns.cn", "g.dns.cn"}, n, n, n, e, e, f},
2356 {"com.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2357 {"edu.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2358 {"gov.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2359 {"mil.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2360 {"net.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2361 {"nom.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2362 {"org.co", &z[308], x, 0, e, n, n, n, n, e, e, f},
2363 {"4u.com", &z[314], x, 0x200, e, w{"ns1.registry-servers.4u.com", "ns2.registry-servers.4u.com", "ns3.registry-servers.4u.com", "ns4.registry-servers.4u.com", "ns5.registry-servers.4u.com", "ns6.registry-servers.4u.com"}, n, n, n, e, e, t},
2364 {"ae.com", &z[314], x, 0x200, e, w{"asia3.akam.net", "eur2.akam.net", "eur5.akam.net", "ns1-161.akam.net", "ns1-163.akam.net", "usc3.akam.net", "use4.akam.net", "usw1.akam.net"}, n, n, n, e, e, t},
2365 {"africa.com", &z[314], x, 0x200, e, w{"ns2.dns.business", "ns3.dns.business", "ns4.dns.business"}, n, n, n, "whois.centralnic.com", e, f},
2366 {"ar.com", &z[314], x, 0x200, e, w{"pdns07.domaincontrol.com", "pdns08.domaincontrol.com"}, n, n, n, "whois.centralnic.com", e, t},
2367 {"asia.com", &z[314], x, 0x200, e, w{"pdns1.ultradns.net", "pdns2.ultradns.net", "pdns3.ultradns.org", "pdns4.ultradns.org", "pdns5.ultradns.info", "pdns6.ultradns.co.uk"}, w{"72.55.150.59"}, n, n, e, e, f},
2368 {"au.com", &z[314], x, 0x200, e, w{"dns103.kddi.ne.jp", "dns104.kddi.ne.jp", "dnsa01.kddi.ne.jp", "dnsa02.kddi.ne.jp"}, n, n, n, e, e, f},
2369 {"br.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "br.com"}, n, n, "whois.centralnic.com", e, t},
2370 {"cn.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, n, "whois.centralnic.com", e, t},
2371 {"co.com", &z[314], x, 0x200, "https://registry.co.com/", w{"ns1.nic.co.com", "ns2.nic.co.com", "ns3.nic.co.com", "ns4.nic.co.com"}, w{"173.192.115.17"}, n, n, "whois.centralnic.net", e, t},
2372 {"de.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "de.com"}, n, n, "whois.centralnic.com", e, t},
2373 {"eu.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "eu.com"}, n, n, "whois.centralnic.com", e, t},
2374 {"gb.com", &z[314], x, 0x200, e, w{"ns-cloud-a1.googledomains.com", "ns-cloud-a2.googledomains.com", "ns-cloud-a3.googledomains.com", "ns-cloud-a4.googledomains.com"}, n, n, n, "whois.centralnic.com", e, t},
2375 {"gr.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"72.34.38.11"}, n, n, "whois.centralnic.com", e, f},
2376 {"hk.com", &z[314], x, 0x200, e, w{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, n, "whois.registry.hk.com", e, f},
2377 {"hu.com", &z[314], x, 0x200, e, w{"ns3.dns.com", "ns4.dns.com"}, n, n, n, "whois.centralnic.com", e, t},
2378 {"jpn.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "jpn.com"}, n, n, "whois.centralnic.com", e, t},
2379 {"kr.com", &z[314], x, 0x200, e, w{"jm1.dns.com", "jm2.dns.com"}, n, n, n, "whois.centralnic.com", e, t},
2380 {"mex.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, n, e, e, f},
2381 {"no.com", &z[314], x, 0x200, e, w{"pdns07.domaincontrol.com", "pdns08.domaincontrol.com"}, n, n, n, "whois.centralnic.com", e, t},
2382 {"nv.com", &z[314], x, 0x200, e, w{"a.root-servers.nv.com", "b.root-servers.nv.com", "c.root-servers.nv.com", "d.root-servers.nv.com", "e.root-servers.nv.com", "f.root-servers.nv.com", "g.root-servers.nv.com"}, w{"205.159.223.111", "hosting.gi.net"}, n, n, e, e, f},
2383 {"pty-ltd.com", &z[314], x, 0x200, e, w{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, n, e, e, f},
2384 {"qb.com", &z[314], x, 0x200, e, w{"betty.ns.cloudflare.com", "scott.ns.cloudflare.com"}, n, n, n, e, e, f},
2385 {"qc.com", &z[314], x, 0x200, e, w{"pdns07.domaincontrol.com", "pdns08.domaincontrol.com"}, n, n, n, "whois.centralnic.com", e, t},
2386 {"ru.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"141.8.226.34"}, n, n, "whois.centralnic.com", e, t},
2387 {"sa.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"141.8.226.34"}, n, n, "whois.centralnic.com", e, t},
2388 {"se.com", &z[314], x, 0x200, e, w{"ns1.perf1.com", "ns2.perf1.fr", "ns3.perf1.eu", "ns4.perf1.de", "ns5.perf1.asia"}, n, n, n, "whois.centralnic.com", e, t},
2389 {"uk.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "uk.com"}, n, n, "whois.centralnic.com", e, t},
2390 {"ukots.com", &z[314], x, 0, e, w{"ns43.domaincontrol.com", "ns44.domaincontrol.com"}, n, n, n, e, e, t},
2391 {"us.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "us.com"}, n, n, "whois.centralnic.com", e, t},
2392 {"uy.com", &z[314], x, 0x200, e, w{"ns49.domaincontrol.com", "ns50.domaincontrol.com"}, n, n, n, "whois.centralnic.com", e, t},
2393 {"za.com", &z[314], x, 0x200, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"141.8.226.34"}, n, n, "whois.centralnic.com", e, t},
2394 {"de.cool", &z[330], x, 0, e, w{"jake.ns.cloudflare.com", "jill.ns.cloudflare.com"}, w{"2a00:f48:2000:affe::50", "91.216.248.20", "91.216.248.21", "91.216.248.22"}, n, n, e, e, t},
2395 {"ac.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, f},
2396 {"co.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, f},
2397 {"ed.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, t},
2398 {"eu.cr", &z[339], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "eu.cr"}, n, n, e, e, t},
2399 {"fi.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, f},
2400 {"go.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, f},
2401 {"or.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, f},
2402 {"sa.cr", &z[339], x, 0, e, w{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, n, e, e, f},
2403 {"co.cu", &z[349], x, 0, e, w{"ns3.etecsa.net", "ns3.etecsa.net.cu", "ns4.etecsa.net", "ns4.etecsa.net.cu", "ns5.etecsa.net"}, n, n, n, e, e, f},
2404 {"com.cu", &z[349], x, 0, e, w{"canada.cuba.cu", "ns.ceniai.net.cu", "ns.citmatel.com.cu"}, n, n, n, e, e, f},
2405 {"cuba.cu", &z[349], x, 0, e, n, n, n, n, e, e, f},
2406 {"cyt.cu", &z[349], x, 0, e, w{"mail1.tur.cu", "mail2.tur.cu", "ns1.tur.cu"}, n, n, n, e, e, f},
2407 {"edu.cu", &z[349], x, 0, e, w{"canada.cuba.cu", "cu.cctld.authdns.ripe.net", "ns.ceniai.net.cu", "ns.citmatel.com.cu", "rip.psg.com"}, n, n, n, e, e, f},
2408 {"get.cu", &z[349], x, 0, e, w{"mail1.tur.cu", "mail2.tur.cu", "ns1.tur.cu"}, n, n, n, e, e, f},
2409 {"gov.cu", &z[349], x, 0, e, n, n, n, n, e, e, f},
2410 {"inf.cu", &z[349], x, 0, e, n, n, n, n, e, e, f},
2411 {"net.cu", &z[349], x, 0, e, n, n, n, n, e, e, f},
2412 {"org.cu", &z[349], x, 0, e, n, n, n, n, e, e, f},
2413 {"tur.cu", &z[349], x, 0, e, w{"ns.ceniai.net.cu", "ns1.g4its.com", "ns1.tur.cu", "ns2.g4its.com", "ns2.tur.cu", "ns3.tur.cu", "ns4.tur.cu", "ns5.tur.cu"}, n, n, n, e, e, f},
2414 {"com.cv", &z[351], x, 0, e, n, n, n, n, e, e, f},
2415 {"edu.cv", &z[351], x, 0, e, n, n, n, n, e, e, t},
2416 {"gov.cv", &z[351], x, 0, e, w{"ns1.gov.cv", "ns2.gov.cv"}, n, n, n, e, e, f},
2417 {"int.cv", &z[351], x, 0, e, n, n, n, n, e, e, f},
2418 {"net.cv", &z[351], x, 0, e, n, n, n, n, e, e, f},
2419 {"nome.cv", &z[351], x, 0, e, n, n, n, n, e, e, f},
2420 {"org.cv", &z[351], x, 0, e, n, n, n, n, e, e, f},
2421 {"publ.cv", &z[351], x, 0, e, n, n, n, n, e, e, f},
2422 {"com.cw", &z[352], x, 0, e, n, n, n, n, e, e, f},
2423 {"net.cw", &z[352], x, 0, e, n, n, n, n, e, e, f},
2424 {"com.cx", &z[353], x, 0, e, w{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, t},
2425 {"edu.cx", &z[353], x, 0, e, w{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, t},
2426 {"gov.cx", &z[353], x, 0, e, w{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
2427 {"net.cx", &z[353], x, 0, e, w{"ns.anycast.nic.cx"}, n, n, n, e, e, t},
2428 {"org.cx", &z[353], x, 0, e, w{"ns.anycast.nic.cx"}, n, n, n, e, e, t},
2429 {"ac.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2430 {"biz.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2431 {"com.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2432 {"ekloges.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2433 {"gov.cy", &z[354], x, 0, e, w{"dns.cit.cornell.edu", "ns01.gov.cy", "ns02.gov.cy", "sns0.grnet.gr", "sns1.grnet.gr"}, n, n, n, e, e, f},
2434 {"ltd.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2435 {"name.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2436 {"net.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2437 {"org.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2438 {"parliament.cy", &z[354], x, 0, e, w{"ns01.gov.cy", "ns02.gov.cy"}, n, n, n, e, e, f},
2439 {"press.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2440 {"pro.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2441 {"tm.cy", &z[354], x, 0, e, w{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns31.rcode0.net", "ns4.apnic.net"}, n, n, n, e, e, f},
2442 {"co.cz", &z[357], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
2443 {"1x.de", &z[368], x, 0x200, e, w{"ns1.dev.kv.de", "ns2.dev.kv.de"}, w{"1x.de", "95.217.58.108"}, n, n, e, e, t},
2444 {"co.de", &z[368], x, 0, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "co.de"}, n, n, "whois.co.de", e, t},
2445 {"com.de", &z[368], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "com.de"}, n, n, "whois.centralnic.com", e, f},
2446 {"biz.dk", &z[397], x, 0, e, w{"dns2000.euro-isp.net", "dns2001.euro-isp.net", "mail.digitalmarketing.net", "ns.digitalmarketing.net", "ns1.dk.org", "post.digitalmarketing.net", "root-dns.euro-isp.net"}, n, n, n, e, e, f},
2447 {"co.dk", &z[397], x, 0, e, w{"dns2000.euro-isp.net", "dns2001.euro-isp.net", "mail.digitalmarketing.net", "ns.digitalmarketing.net", "ns1.dk.org", "post.digitalmarketing.net", "root-dns.euro-isp.net"}, n, n, n, e, e, f},
2448 {"co.dm", &z[398], x, 0, e, w{"ns.blacknightsolutions.com", "ns1.uniregistry.net", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns34.cdns.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
2449 {"com.dm", &z[398], x, 0, e, w{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, n, e, e, f},
2450 {"edu.dm", &z[398], x, 0, e, w{"ns.blacknightsolutions.com", "ns1.uniregistry.net", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns34.cdns.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
2451 {"gov.dm", &z[398], x, 0, e, w{"ns.blacknightsolutions.com", "ns1.uniregistry.net", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns34.cdns.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
2452 {"net.dm", &z[398], x, 0, e, w{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, n, e, e, f},
2453 {"org.dm", &z[398], x, 0, e, w{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, n, e, e, f},
2454 {"art.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2455 {"com.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2456 {"edu.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2457 {"gob.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2458 {"gov.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2459 {"mil.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2460 {"net.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2461 {"org.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2462 {"sid.do", &z[401], x, 0, e, n, n, n, n, e, e, t},
2463 {"sld.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2464 {"web.do", &z[401], x, 0, e, w{"a.lactld.org", "ns.nic.do", "ns1.nic.do", "ns2.nic.do", "ns3.nic.mx", "ns4.nic.do", "ns5.nic.do", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2465 {"art.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2466 {"asso.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2467 {"com.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2468 {"edu.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2469 {"gov.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2470 {"net.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2471 {"org.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2472 {"pol.dz", &z[425], x, 0, e, w{"ns1.nic.dz", "ns2.nic.dz"}, n, n, n, e, e, f},
2473 {"com.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2474 {"edu.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2475 {"fin.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2476 {"gob.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, t},
2477 {"gov.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2478 {"info.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2479 {"med.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2480 {"mil.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2481 {"net.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2482 {"org.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2483 {"pro.ec", &z[428], x, 0, e, w{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, n, e, e, f},
2484 {"co.ee", &z[434], x, 0, e, w{"ns.elkdata.ee", "ns2.elkdata.ee"}, n, n, n, e, e, f},
2485 {"com.ee", &z[434], x, 0, e, n, n, n, n, e, e, f},
2486 {"edu.ee", &z[434], x, 0, e, w{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, n, e, e, f},
2487 {"fie.ee", &z[434], x, 0, e, n, n, n, n, e, e, f},
2488 {"gov.ee", &z[434], x, 0, e, w{"ans2.aso.ee", "company.e-resident.gov.ee", "ns.gov.ee"}, n, n, n, e, e, f},
2489 {"hiiumaa.ee", &z[434], x, 0, e, w{"ns.zone.eu", "ns2.zone.ee", "ns3.zonedata.net"}, w{"217.146.69.46"}, n, n, e, e, f},
2490 {"kul.ee", &z[434], x, 0, e, w{"ans2.aso.ee", "ns1.rmit.ee", "ns2.rmit.ee"}, n, n, n, e, e, f},
2491 {"med.ee", &z[434], x, 0, e, n, n, n, n, e, e, t},
2492 {"org.ee", &z[434], x, 0, e, w{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, n, e, e, f},
2493 {"parnu.ee", &z[434], x, 0, e, w{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, n, e, e, f},
2494 {"parnumaa.ee", &z[434], x, 0, e, w{"ns.elkdata.ee", "ns2.elkdata.ee", "ns3.elkdata.net"}, n, n, n, e, e, f},
2495 {"polvamaa.ee", &z[434], x, 0, e, w{"ns.zone.eu", "ns2.zone.ee", "ns3.zonedata.net"}, n, n, n, e, e, f},
2496 {"pri.ee", &z[434], x, 0, e, n, n, n, n, e, e, f},
2497 {"tartu.ee", &z[434], x, 0, e, w{"ns.eenet.ee", "ns2.eenet.ee"}, n, n, n, e, e, f},
2498 {"com.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2499 {"edu.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2500 {"eun.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2501 {"gov.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2502 {"info.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, f},
2503 {"mil.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "rip.psg.com"}, n, n, n, e, e, f},
2504 {"name.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2505 {"net.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2506 {"org.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com", "www.frcu.eun.eg"}, n, n, n, e, e, f},
2507 {"sci.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2508 {"sport.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, t},
2509 {"tv.eg", &z[435], x, 0, e, w{"frcu.eun.eg", "ns.idsc.gov.eg", "rip.psg.com"}, n, n, n, e, e, f},
2510 {"com.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, t},
2511 {"edu.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, f},
2512 {"gov.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, f},
2513 {"ind.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "sawaold.noc.net.er", "zaranew.noc.net.er", "zaraold.noc.net.er"}, n, n, n, e, e, f},
2514 {"mil.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "sawaold.noc.net.er", "zaranew.noc.net.er", "zaraold.noc.net.er"}, n, n, n, e, e, f},
2515 {"net.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, f},
2516 {"org.er", &z[446], x, 0, e, w{"er.cctld.authdns.ripe.net", "ns0.punchdown.org", "ns1.punchdown.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, n, e, e, f},
2517 {"com.es", &z[449], x, 0, e, w{"c.nic.es", "fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, n, e, e, f},
2518 {"edu.es", &z[449], x, 0, e, w{"c.nic.es", "fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, n, e, e, f},
2519 {"gob.es", &z[449], x, 0, e, w{"c.nic.es", "fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, n, e, e, f},
2520 {"nom.es", &z[449], x, 0, e, w{"c.nic.es", "fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, n, e, e, f},
2521 {"org.es", &z[449], x, 0, e, w{"c.nic.es", "fnicdos.rediris.es", "g.nic.es", "h.nic.es", "n3ns.nic.es", "ns3.nic.mx"}, n, n, n, e, e, f},
2522 {"biz.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2523 {"com.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2524 {"edu.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2525 {"gov.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2526 {"info.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2527 {"name.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2528 {"net.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2529 {"org.et", &z[453], x, 0, e, w{"a.nic.et", "b.nic.et"}, n, n, n, e, e, f},
2530 {"24.eu", &z[455], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "24.eu"}, n, n, e, e, t},
2531 {"ecb.eu", &z[455], x, 0, e, w{"auth02.ns.de.uu.net", "auth52.ns.de.uu.net", "ns1.de.colt.net", "ns8.colt.net"}, n, n, n, e, e, f},
2532 {"europa.eu", &z[455], x, 0, e, w{"ns1.bt.net", "ns1bru.europa.eu", "ns1lux.europa.eu", "ns2bru.europa.eu", "ns2eu.bt.net", "ns2lux.europa.eu", "ns3bru.europa.eu", "ns3lux.europa.eu", "ns4az1.europa.eu"}, n, n, n, e, e, f},
2533 {"ac.fj", &z[497], x, 0, e, n, n, n, n, e, e, t},
2534 {"biz.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2535 {"com.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2536 {"gov.fj", &z[497], x, 0, e, w{"dnssecondary.auth-servers.net", "itcns1.gov.fj", "itcns2.gov.fj", "ns-ext.vix.com", "tabua.tfl.com.fj"}, n, n, n, e, e, t},
2537 {"info.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2538 {"mil.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2539 {"name.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2540 {"net.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2541 {"org.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2542 {"pro.fj", &z[497], x, 0, e, n, n, n, n, e, e, f},
2543 {"school.fj", &z[497], x, 0, e, w{"drua.tfl.com.fj", "ns-ext.isc.org", "tabua.tfl.com.fj"}, n, n, n, e, e, t},
2544 {"ac.fk", &z[498], x, 0, e, n, n, n, n, e, e, f},
2545 {"co.fk", &z[498], x, 0, e, n, n, n, n, e, e, f},
2546 {"gov.fk", &z[498], x, 0, e, w{"ns1.horizon.net.fk", "ns2.horizon.net.fk"}, n, n, n, e, e, f},
2547 {"net.fk", &z[498], x, 0, e, n, n, n, n, e, e, f},
2548 {"nom.fk", &z[498], x, 0, e, n, n, n, n, e, e, f},
2549 {"org.fk", &z[498], x, 0, e, n, n, n, n, e, e, f},
2550 {"0.fm", &z[507], x, 0, e, w{"ns1.bb-online.net", "ns2.bb-online.net"}, w{"0.fm", "139.162.244.72"}, n, n, e, e, t},
2551 {"2.fm", &z[507], x, 0, e, w{"ns1.idnz.net", "ns2.idnz.net", "ns3.idnz.net"}, w{"93.190.235.135"}, n, n, e, e, t},
2552 {"4.fm", &z[507], x, 0, e, w{"ns1.bb-online.net", "ns2.bb-online.net"}, w{"139.162.244.72", "4.fm"}, n, n, e, e, t},
2553 {"6.fm", &z[507], x, 0, e, w{"ns1.bb-online.net", "ns2.bb-online.net"}, w{"139.162.244.72", "6.fm"}, n, n, e, e, t},
2554 {"8.fm", &z[507], x, 0, e, w{"ns1.bb-online.net", "ns2.bb-online.net"}, w{"139.162.244.72", "8.fm"}, n, n, e, e, t},
2555 {"radio.fm", &z[507], x, 0, e, w{"a.nic.fm", "b.nic.fm", "c.nic.fm", "d.nic.fm"}, n, n, n, e, e, t},
2556 {"aero.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2557 {"biz.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2558 {"co.fo", &z[508], x, 0, e, w{"ns1.cctld.com", "ns2.cctld.com"}, n, n, n, e, e, f},
2559 {"com.fo", &z[508], x, 0, e, w{"ns1.cctld.com", "ns2.cctld.com"}, n, n, n, e, e, f},
2560 {"coop.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2561 {"edu.fo", &z[508], x, 0, e, w{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, n, e, e, f},
2562 {"flp.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2563 {"ftp.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2564 {"gov.fo", &z[508], x, 0, e, w{"ns1.olivant.fo", "ns2.olivant.fo"}, n, n, n, e, e, f},
2565 {"info.fo", &z[508], x, 0, e, w{"ns1.voodoo.com", "ns2.voodoo.com"}, w{"192.64.147.231"}, n, n, e, e, f},
2566 {"int.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2567 {"internet.fo", &z[508], x, 0, e, w{"ns1.olivant.fo", "ns2.olivant.fo"}, n, n, n, e, e, f},
2568 {"irc.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2569 {"mail.fo", &z[508], x, 0, e, w{"ns1.olivant.fo", "ns2.olivant.fo"}, n, n, n, e, e, f},
2570 {"mil.fo", &z[508], x, 0, e, w{"ns1.afriregister.com", "ns3.afriregister.com"}, n, n, n, e, e, f},
2571 {"museum.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2572 {"name.fo", &z[508], x, 0, e, w{"ns1.gratisdns.dk", "ns2.gratisdns.dk"}, n, n, n, e, e, f},
2573 {"org.fo", &z[508], x, 0, e, w{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, n, e, e, f},
2574 {"telenet.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2575 {"telnet.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2576 {"web.fo", &z[508], x, 0, e, n, n, n, n, e, e, f},
2577 {"www.fo", &z[508], x, 0, e, w{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, n, e, e, f},
2578 {"aeroport.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2579 {"asso.fr", &z[519], x, 0x800, e, n, n, n, n, e, e, f},
2580 {"avocat.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2581 {"chambagri.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2582 {"chirurgiens-dentistes.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2583 {"com.fr", &z[519], x, 0x800, e, n, n, n, n, e, e, f},
2584 {"experts-comptables.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2585 {"geometre-expert.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2586 {"gouv.fr", &z[519], x, 0, e, n, n, n, n, e, e, f},
2587 {"medecin.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2588 {"nom.fr", &z[519], x, 0, e, n, n, n, n, e, e, f},
2589 {"notaires.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2590 {"pharmacien.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2591 {"port.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2592 {"prd.fr", &z[519], x, 0, e, w{"ns1.renater.fr", "ns2.renater.fr", "ns4.cnrs.fr"}, n, n, n, e, e, f},
2593 {"presse.fr", &z[519], x, 0, e, n, n, n, n, e, e, f},
2594 {"tm.fr", &z[519], x, 0x800, e, n, n, n, n, e, e, f},
2595 {"veterinaire.fr", &z[519], x, 0, e, w{"ns1.smallregistry.net", "ns2.smallregistry.net", "ns3.smallregistry.net", "ns4.smallregistry.net"}, n, n, n, "whois.smallregistry.net", e, t},
2596 {"ac.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2597 {"aeroport.ga", &z[534], x, 0, e, w{"ns81.rookdns.com", "ns82.rookdns.com"}, w{"141.8.224.221"}, n, n, e, e, f},
2598 {"asso.ga", &z[534], x, 0, e, w{"ns1.aninf.ga", "ns2.aninf.ga", "ns3.aninf.ga"}, n, n, n, e, e, f},
2599 {"co.ga", &z[534], x, 0, e, w{"isp1.ib.ga", "isp2.ib.ga", "ns.ripe.net", "nsi1.inet.ga", "nsi2.inet.ga"}, n, n, n, e, e, f},
2600 {"com.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2601 {"ed.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2602 {"edu.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2603 {"go.ga", &z[534], x, 0, e, w{"ns81.rookdns.com", "ns82.rookdns.com"}, w{"141.8.224.221"}, n, n, e, e, f},
2604 {"int.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2605 {"net.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2606 {"or.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2607 {"org.ga", &z[534], x, 0, e, w{"isp1.ib.ga", "isp2.ib.ga", "nsi1.inet.ga", "nsi2.inet.ga"}, n, n, n, e, e, f},
2608 {"presse.ga", &z[534], x, 0, e, n, n, n, n, e, e, f},
2609 {"hmg.gb", &z[545], x, 0x800, e, n, n, n, n, e, e, f},
2610 {"com.gd", &z[548], x, 0, e, n, n, n, n, e, e, t},
2611 {"edu.gd", &z[548], x, 0, e, w{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, n, e, e, f},
2612 {"gov.gd", &z[548], x, 0, e, w{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, n, e, e, f},
2613 {"mlt.gd", &z[548], x, 0, e, n, n, n, n, e, e, f},
2614 {"net.gd", &z[548], x, 0, e, n, n, n, n, e, e, f},
2615 {"org.gd", &z[548], x, 0, e, n, n, n, n, e, e, f},
2616 {"sci.gd", &z[548], x, 0, e, n, n, n, n, e, e, f},
2617 {"com.ge", &z[550], x, 0, e, w{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, n, e, e, f},
2618 {"edu.ge", &z[550], x, 0, e, w{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, n, e, e, f},
2619 {"gov.ge", &z[550], x, 0, e, w{"ns1.gov.ge", "ns2.gov.ge", "ns3.gov.ge"}, n, n, n, e, e, f},
2620 {"mil.ge", &z[550], x, 0, e, n, n, n, n, e, e, f},
2621 {"net.ge", &z[550], x, 0, e, w{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, n, e, e, f},
2622 {"org.ge", &z[550], x, 0, e, w{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, n, e, e, f},
2623 {"pvt.ge", &z[550], x, 0, e, w{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, n, e, e, f},
2624 {"school.ge", &z[550], x, 0, e, w{"ns.nic.ge", "ns2.nic.ge"}, n, n, n, e, e, t},
2625 {"24.gg", &z[558], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "24.gg"}, n, n, e, e, t},
2626 {"ac.gg", &z[558], x, 0, e, w{"nsa.dnsnode.net", "nsp.dnsnode.net", "nsu.dnsnode.net"}, n, n, n, e, e, f},
2627 {"co.gg", &z[558], x, 0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, n, e, e, f},
2628 {"eu.gg", &z[558], x, 0x200, e, w{"ns1.dan.com", "ns2.dan.com"}, n, n, n, e, e, t},
2629 {"gov.gg", &z[558], x, 0, e, w{"dns1.name-s.net", "dns2.name-s.net", "dns3.mtgsy.com", "dns4.mtgsy.com", "gsy1.ns.mtgsy.com"}, n, n, n, e, e, f},
2630 {"net.gg", &z[558], x, 0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, n, e, e, f},
2631 {"org.gg", &z[558], x, 0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, n, e, e, f},
2632 {"sch.gg", &z[558], x, 0, e, w{"dns1.name-s.net", "dns2.name-s.net", "dns3.mtgsy.com", "dns4.mtgsy.com", "gsy1.ns.mtgsy.com"}, n, n, n, e, e, f},
2633 {"tr.gg", &z[558], x, 0, e, w{"ns01.webme.com", "ns02.webme.com"}, w{"193.238.27.36"}, n, n, e, e, f},
2634 {"tv.gg", &z[558], x, 0x200, e, n, n, n, n, e, e, t},
2635 {"web.gg", &z[558], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "web.gg"}, n, n, e, e, t},
2636 {"com.gh", &z[560], x, 0, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, e, f},
2637 {"edu.gh", &z[560], x, 0, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, e, f},
2638 {"gov.gh", &z[560], x, 0, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, e, f},
2639 {"mil.gh", &z[560], x, 0, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, e, f},
2640 {"net.gh", &z[560], x, 0, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, e, t},
2641 {"org.gh", &z[560], x, 0, e, w{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, n, e, e, f},
2642 {"com.gi", &z[561], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2643 {"edu.gi", &z[561], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2644 {"gov.gi", &z[561], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2645 {"ltd.gi", &z[561], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2646 {"mod.gi", &z[561], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2647 {"org.gi", &z[561], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
2648 {"co.gl", &z[566], x, 0, e, w{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, n, e, e, f},
2649 {"com.gl", &z[566], x, 0, e, w{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, n, e, e, f},
2650 {"edu.gl", &z[566], x, 0, e, w{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, n, e, e, f},
2651 {"net.gl", &z[566], x, 0, e, w{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, n, e, e, f},
2652 {"org.gl", &z[566], x, 0, e, w{"a.nuuk.nic.gl", "d.nic.gl"}, n, n, n, e, e, f},
2653 {"ac.gn", &z[579], x, 0, e, n, n, n, n, e, e, f},
2654 {"co.gn", &z[579], x, 0, e, n, n, n, n, e, e, f},
2655 {"com.gn", &z[579], x, 0, e, n, n, n, n, e, e, t},
2656 {"gov.gn", &z[579], x, 0, e, n, n, n, n, e, e, f},
2657 {"net.gn", &z[579], x, 0, e, n, n, n, n, e, e, f},
2658 {"org.gn", &z[579], x, 0, e, n, n, n, n, e, e, f},
2659 {"24.gp", &z[593], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, n, n, n, e, e, t},
2660 {"asia.gp", &z[593], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "asia.gp"}, n, n, e, e, t},
2661 {"asso.gp", &z[593], x, 0, e, w{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, e, e, f},
2662 {"co.gp", &z[593], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "co.gp"}, n, n, e, e, t},
2663 {"com.gp", &z[593], x, 0, e, w{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, e, e, f},
2664 {"edu.gp", &z[593], x, 0, e, w{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, e, e, t},
2665 {"eu.gp", &z[593], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "eu.gp"}, n, n, e, e, t},
2666 {"mobi.gp", &z[593], x, 0, e, w{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, e, e, f},
2667 {"net.gp", &z[593], x, 0, e, w{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, e, e, f},
2668 {"online.gp", &z[593], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "online.gp"}, n, n, e, e, t},
2669 {"org.gp", &z[593], x, 0, e, w{"ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, n, e, e, f},
2670 {"com.gr", &z[595], x, 0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, e, f},
2671 {"edu.gr", &z[595], x, 0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, e, f},
2672 {"gov.gr", &z[595], x, 0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, e, f},
2673 {"net.gr", &z[595], x, 0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, e, f},
2674 {"org.gr", &z[595], x, 0, e, w{"estia.ics.forth.gr", "gr-at.ics.forth.gr", "gr-c.ics.forth.gr", "gr-d.ics.forth.gr", "grdns-m.ics.forth.gr", "grdns.ics.forth.gr"}, n, n, n, e, e, f},
2675 {"com.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2676 {"edu.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2677 {"gob.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2678 {"ind.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2679 {"mil.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2680 {"net.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2681 {"org.gt", &z[605], x, 0, e, w{"a.lactld.org", "gt.anycastdns.cz", "ns-cz.gt", "ns.dns.br", "pch.gt", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
2682 {"com.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2683 {"edu.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2684 {"gov.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2685 {"guam.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2686 {"net.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2687 {"org.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, f},
2688 {"web.gu", &z[606], x, 0, e, w{"gold.uog.edu", "green.uog.edu", "gu.cctld.authdns.ripe.net", "phloem.uoregon.edu"}, n, n, n, e, e, t},
2689 {"co.gy", &z[616], x, 0, e, w{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, n, e, e, f},
2690 {"com.gy", &z[616], x, 0, e, w{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, n, e, e, f},
2691 {"net.gy", &z[616], x, 0, e, w{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, n, e, e, f},
2692 {"org.gy", &z[616], x, 0, e, w{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, n, e, e, t},
2693 {"com.hk", &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, f},
2694 {"edu.hk", &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, f},
2695 {"gov.hk", &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, f},
2696 {"idv.hk", &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, f},
2697 {"inc.hk", &z[639], x, 0, e, w{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, n, "whois.registry.hk.com", e, f},
2698 {"ltd.hk", &z[639], x, 0, e, w{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, n, "whois.registry.hk.com", e, f},
2699 {"net.hk", &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, f},
2700 {"org.hk", &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, f},
2701 {"xn--55qx5d.hk" /* 公司.hk */, &z[639], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
2702 {"com.hn", &z[642], x, 0, e, w{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, e, e, f},
2703 {"edu.hn", &z[642], x, 0, e, w{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, e, e, t},
2704 {"gob.hn", &z[642], x, 0, e, w{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, e, e, t},
2705 {"mil.hn", &z[642], x, 0, e, w{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, e, e, t},
2706 {"net.hn", &z[642], x, 0, e, w{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, e, e, f},
2707 {"org.hn", &z[642], x, 0, e, w{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, n, e, e, f},
2708 {"com.hr", &z[665], x, 0, e, w{"dns-ez-1.carnet.hr", "dns1.com.hr", "dns2.com.hr"}, n, n, n, e, e, f},
2709 {"from.hr", &z[665], x, 0, e, w{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns2.from.hr"}, n, n, n, e, e, f},
2710 {"iz.hr", &z[665], x, 0, e, w{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns1.iz.hr", "dns2.from.hr", "dns2.iz.hr"}, n, n, n, e, e, f},
2711 {"name.hr", &z[665], x, 0, e, w{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns1.name.hr", "dns2.from.hr", "dns2.name.hr"}, n, n, n, e, e, f},
2712 {"adult.ht", &z[667], x, 0x1, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2713 {"art.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2714 {"asso.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2715 {"com.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2716 {"coop.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2717 {"edu.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2718 {"firm.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2719 {"gouv.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2720 {"info.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2721 {"med.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2722 {"net.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2723 {"org.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2724 {"perso.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2725 {"pol.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2726 {"pro.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2727 {"rel.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2728 {"shop.ht", &z[667], x, 0, e, w{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, n, e, e, f},
2729 {"2000.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2730 {"ac.hu", &z[669], x, 0, e, n, n, n, n, e, e, f},
2731 {"agrar.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2732 {"bolt.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2733 {"casino.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2734 {"city.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2735 {"co.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu", "ns12.communitydns.net"}, n, n, n, e, e, f},
2736 {"edu.hu", &z[669], x, 0, e, w{"kubiac.iif.hu", "ns2.iif.hu", "ns2.sztaki.hbone.hu"}, n, n, n, e, e, f},
2737 {"erotica.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2738 {"erotika.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2739 {"film.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2740 {"forum.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2741 {"games.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2742 {"gov.hu", &z[669], x, 0, e, w{"adns0.gov.hu", "adns1.gov.hu", "adns2.gov.hu"}, n, n, n, e, e, f},
2743 {"hotel.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2744 {"info.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2745 {"ingatlan.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2746 {"jogasz.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2747 {"konyvelo.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2748 {"lakas.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2749 {"media.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2750 {"news.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2751 {"org.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2752 {"priv.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2753 {"reklam.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2754 {"sex.hu", &z[669], x, 0x1, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2755 {"shop.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2756 {"sport.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2757 {"suli.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2758 {"szex.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2759 {"tm.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2760 {"tozsde.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2761 {"utazas.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2762 {"video.hu", &z[669], x, 0, e, w{"a.hu", "b.hu", "c.hu", "d.hu", "ns-s.nic.hu"}, n, n, n, e, e, f},
2763 {"ac.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2764 {"biz.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2765 {"co.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2766 {"desa.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, t},
2767 {"go.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2768 {"mi.id", &z[677], x, 0, e, n, n, n, n, e, e, t},
2769 {"mil.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2770 {"my.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2771 {"net.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2772 {"or.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2773 {"sch.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2774 {"web.id", &z[677], x, 0, e, w{"b.dns.id", "c.dns.id", "d.dns.id", "e.dns.id"}, n, n, n, e, e, f},
2775 {"com.ie", &z[679], x, 0x800, e, n, n, n, n, e, e, f},
2776 {"gov.ie", &z[679], x, 0, e, w{"cwext.gn.gov.ie", "ext3.gn.gov.ie", "gbext.gn.gov.ie"}, n, n, n, e, e, f},
2777 {"net.ie", &z[679], x, 0x800, e, n, n, n, n, e, e, f},
2778 {"nli.ie", &z[679], x, 0, e, w{"ns.heanet.ie", "vax1.baker.ie"}, n, n, n, e, e, f},
2779 {"org.ie", &z[679], x, 0x800, e, n, n, n, n, e, e, f},
2780 {"ac.il", &z[684], x, 0, e, w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2781 {"co.il", &z[684], x, 0, "https://www.isoc.org.il/domain-name-registry", w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2782 {"gov.il", &z[684], x, 0, e, w{"dns3.gov.il", "ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2783 {"idf.il", &z[684], x, 0, e, w{"asia3.akam.net", "asia4.akam.net", "dns3.gov.il", "eur2.akam.net", "eur6.akam.net", "ns1-111.akam.net", "ns1-69.akam.net", "use4.akam.net", "usw2.akam.net"}, n, n, n, e, e, f},
2784 {"k12.il", &z[684], x, 0, e, w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2785 {"muni.il", &z[684], x, 0, e, w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2786 {"net.il", &z[684], x, 0, "https://www.isoc.org.il/domain-name-registry", w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2787 {"org.il", &z[684], x, 0, "https://www.isoc.org.il/domain-name-registry", w{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns3.ns.il", "ns4.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il"}, n, n, n, e, e, f},
2788 {"ac.im", &z[685], x, 0, e, n, n, n, n, e, e, f},
2789 {"co.im", &z[685], z[5098:5100], 0, e, n, n, n, n, e, e, f},
2790 {"com.im", &z[685], x, 0, e, n, n, n, n, e, e, f},
2791 {"gov.im", &z[685], x, 0, e, w{"barney.advsys.co.uk", "hoppy.iom.com", "pebbles.iom.com"}, n, n, n, e, e, f},
2792 {"net.im", &z[685], x, 0, e, n, n, n, n, e, e, f},
2793 {"org.im", &z[685], x, 0, e, n, n, n, n, e, e, f},
2794 {"ac.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.ncst.ernet.in", e, f},
2795 {"co.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.inregistry.net", e, f},
2796 {"edu.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.ncst.ernet.in", e, f},
2797 {"ernet.in", &z[690], x, 0, e, w{"dns.ernet.in", "dns1.ernet.in", "dns2.ernet.in", "dns3.ernet.in", "dns4.ernet.in", "e-eihq01.eis.ernet.in", "e-eihq02.eis.ernet.in"}, n, n, n, e, e, t},
2798 {"firm.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.inregistry.net", e, f},
2799 {"gen.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.inregistry.net", e, f},
2800 {"gov.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.ncst.ernet.in", e, f},
2801 {"ind.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, e, e, f},
2802 {"mil.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.ncst.ernet.in", e, f},
2803 {"net.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.inregistry.net", e, f},
2804 {"org.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.inregistry.net", e, f},
2805 {"res.in", &z[690], x, 0, e, w{"ns1.registry.in", "ns2.registry.in", "ns3.registry.in", "ns4.registry.in", "ns5.registry.in", "ns6.registry.in"}, n, n, n, "whois.ncst.ernet.in", e, f},
2806 {"auz.info", &z[695], x, 0, e, w{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, n, e, e, f},
2807 {"eu.int", &z[703], x, 0, e, w{"ns1.be.colt.net", "ns1.bt.net", "ns1bru.europa.eu", "ns1lux.europa.eu", "ns2bru.europa.eu", "ns2eu.bt.net", "ns2lux.europa.eu"}, n, n, n, e, e, f},
2808 {"com.io", &z[708], x, 0x800, e, n, n, n, n, e, e, t},
2809 {"org.io", &z[708], x, 0x800, e, n, n, n, n, e, e, t},
2810 {"biz.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, t},
2811 {"com.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, f},
2812 {"edu.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, f},
2813 {"gov.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, f},
2814 {"info.iq", &z[710], x, 0, e, w{"ns23.cmc.iq", "ns24.cmc.iq"}, n, n, n, e, e, t},
2815 {"mil.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, f},
2816 {"name.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, t},
2817 {"net.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, t},
2818 {"org.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, n, e, e, f},
2819 {"tv.iq", &z[710], x, 0, e, w{"ns.cocca.fr", "ns1.cmc.iq", "nsp-anycast.cmc.iq"}, n, n, n, e, e, t},
2820 {"ac.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2821 {"co.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2822 {"gov.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2823 {"id.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2824 {"net.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2825 {"org.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2826 {"sch.ir", &z[711], x, 0, e, w{"a.nic.ir", "b.nic.ir", "dns-ir.univie.ac.at", "ir.cctld.authdns.ripe.net", "ns5.univie.ac.at"}, n, n, n, e, e, f},
2827 {"abr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2828 {"abruzzo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2829 {"ag.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2830 {"agrigento.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2831 {"al.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2832 {"alessandria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2833 {"alto-adige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2834 {"altoadige.it", &z[720], x, 0, e, w{"guy.ns.cloudflare.com", "rita.ns.cloudflare.com"}, n, n, n, e, e, t},
2835 {"an.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2836 {"ancona.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2837 {"andria-barletta-trani.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2838 {"andria-trani-barletta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2839 {"andriabarlettatrani.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2840 {"andriatranibarletta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2841 {"ao.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2842 {"aosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2843 {"aoste.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2844 {"ap.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2845 {"aq.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2846 {"aquila.it", &z[720], x, 0, e, w{"ns1.parkingcrew.net", "ns2.parkingcrew.net"}, w{"104.247.82.54"}, n, n, e, e, t},
2847 {"ar.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2848 {"arezzo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2849 {"ascoli-piceno.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2850 {"ascolipiceno.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2851 {"asti.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2852 {"at.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2853 {"av.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2854 {"avellino.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2855 {"ba.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2856 {"balsan.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2857 {"bari.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2858 {"barletta-trani-andria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2859 {"barlettatraniandria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2860 {"bas.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2861 {"basilicata.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2862 {"belluno.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2863 {"benevento.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2864 {"bergamo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2865 {"bg.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2866 {"bi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2867 {"biella.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2868 {"bl.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2869 {"bn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2870 {"bo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2871 {"bologna.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2872 {"bolzano.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2873 {"bozen.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2874 {"br.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2875 {"brescia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2876 {"brindisi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2877 {"bs.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2878 {"bt.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2879 {"bz.it", &z[720], x, 0, e, n, n, n, n, e, e, f},
2880 {"ca.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2881 {"cagliari.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2882 {"cal.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2883 {"calabria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2884 {"caltanissetta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2885 {"cam.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2886 {"campania.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2887 {"campidano-medio.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2888 {"campidanomedio.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2889 {"campobasso.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2890 {"carbonia-iglesias.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2891 {"carboniaiglesias.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2892 {"carrara-massa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2893 {"carraramassa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2894 {"caserta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2895 {"catania.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2896 {"catanzaro.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2897 {"cb.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2898 {"ce.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2899 {"cesena-forli.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2900 {"cesenaforli.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2901 {"ch.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2902 {"chieti.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2903 {"ci.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2904 {"cl.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2905 {"cn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2906 {"co.it", &z[720], x, 0, e, n, n, n, n, e, e, f},
2907 {"como.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2908 {"cosenza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2909 {"cr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2910 {"cremona.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2911 {"crotone.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2912 {"cs.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2913 {"ct.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2914 {"cuneo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2915 {"cz.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2916 {"dell-ogliastra.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2917 {"dellogliastra.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2918 {"edu.it", &z[720], x, 0, e, w{"a.dns.it", "dns.edu.it", "m.dns.it", "r.dns.it"}, n, n, n, e, e, f},
2919 {"emilia-romagna.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2920 {"emiliaromagna.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2921 {"emr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2922 {"en.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2923 {"enna.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2924 {"fc.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2925 {"fe.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2926 {"fermo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2927 {"ferrara.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2928 {"fg.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2929 {"fi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2930 {"firenze.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2931 {"florence.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2932 {"fm.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2933 {"foggia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2934 {"forli-cesena.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2935 {"forlicesena.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2936 {"fr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2937 {"friuli-v-giulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2938 {"friuli-ve-giulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2939 {"friuli-vegiulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2940 {"friuli-venezia-giulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2941 {"friuli-veneziagiulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2942 {"friuli-vgiulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2943 {"friuliv-giulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2944 {"friulive-giulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2945 {"friulivegiulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2946 {"friulivenezia-giulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2947 {"friuliveneziagiulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2948 {"friulivgiulia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2949 {"frosinone.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2950 {"fvg.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2951 {"ge.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2952 {"genoa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2953 {"genova.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2954 {"go.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2955 {"gorizia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2956 {"gov.it", &z[720], x, 0, e, w{"dns1.fweds-spc.it", "dns2.fweds-spc.it"}, n, n, n, e, e, f},
2957 {"gr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2958 {"grosseto.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2959 {"iglesias-carbonia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2960 {"iglesiascarbonia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2961 {"im.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2962 {"imperia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2963 {"is.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2964 {"isernia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2965 {"kr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2966 {"la-spezia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2967 {"laquila.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2968 {"laspezia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2969 {"latina.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2970 {"laz.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2971 {"lazio.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2972 {"lc.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2973 {"le.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2974 {"lecce.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2975 {"lecco.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2976 {"li.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2977 {"lig.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2978 {"liguria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2979 {"livorno.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2980 {"lo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2981 {"lodi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2982 {"lom.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2983 {"lombardia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2984 {"lombardy.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2985 {"lt.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2986 {"lu.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2987 {"lucania.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2988 {"lucca.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2989 {"macerata.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2990 {"mantova.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2991 {"mar.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2992 {"marche.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2993 {"massa-carrara.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2994 {"massacarrara.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2995 {"matera.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2996 {"mb.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2997 {"mc.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2998 {"me.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
2999 {"medio-campidano.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3000 {"mediocampidano.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3001 {"messina.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3002 {"mi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3003 {"milan.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3004 {"milano.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3005 {"mn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3006 {"mo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3007 {"modena.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3008 {"mol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3009 {"molise.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3010 {"monza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3011 {"monza-brianza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3012 {"monza-e-della-brianza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3013 {"monzabrianza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3014 {"monzaebrianza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3015 {"monzaedellabrianza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3016 {"ms.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3017 {"mt.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3018 {"na.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3019 {"naples.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3020 {"napoli.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3021 {"no.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3022 {"novara.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3023 {"nu.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3024 {"nuoro.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3025 {"og.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3026 {"ogliastra.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3027 {"olbia-tempio.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3028 {"olbiatempio.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3029 {"or.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3030 {"oristano.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3031 {"ot.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3032 {"pa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3033 {"padova.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3034 {"padua.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3035 {"palermo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3036 {"parma.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3037 {"pavia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3038 {"pc.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3039 {"pd.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3040 {"pe.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3041 {"perugia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3042 {"pesaro-urbino.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3043 {"pesarourbino.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3044 {"pescara.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3045 {"pg.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3046 {"pi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3047 {"piacenza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3048 {"piedmont.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3049 {"piemonte.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3050 {"pisa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3051 {"pistoia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3052 {"pmn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3053 {"pn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3054 {"po.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3055 {"pordenone.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3056 {"potenza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3057 {"pr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3058 {"prato.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3059 {"pt.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3060 {"pu.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3061 {"pug.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3062 {"puglia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3063 {"pv.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3064 {"pz.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3065 {"ra.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3066 {"ragusa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3067 {"ravenna.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3068 {"rc.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3069 {"re.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3070 {"reggio-calabria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3071 {"reggio-emilia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3072 {"reggiocalabria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3073 {"reggioemilia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3074 {"rg.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3075 {"ri.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3076 {"rieti.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3077 {"rimini.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3078 {"rm.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3079 {"rn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3080 {"ro.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3081 {"roma.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3082 {"rome.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3083 {"rovigo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3084 {"sa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3085 {"salerno.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3086 {"sar.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3087 {"sardegna.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3088 {"sardinia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3089 {"sassari.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3090 {"savona.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3091 {"si.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3092 {"sic.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3093 {"sicilia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3094 {"sicily.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3095 {"siena.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3096 {"siracusa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3097 {"so.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3098 {"sondrio.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3099 {"sp.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3100 {"sr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3101 {"ss.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3102 {"suedtirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3103 {"sv.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3104 {"ta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3105 {"taa.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3106 {"taranto.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3107 {"te.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3108 {"tempio-olbia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3109 {"tempioolbia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3110 {"teramo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3111 {"terni.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3112 {"tn.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3113 {"to.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3114 {"torino.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3115 {"tos.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3116 {"toscana.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3117 {"tp.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3118 {"tr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3119 {"trani-andria-barletta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3120 {"trani-barletta-andria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3121 {"traniandriabarletta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3122 {"tranibarlettaandria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3123 {"trapani.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3124 {"trentino.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3125 {"trentino-a-adige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3126 {"trentino-aadige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3127 {"trentino-alto-adige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3128 {"trentino-altoadige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3129 {"trentino-s-tirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3130 {"trentino-stirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3131 {"trentino-sud-tirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3132 {"trentino-sudtirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3133 {"trentino-sued-tirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3134 {"trentino-suedtirol.it", &z[720], x, 0, e, w{"dns3.aknet.it", "dns4.aknet.it"}, n, n, n, e, e, t},
3135 {"trentinoa-adige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3136 {"trentinoaadige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3137 {"trentinoalto-adige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3138 {"trentinoaltoadige.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3139 {"trentinos-tirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3140 {"trentinosud-tirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3141 {"trentinosudtirol.it", &z[720], x, 0, e, w{"dns.widhost.net", "dns2.widhost.net"}, n, n, n, e, e, t},
3142 {"trentinosued-tirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3143 {"trentinosuedtirol.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3144 {"trento.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3145 {"treviso.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3146 {"trieste.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3147 {"ts.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3148 {"turin.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3149 {"tuscany.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3150 {"tv.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3151 {"ud.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3152 {"udine.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3153 {"umb.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3154 {"umbria.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3155 {"urbino-pesaro.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3156 {"urbinopesaro.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3157 {"va.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3158 {"val-d-aosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3159 {"val-daosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3160 {"vald-aosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3161 {"valdaosta.it", &z[720], x, 0, e, w{"dns2.alsitech.it", "dns4.alsitech.it"}, n, n, n, e, e, t},
3162 {"valle-d-aosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3163 {"valle-daosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3164 {"valled-aosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3165 {"valledaosta.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3166 {"vao.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3167 {"varese.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3168 {"vb.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3169 {"vc.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3170 {"vda.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3171 {"ve.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3172 {"ven.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3173 {"veneto.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3174 {"venezia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3175 {"venice.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3176 {"verbania.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3177 {"vercelli.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3178 {"verona.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3179 {"vi.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3180 {"vibo-valentia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3181 {"vibovalentia.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3182 {"vicenza.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3183 {"viterbo.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3184 {"vr.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3185 {"vs.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3186 {"vt.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3187 {"vv.it", &z[720], x, 0, e, n, n, n, n, e, e, t},
3188 {"24.je", &z[729], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "24.je"}, n, n, e, e, t},
3189 {"co.je", &z[729], x, 0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, n, e, e, f},
3190 {"gov.je", &z[729], x, 0, e, w{"ns1.gov.je", "ns2.gov.je"}, n, n, n, e, e, f},
3191 {"net.je", &z[729], x, 0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, n, e, e, f},
3192 {"org.je", &z[729], x, 0, e, w{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, n, e, e, f},
3193 {"sch.je", &z[729], x, 0, e, w{"ns1.gov.je", "ns2.gov.je"}, n, n, n, e, e, f},
3194 {"com.jm", &z[736], x, 0, e, n, n, n, n, e, e, f},
3195 {"edu.jm", &z[736], x, 0, e, n, n, n, n, e, e, f},
3196 {"gov.jm", &z[736], x, 0, e, n, n, n, n, e, e, f},
3197 {"mil.jm", &z[736], x, 0, e, n, n, n, n, e, e, f},
3198 {"net.jm", &z[736], x, 0, e, n, n, n, n, e, e, f},
3199 {"org.jm", &z[736], x, 0, e, n, n, n, n, e, e, f},
3200 {"com.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, f},
3201 {"edu.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, t},
3202 {"gov.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, f},
3203 {"mil.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, f},
3204 {"name.jo", &z[739], x, 0, e, n, n, n, n, e, e, f},
3205 {"net.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, f},
3206 {"org.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, f},
3207 {"sch.jo", &z[739], x, 0, e, w{"amra.nic.gov.jo", "jo.cctld.authdns.ripe.net", "jordan1st.nic.gov.jo", "petra.nic.gov.jo", "rip.psg.com"}, n, n, n, e, e, f},
3208 {"ac.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3209 {"ad.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3210 {"aichi.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3211 {"akita.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3212 {"aomori.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3213 {"chiba.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3214 {"co.jp", &z[744], x, 0, e, n, n, n, n, e, e, t},
3215 {"ed.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3216 {"ehime.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3217 {"fukui.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3218 {"fukuoka.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3219 {"fukushima.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3220 {"gifu.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3221 {"go.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3222 {"gr.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3223 {"gunma.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3224 {"hiroshima.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3225 {"hokkaido.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3226 {"hyogo.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3227 {"ibaraki.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3228 {"ishikawa.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3229 {"iwate.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3230 {"kagawa.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3231 {"kagoshima.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3232 {"kanagawa.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3233 {"kochi.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3234 {"kumamoto.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3235 {"kyoto.jp", &z[744], x, 0x84, e, n, n, w{"Kyoto"}, n, e, e, f},
3236 {"lg.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3237 {"mie.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3238 {"miyagi.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3239 {"miyazaki.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3240 {"nagano.jp", &z[744], x, 0x84, e, n, n, w{"Nagano", "JP-20"}, n, e, e, f},
3241 {"nagasaki.jp", &z[744], x, 0x84, e, n, n, w{"Nagasaki"}, n, e, e, f},
3242 {"nara.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3243 {"ne.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3244 {"niigata.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3245 {"oita.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3246 {"okayama.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3247 {"okinawa.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3248 {"or.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3249 {"osaka.jp", &z[744], x, 0x84, e, n, n, w{"Osaka"}, n, e, e, f},
3250 {"saga.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3251 {"saitama.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3252 {"shiga.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3253 {"shimane.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3254 {"shizuoka.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3255 {"tochigi.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3256 {"tokushima.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3257 {"tokyo.jp", &z[744], x, 0x84, e, n, n, w{"Tokyo"}, n, e, e, f},
3258 {"tottori.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3259 {"toyama.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3260 {"wakayama.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3261 {"yamagata.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3262 {"yamaguchi.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3263 {"yamanashi.jp", &z[744], x, 0, e, n, n, n, n, e, e, f},
3264 {"xn--ehqz56n.jp" /* 三重.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3265 {"xn--1lqs03n.jp" /* 京都.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3266 {"xn--qqqt11m.jp" /* 佐賀.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3267 {"xn--f6qx53a.jp" /* 兵庫.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3268 {"xn--djrs72d6uy.jp" /* 北海道.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3269 {"xn--mkru45i.jp" /* 千葉.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3270 {"xn--0trq7p7nn.jp" /* 和歌山.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3271 {"xn--5js045d.jp" /* 埼玉.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3272 {"xn--kbrq7o.jp" /* 大分.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3273 {"xn--pssu33l.jp" /* 大阪.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3274 {"xn--ntsq17g.jp" /* 奈良.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3275 {"xn--uisz3g.jp" /* 宮城.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3276 {"xn--6btw5a.jp" /* 宮崎.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3277 {"xn--1ctwo.jp" /* 富山.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3278 {"xn--6orx2r.jp" /* 山口.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3279 {"xn--rht61e.jp" /* 山形.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3280 {"xn--rht27z.jp" /* 山梨.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3281 {"xn--nit225k.jp" /* 岐阜.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3282 {"xn--rht3d.jp" /* 岡山.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3283 {"xn--djty4k.jp" /* 岩手.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3284 {"xn--klty5x.jp" /* 島根.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3285 {"xn--kltx9a.jp" /* 広島.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3286 {"xn--kltp7d.jp" /* 徳島.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3287 {"xn--c3s14m.jp" /* 愛媛.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3288 {"xn--vgu402c.jp" /* 愛知.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3289 {"xn--efvn9s.jp" /* 新潟.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3290 {"xn--1lqs71d.jp" /* 東京.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3291 {"xn--4pvxs.jp" /* 栃木.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3292 {"xn--uuwu58a.jp" /* 沖縄.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3293 {"xn--zbx025d.jp" /* 滋賀.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3294 {"xn--8pvr4u.jp" /* 熊本.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3295 {"xn--5rtp49c.jp" /* 石川.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3296 {"xn--ntso0iqx3a.jp" /* 神奈川.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3297 {"xn--elqq16h.jp" /* 福井.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3298 {"xn--4it168d.jp" /* 福岡.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3299 {"xn--klt787d.jp" /* 福島.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3300 {"xn--rny31h.jp" /* 秋田.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3301 {"xn--7t0a264c.jp" /* 群馬.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3302 {"xn--uist22h.jp" /* 茨城.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3303 {"xn--8ltr62k.jp" /* 長崎.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3304 {"xn--2m4a15e.jp" /* 長野.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3305 {"xn--32vp30h.jp" /* 青森.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3306 {"xn--4it797k.jp" /* 静岡.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3307 {"xn--5rtq34k.jp" /* 香川.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3308 {"xn--k7yn95e.jp" /* 高知.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3309 {"xn--tor131o.jp" /* 鳥取.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3310 {"xn--d5qv7z876c.jp" /* 鹿児島.jp */, &z[744], x, 0, e, n, n, n, n, e, e, t},
3311 {"ac.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3312 {"co.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3313 {"go.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3314 {"info.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3315 {"me.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3316 {"mobi.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3317 {"ne.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3318 {"or.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3319 {"sc.ke", &z[753], x, 0, e, w{"b.ns.tznic.or.tz", "kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2ke.dns.business"}, n, n, n, e, e, f},
3320 {"com.kg", &z[761], x, 0, e, w{"as.asiainfo.kg", "ns-kg.ripe.net", "ns.kg"}, n, n, n, e, e, f},
3321 {"edu.kg", &z[761], x, 0, e, w{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, n, e, e, t},
3322 {"gov.kg", &z[761], x, 0, e, w{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, n, e, e, f},
3323 {"mil.kg", &z[761], x, 0, e, w{"as.asiainfo.kg", "ns.kg", "ns.ripe.net"}, n, n, n, e, e, f},
3324 {"net.kg", &z[761], x, 0, e, w{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, n, e, e, f},
3325 {"org.kg", &z[761], x, 0, e, w{"as.asiainfo.kg", "kg.cctld.authdns.ripe.net", "ns-kg.ripe.net", "ns.kg"}, n, n, n, e, e, f},
3326 {"com.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3327 {"edu.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3328 {"gov.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3329 {"mil.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3330 {"net.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3331 {"org.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3332 {"per.kh", &z[762], x, 0, e, w{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, n, e, e, f},
3333 {"biz.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3334 {"com.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3335 {"edu.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3336 {"eu.ki", &z[763], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "eu.ki"}, n, n, e, e, t},
3337 {"gov.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3338 {"info.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3339 {"mob.ki", &z[763], x, 0, e, n, n, n, n, e, e, f},
3340 {"mobi.ki", &z[763], x, 0, e, n, n, n, n, e, e, f},
3341 {"net.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3342 {"org.ki", &z[763], x, 0, e, w{"ns.cocca.fr", "pch.nic.ki"}, n, n, n, e, e, f},
3343 {"phone.ki", &z[763], x, 0, e, n, n, n, n, e, e, f},
3344 {"tel.ki", &z[763], x, 0, e, n, n, n, n, e, e, f},
3345 {"asso.km", &z[773], x, 0x800, e, n, n, n, n, e, e, f},
3346 {"com.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3347 {"coop.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3348 {"edu.km", &z[773], x, 0, e, w{"dns1.nic.km", "dns2.nic.km"}, n, n, n, e, e, f},
3349 {"gouv.km", &z[773], x, 0, e, w{"dns1.nic.km", "dns2.nic.km"}, n, n, n, e, e, f},
3350 {"medecin.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3351 {"mil.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3352 {"nom.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3353 {"notaires.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3354 {"org.km", &z[773], x, 0, e, w{"dns1.nic.km", "dns2.nic.km"}, n, n, n, e, e, t},
3355 {"pharmaciens.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3356 {"presse.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3357 {"tm.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3358 {"veterinaire.km", &z[773], x, 0, e, n, n, n, n, e, e, f},
3359 {"co.kn", &z[774], x, 0, e, w{"ns.cocca.fr", "pch.nic.kn"}, n, n, n, e, e, t},
3360 {"com.kn", &z[774], x, 0, e, w{"ns.cocca.fr", "pch.nic.kn"}, n, n, n, e, e, f},
3361 {"edu.kn", &z[774], x, 0, e, w{"ns.cocca.fr", "pch.nic.kn"}, n, n, n, e, e, f},
3362 {"gov.kn", &z[774], x, 0, e, w{"ns.cocca.fr", "pch.nic.kn"}, n, n, n, e, e, f},
3363 {"net.kn", &z[774], x, 0, e, w{"ns.cocca.fr", "ns.coccaregistry.org", "pch.nic.kn"}, n, n, n, e, e, f},
3364 {"org.kn", &z[774], x, 0, e, w{"ns.cocca.fr", "ns.coccaregistry.org", "pch.nic.kn"}, n, n, n, e, e, f},
3365 {"com.kp", &z[780], x, 0, e, w{"ns1.com.kp", "ns2.com.kp"}, n, n, n, e, e, f},
3366 {"net.kp", &z[780], x, 0, e, w{"ns1.net.kp", "ns2.net.kp"}, n, n, n, e, e, f},
3367 {"org.kp", &z[780], x, 0, e, w{"ns1.org.kp", "ns2.org.kp"}, n, n, n, e, e, f},
3368 {"rep.kp", &z[780], x, 0, e, w{"ns1.rep.kp", "ns2.rep.kp"}, n, n, n, e, e, f},
3369 {"ac.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3370 {"busan.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3371 {"chungbuk.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3372 {"chungnam.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3373 {"co.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3374 {"daegu.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3375 {"daejeon.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3376 {"es.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3377 {"gangwon.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3378 {"go.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3379 {"gwangju.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3380 {"gyeongbuk.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3381 {"gyeonggi.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3382 {"gyeongnam.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3383 {"hs.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3384 {"incheon.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3385 {"jeju.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3386 {"jeonbuk.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3387 {"jeonnam.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3388 {"kg.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3389 {"mil.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3390 {"ms.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3391 {"ne.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3392 {"or.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3393 {"pe.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3394 {"re.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3395 {"sc.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3396 {"seoul.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3397 {"ulsan.kr", &z[783], x, 0, e, w{"b.dns.kr", "c.dns.kr", "d.dns.kr", "e.dns.kr", "f.dns.kr", "g.dns.kr"}, n, n, n, e, e, f},
3398 {"com.kw", &z[787], x, 0, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, n, e, e, f},
3399 {"edu.kw", &z[787], x, 0, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, n, e, e, f},
3400 {"gov.kw", &z[787], x, 0, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, n, e, e, f},
3401 {"net.kw", &z[787], x, 0, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, n, e, e, f},
3402 {"org.kw", &z[787], x, 0, e, w{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "e.nic.kw", "pch.nic.kw"}, n, n, n, e, e, f},
3403 {"com.ky", &z[788], x, 0, e, w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
3404 {"edu.ky", &z[788], x, 0, e, w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
3405 {"gov.ky", &z[788], x, 0, e, w{"ns.gov.ky", "ns2.gov.ky"}, n, n, n, e, e, f},
3406 {"net.ky", &z[788], x, 0, e, w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
3407 {"org.ky", &z[788], x, 0, e, w{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, n, e, e, f},
3408 {"com.kz", &z[791], x, 0, e, w{"ns.nic.kz", "ns2.nic.kz"}, n, n, n, e, e, f},
3409 {"edu.kz", &z[791], x, 0, e, w{"ns.nic.kz", "ns2.nic.kz"}, n, n, n, e, e, f},
3410 {"gov.kz", &z[791], x, 0, e, w{"ns.nic.kz", "ns2.nic.kz"}, n, n, n, e, e, f},
3411 {"mil.kz", &z[791], x, 0, e, w{"ns.nic.kz", "ns2.nic.kz"}, n, n, n, e, e, f},
3412 {"net.kz", &z[791], x, 0, e, w{"ns.nic.kz", "ns2.nic.kz"}, n, n, n, e, e, f},
3413 {"org.kz", &z[791], x, 0, e, w{"ns.nic.kz", "ns2.nic.kz"}, n, n, n, e, e, f},
3414 {"com.lb", &z[809], x, 0, e, w{"nn.uninett.no", "ns3.seacomnet.com", "ns4.seacomnet.com", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, e, e, f},
3415 {"edu.lb", &z[809], x, 0, e, w{"nn.uninett.no", "ns3.seacomnet.com", "ns4.seacomnet.com", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, e, e, f},
3416 {"gov.lb", &z[809], x, 0, e, w{"nn.uninett.no", "ns3.seacomnet.com", "ns4.seacomnet.com", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, e, e, f},
3417 {"net.lb", &z[809], x, 0, e, w{"nn.uninett.no", "ns3.seacomnet.com", "ns4.seacomnet.com", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, e, e, f},
3418 {"org.lb", &z[809], x, 0, e, w{"nn.uninett.no", "ns3.seacomnet.com", "ns4.seacomnet.com", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, n, e, e, f},
3419 {"24.lc", &z[810], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "24.lc"}, n, n, e, e, t},
3420 {"co.lc", &z[810], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
3421 {"com.lc", &z[810], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
3422 {"edu.lc", &z[810], x, 0, e, w{"dns2.server.ag", "ns2.dnsserver.ag"}, n, n, n, e, e, f},
3423 {"gov.lc", &z[810], x, 0, e, w{"dns2.server.ag", "ns2.dnsserver.ag"}, n, n, n, e, e, f},
3424 {"l.lc", &z[810], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
3425 {"net.lc", &z[810], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
3426 {"org.lc", &z[810], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
3427 {"p.lc", &z[810], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org", "dns.server.ag"}, n, n, n, e, e, f},
3428 {"assn.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3429 {"com.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3430 {"edu.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3431 {"gov.lk", &z[838], x, 0, e, w{"c.nic.lk", "d.nic.lk", "m.nic.lk", "ns1.gov.lk", "ns2.gov.lk"}, n, n, n, e, e, f},
3432 {"grp.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3433 {"hotel.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3434 {"int.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3435 {"ltd.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3436 {"net.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3437 {"ngo.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3438 {"org.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3439 {"sch.lk", &z[838], x, 0, e, w{"ns1.sch.lk"}, n, n, n, e, e, f},
3440 {"soc.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3441 {"web.lk", &z[838], x, 0, e, n, n, n, n, e, e, f},
3442 {"com.lr", &z[854], x, 0, e, n, n, n, n, e, e, f},
3443 {"edu.lr", &z[854], x, 0, e, n, n, n, n, e, e, f},
3444 {"gov.lr", &z[854], x, 0, e, n, n, n, n, e, e, f},
3445 {"net.lr", &z[854], x, 0, e, n, n, n, n, e, e, f},
3446 {"org.lr", &z[854], x, 0, e, n, n, n, n, e, e, f},
3447 {"vcom.lr", &z[854], x, 0, e, n, n, n, n, e, e, f},
3448 {"ac.ls", &z[855], x, 0, e, w{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls", "thaba.nul.ls"}, n, n, n, e, e, t},
3449 {"co.ls", &z[855], x, 0, e, w{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, n, e, e, f},
3450 {"gov.ls", &z[855], x, 0, e, w{"acst23ns01.gov.ls", "afdp23ns01.gov.ls", "secdns1.posix.co.za", "thaba.nul.ls"}, n, n, n, e, e, t},
3451 {"net.ls", &z[855], x, 0, e, w{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.leo.co.ls", "ns1.nic.ls", "sas.leo.co.ls"}, n, n, n, e, e, t},
3452 {"org.ls", &z[855], x, 0, e, w{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, n, e, e, f},
3453 {"sc.ls", &z[855], x, 0, e, w{"ns1.nic.ls", "ns1.telewebls.com", "ns2.nic.ls"}, n, n, n, e, e, f},
3454 {"gov.lt", &z[856], x, 0, e, w{"ns2.domreg.lt", "ns3.domreg.lt", "ns3.is.lt", "ns4.is.lt"}, n, n, n, e, e, f},
3455 {"asn.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3456 {"com.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3457 {"conf.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3458 {"edu.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3459 {"gov.lv", &z[864], x, 0, e, w{"a.gov.lv", "b.gov.lv"}, n, n, n, e, e, f},
3460 {"id.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3461 {"mil.lv", &z[864], x, 0, e, w{"ns1.mil.lv", "ns2.mil.lv"}, n, n, n, e, e, f},
3462 {"net.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3463 {"org.lv", &z[864], x, 0, e, n, n, n, n, e, e, f},
3464 {"com.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3465 {"edu.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3466 {"gov.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3467 {"id.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3468 {"med.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3469 {"net.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3470 {"org.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3471 {"plc.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3472 {"sch.ly", &z[865], x, 0, e, n, n, n, n, e, e, f},
3473 {"ac.ma", &z[866], x, 0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, e, e, f},
3474 {"co.ma", &z[866], x, 0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, e, e, f},
3475 {"gov.ma", &z[866], x, 0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, e, e, f},
3476 {"net.ma", &z[866], x, 0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, e, e, f},
3477 {"org.ma", &z[866], x, 0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, e, e, f},
3478 {"press.ma", &z[866], x, 0, e, w{"a.tld.ma", "b.tld.ma", "c.tld.ma", "d.tld.ma", "dns.inria.fr", "e.tld.ma", "f.tld.ma", "ns-ma.nic.fr"}, n, n, n, e, e, f},
3479 {"asso.mc", &z[887], x, 0, e, w{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, n, e, e, f},
3480 {"tm.mc", &z[887], x, 0, e, w{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, n, e, e, f},
3481 {"ac.me", &z[892], x, 0, e, w{"ns.ac.me", "ns2.ac.me"}, n, n, n, e, e, f},
3482 {"co.me", &z[892], x, 0, e, w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, e, e, f},
3483 {"edu.me", &z[892], x, 0, e, w{"ns.edu.me", "ns2.edu.me"}, n, n, n, e, e, f},
3484 {"gov.me", &z[892], x, 0, e, w{"ns.gov.me", "ns1.gov.me"}, n, n, n, e, e, f},
3485 {"its.me", &z[892], x, 0, e, w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, e, e, f},
3486 {"net.me", &z[892], x, 0, e, w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, e, e, f},
3487 {"org.me", &z[892], x, 0, e, w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, e, e, f},
3488 {"priv.me", &z[892], x, 0, e, w{"a0.nic.me", "a2.nic.me", "b0.nic.me", "b2.nic.me", "c0.nic.me"}, n, n, n, e, e, f},
3489 {"co.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3490 {"com.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3491 {"edu.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3492 {"gov.mg", &z[907], x, 0, e, w{"ns.gov.mg", "ns1.gov.mg", "ns2.gov.mg"}, n, n, n, e, e, f},
3493 {"in.mg", &z[907], x, 0, e, w{"ns1.in.mg", "ns2.in.mg"}, n, n, n, e, e, t},
3494 {"mil.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3495 {"net.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3496 {"nom.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3497 {"org.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3498 {"prd.mg", &z[907], x, 0, e, w{"censvrns0001.ird.fr", "ns-mg.malagasy.com", "ns.dts.mg", "ns.nic.mg", "pch.nic.mg"}, n, n, n, e, e, f},
3499 {"tm.mg", &z[907], x, 0, e, n, n, n, n, e, e, f},
3500 {"com.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3501 {"edu.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3502 {"gov.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3503 {"inf.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3504 {"name.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3505 {"net.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3506 {"org.mk", &z[919], x, 0, e, w{"d.ext.nic.cz", "dns-mk.univie.ac.at", "ns2.arnes.si", "tld1.marnet.mk"}, n, n, n, e, e, f},
3507 {"pro.mk", &z[919], x, 0, e, w{"ns1.pro.mk", "ns2.pro.mk", "ns3.pro.mk", "ns4.pro.mk"}, w{"162.218.232.95"}, n, n, e, e, t},
3508 {"com.ml", &z[920], x, 0, e, w{"djamako.nic.ml", "dns.gouv.ml"}, n, n, n, e, e, f},
3509 {"edu.ml", &z[920], x, 0, e, w{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, n, e, e, t},
3510 {"gov.ml", &z[920], x, 0, e, w{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, n, e, e, f},
3511 {"net.ml", &z[920], x, 0, e, w{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, n, e, e, f},
3512 {"org.ml", &z[920], x, 0, e, w{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, n, e, e, f},
3513 {"presse.ml", &z[920], x, 0, e, w{"ns01.freenom.com", "ns02.freenom.com", "ns03.freenom.com", "ns04.freenom.com"}, n, n, n, e, e, f},
3514 {"biz.mm", &z[923], x, 0, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, e, e, f},
3515 {"com.mm", &z[923], x, 0, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, e, e, f},
3516 {"edu.mm", &z[923], x, 0, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, e, e, f},
3517 {"gov.mm", &z[923], x, 0, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, e, e, f},
3518 {"mil.mm", &z[923], x, 0, e, w{"master.mil.mm", "ns1.mil.mm", "ns2.mil.mm"}, n, n, n, e, e, t},
3519 {"net.mm", &z[923], x, 0, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, e, e, f},
3520 {"org.mm", &z[923], x, 0, e, w{"a.nic.net.mm", "b.nic.net.mm", "c.nic.net.mm", "d.nic.net.mm"}, n, n, n, e, e, f},
3521 {"per.mm", &z[923], x, 0, e, n, n, n, n, e, e, f},
3522 {"edu.mn", &z[925], x, 0, e, w{"ns.erdemnet.mn", "ns2.erdemnet.mn"}, n, n, n, e, e, f},
3523 {"gov.mn", &z[925], x, 0, e, w{"ns.gov.mn", "ns1.gov.mn", "ns3.gov.mn", "ns4.gov.mn"}, n, n, n, e, e, f},
3524 {"org.mn", &z[925], x, 0, e, w{"ns1.magic.mn", "ns3.magic.mn"}, n, n, n, e, e, f},
3525 {"co.mo", &z[927], x, 0, e, n, n, n, n, e, e, t},
3526 {"com.mo", &z[927], x, 0, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, e, e, f},
3527 {"edu.mo", &z[927], x, 0, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, e, e, f},
3528 {"gov.mo", &z[927], x, 0, e, w{"ns1.gov.mo", "ns2.gov.mo", "ns3.gov.mo", "ns4.gov.mo", "ns5.gov.mo"}, n, n, n, e, e, f},
3529 {"net.mo", &z[927], x, 0, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, e, e, f},
3530 {"org.mo", &z[927], x, 0, e, w{"a.monic.mo", "b.monic.mo", "c.monic.mo", "d.monic.mo", "e.monic.mo", "ns17.cdns.net", "ns2.cuhk.edu.hk"}, n, n, n, e, e, f},
3531 {"co.mp", &z[949], x, 0, e, w{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, n, e, e, t},
3532 {"com.mp", &z[949], x, 0, e, n, n, n, n, e, e, f},
3533 {"gov.mp", &z[949], x, 0, e, w{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, n, e, e, f},
3534 {"org.mp", &z[949], x, 0, e, w{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, n, e, e, f},
3535 {"edu.mr", &z[951], x, 0, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, e, e, t},
3536 {"gov.mr", &z[951], x, 0, e, w{"dns.mauritania.mr", "dns2.mauritania.mr"}, n, n, n, e, e, f},
3537 {"org.mr", &z[951], x, 0, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, e, e, t},
3538 {"perso.mr", &z[951], x, 0, e, w{"ns-mr.afrinic.net", "ns-mr.nic.fr", "ns-mr.nic.tn", "ns1.nic.mr", "ns2.nic.mr", "ns3.nic.mr"}, n, n, n, e, e, t},
3539 {"co.ms", &z[954], x, 0, e, w{"ns.cocca.fr"}, n, n, n, e, e, f},
3540 {"com.ms", &z[954], x, 0, e, w{"ns.cocca.fr"}, n, n, n, e, e, f},
3541 {"net.ms", &z[954], x, 0, e, w{"ns1.idnscan.net", "ns6.idnscan.net"}, n, n, n, e, e, t},
3542 {"org.ms", &z[954], x, 0, e, w{"ns.cocca.fr"}, n, n, n, e, e, f},
3543 {"com.mt", &z[956], x, 0, e, w{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, n, e, e, f},
3544 {"edu.mt", &z[956], x, 0, e, w{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, n, e, e, f},
3545 {"gov.mt", &z[956], x, 0, e, w{"ns1-09.azure-dns.com", "ns2-09.azure-dns.net", "ns3-09.azure-dns.org", "ns4-09.azure-dns.info"}, n, n, n, e, e, f},
3546 {"net.mt", &z[956], x, 0, e, w{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, n, e, e, f},
3547 {"org.mt", &z[956], x, 0, e, w{"a.ns.mt", "b.ns.mt", "f.ns.mt", "p.ns.mt"}, n, n, n, e, e, f},
3548 {"24.mu", &z[960], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "24.mu"}, n, n, e, e, t},
3549 {"ac.mu", &z[960], x, 0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, e, e, f},
3550 {"co.mu", &z[960], x, 0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, e, e, t},
3551 {"com.mu", &z[960], x, 0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, e, e, f},
3552 {"gov.mu", &z[960], x, 0, e, w{"ns0.gov.mu", "ns1.gov.mu", "ns2.gov.mu", "ns3.gov.mu", "ns4.gov.mu"}, n, n, n, e, e, f},
3553 {"net.mu", &z[960], x, 0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, e, e, f},
3554 {"nom.mu", &z[960], x, 0, e, w{"ns1.mu-dns.net", "ns2.mu-dns.net"}, w{"185.243.56.15"}, n, n, e, e, f},
3555 {"or.mu", &z[960], x, 0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, e, e, f},
3556 {"org.mu", &z[960], x, 0, e, w{"anycast1.irondns.net", "fork.sth.dnsnode.net", "mu1.dyntld.net", "mu2.dyntld.net", "mu3.dyntld.net", "mu4.dyntld.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, n, e, e, f},
3557 {"aero.mv", &z[967], x, 0, "http://www.brunet.bn/products_webrelated_domain_main.htm", w{"mv-ns.anycast.pch.net", "ns-cache01.dhivehinet.net.mv", "ns.aero.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, f},
3558 {"biz.mv", &z[967], x, 0, e, w{"webns.mv"}, n, n, n, e, e, f},
3559 {"com.mv", &z[967], x, 0, e, w{"mv-ns.anycast.pch.net", "ns.com.mv", "ns.dhivehinet.net.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, f},
3560 {"coop.mv", &z[967], x, 0, e, n, n, n, n, e, e, f},
3561 {"edu.mv", &z[967], x, 0, e, w{"mv-ns.anycast.pch.net", "ns.edu.mv", "ns1.edu.mv", "ns2.edu.mv"}, n, n, n, e, e, f},
3562 {"gov.mv", &z[967], x, 0, e, w{"mv-ns.anycast.pch.net", "ns.dhivehinet.net.mv", "ns.gov.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, f},
3563 {"info.mv", &z[967], x, 0, e, n, n, n, n, e, e, f},
3564 {"int.mv", &z[967], x, 0, e, n, n, n, n, e, e, f},
3565 {"mil.mv", &z[967], x, 0, e, n, n, n, n, e, e, f},
3566 {"museum.mv", &z[967], x, 0, e, n, n, n, n, e, e, f},
3567 {"name.mv", &z[967], x, 0, e, n, n, n, n, e, e, f},
3568 {"net.mv", &z[967], x, 0, e, w{"mv-ns.anycast.pch.net", "ns.net.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, f},
3569 {"org.mv", &z[967], x, 0, e, w{"mv-ns.anycast.pch.net", "ns.org.mv", "ns2.dhivehinet.net.mv"}, n, n, n, e, e, f},
3570 {"pro.mv", &z[967], x, 0, e, w{"host13.dhivehinet.net.mv"}, n, n, n, e, e, f},
3571 {"ac.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3572 {"co.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3573 {"com.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3574 {"coop.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "pch1.nic.mw", "rip.psg.com", "rip.psg.mw"}, n, n, n, e, e, f},
3575 {"edu.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3576 {"gov.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3577 {"int.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "pch1.nic.mw", "rip.psg.com", "rip.psg.mw"}, n, n, n, e, e, f},
3578 {"museum.mw", &z[968], x, 0, e, w{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, n, e, e, f},
3579 {"net.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3580 {"org.mw", &z[968], x, 0, e, w{"chambo.sdnp.org.mw", "d.ext.nic.cz", "domwe.sdn.mw", "mw.cctld.authdns.ripe.net", "ns4.apnic.net", "pch1.nic.mw", "rip.psg.com"}, n, n, n, e, e, f},
3581 {"com.mx", &z[969], x, 0, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, e, e, f},
3582 {"edu.mx", &z[969], x, 0, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, e, e, f},
3583 {"gob.mx", &z[969], x, 0, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, e, e, f},
3584 {"net.mx", &z[969], x, 0, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, e, e, f},
3585 {"org.mx", &z[969], x, 0, e, w{"c.mx-ns.mx", "e.mx-ns.mx", "i.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx", "x.mx-ns.mx"}, n, n, n, e, e, f},
3586 {"com.my", &z[970], x, 0, "https://mynic.my/", w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, t},
3587 {"edi.my", &z[970], x, 0x800, e, n, n, n, n, e, e, t},
3588 {"edu.my", &z[970], x, 0, e, w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, f},
3589 {"gov.my", &z[970], x, 0, e, w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, f},
3590 {"mil.my", &z[970], x, 0, e, w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, f},
3591 {"name.my", &z[970], x, 0, "https://mynic.my/", w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, f},
3592 {"net.my", &z[970], x, 0, "https://mynic.my/", w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, f},
3593 {"org.my", &z[970], x, 0, e, w{"a.mynic.centralnic-dns.com", "b.mynic.centralnic-dns.com", "b.nic.my", "b1.nic.my", "c.mynic.centralnic-dns.com", "d.mynic.centralnic-dns.com"}, n, n, n, e, e, f},
3594 {"ac.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, f},
3595 {"adv.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, f},
3596 {"co.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, f},
3597 {"edu.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, f},
3598 {"gov.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, f},
3599 {"net.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, t},
3600 {"org.mz", &z[971], x, 0, e, w{"anyns.uem.mz", "dzowo.uem.mz", "ns-mz.afrinic.net", "oceano.uem.mz", "phloem.uoregon.edu", "zebra.uem.mz"}, n, n, n, e, e, f},
3601 {"alt.na", &z[973], x, 0, e, w{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, n, e, e, f},
3602 {"cc.na", &z[973], x, 0, e, w{"beau.ns.cloudflare.com", "reza.ns.cloudflare.com"}, n, n, n, e, e, f},
3603 {"co.na", &z[973], x, 0, e, w{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.net", "secdns1.posix.co.za"}, n, n, n, e, e, f},
3604 {"com.na", &z[973], x, 0, e, w{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net"}, n, n, n, e, e, f},
3605 {"dr.na", &z[973], x, 0, e, w{"ns1.click.na", "ns2.click.na"}, n, n, n, e, e, f},
3606 {"edu.na", &z[973], x, 0, e, w{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, n, e, e, f},
3607 {"in.na", &z[973], x, 0, e, w{"ns21.cloudns.net", "ns22.cloudns.net", "ns23.cloudns.net", "ns24.cloudns.net"}, n, n, n, e, e, f},
3608 {"info.na", &z[973], x, 0, e, w{"clint.ns.cloudflare.com", "jocelyn.ns.cloudflare.com"}, n, n, n, e, e, f},
3609 {"mobi.na", &z[973], x, 0, e, n, n, n, n, e, e, f},
3610 {"name.na", &z[973], x, 0, e, n, n, n, n, e, e, f},
3611 {"net.na", &z[973], x, 0, e, w{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, n, e, e, f},
3612 {"of.na", &z[973], x, 0, e, n, n, n, n, e, e, f},
3613 {"or.na", &z[973], x, 0, e, n, n, n, n, e, e, f},
3614 {"org.na", &z[973], x, 0, e, w{"katima.omadhina.net", "na-ns.anycast.pch.net", "ns-na.afrinic.net", "oneu.omadhina.co.na"}, n, n, n, e, e, f},
3615 {"pro.na", &z[973], x, 0x800, e, n, n, n, n, e, e, f},
3616 {"school.na", &z[973], x, 0, e, w{"beau.ns.cloudflare.com", "reza.ns.cloudflare.com"}, n, n, n, e, e, f},
3617 {"tv.na", &z[973], x, 0, e, n, n, n, n, e, e, f},
3618 {"ws.na", &z[973], x, 0, e, n, n, n, n, e, e, f},
3619 {"kyrylkov.name", &z[977], x, 0, e, n, n, n, n, e, e, t},
3620 {"puig.name", &z[977], x, 0, e, n, n, n, n, e, e, t},
3621 {"santos.name", &z[977], x, 0, e, n, n, n, n, e, e, t},
3622 {"asso.nc", &z[983], x, 0, e, w{"any-ns1.nc", "ns1.nc", "ns2.nc"}, n, n, n, e, e, f},
3623 {"com.nc", &z[983], x, 0, e, n, n, n, n, e, e, t},
3624 {"nom.nc", &z[983], x, 0, e, w{"any-ns1.nc", "ns1.nc", "ns2.nc"}, n, n, n, e, e, f},
3625 {"com.ne", &z[984], x, 0, e, n, n, n, n, e, e, f},
3626 {"info.ne", &z[984], x, 0, e, n, n, n, n, e, e, f},
3627 {"int.ne", &z[984], x, 0, e, n, n, n, n, e, e, f},
3628 {"org.ne", &z[984], x, 0, e, n, n, n, n, e, e, f},
3629 {"perso.ne", &z[984], x, 0, e, n, n, n, n, e, e, f},
3630 {"1x.net", &z[986], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "1x.net"}, n, n, e, e, t},
3631 {"auz.net", &z[986], x, 0, e, w{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, n, e, e, f},
3632 {"gb.net", &z[986], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "gb.net"}, n, n, "whois.centralnic.com", e, t},
3633 {"hu.net", &z[986], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "hu.net"}, n, n, "whois.centralnic.com", e, f},
3634 {"in.net", &z[986], x, 0, e, w{"ns1.nic.in.net", "ns2.nic.in.net", "ns3.nic.in.net", "ns4.nic.in.net"}, n, n, n, "whois.centralnic.com", e, f},
3635 {"jp.net", &z[986], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"205.164.14.88"}, n, n, "whois.centralnic.com", e, f},
3636 {"ru.net", &z[986], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
3637 {"se.net", &z[986], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "se.net"}, n, n, "whois.centralnic.com", e, t},
3638 {"uk.net", &z[986], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "uk.net"}, n, n, "whois.centralnic.com", e, t},
3639 {"za.net", &z[986], x, 0, e, w{"igubu.saix.net", "ns0.is.co.za", "ns0.plig.net", "ns1.plig.net", "ns2.plig.net", "ns3.iafrica.com"}, n, n, n, "whois.za.net", e, t},
3640 {"arts.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3641 {"com.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3642 {"firm.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3643 {"info.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3644 {"net.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3645 {"org.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3646 {"other.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr"}, n, n, n, e, e, f},
3647 {"per.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3648 {"rec.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3649 {"store.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3650 {"us.nf", &z[998], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "us.nf"}, n, n, e, e, t},
3651 {"web.nf", &z[998], x, 0, e, w{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, n, e, e, f},
3652 {"com.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3653 {"edu.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3654 {"gov.ng", &z[1000], z[5100:5101], 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3655 {"i.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, t},
3656 {"mil.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, t},
3657 {"mobi.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3658 {"name.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3659 {"net.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3660 {"org.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3661 {"sch.ng", &z[1000], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, f},
3662 {"ac.ni", &z[1003], x, 0, e, w{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3663 {"biz.ni", &z[1003], x, 0, e, w{"auth01.ns.uu.net", "dns-ext.nic.cr", "dns.nic.cr", "ns.ibw.com.ni", "ns.ideay.net.ni", "ns.ni", "ns.tmx.com.ni", "ns.uu.net", "ns1.bb-online.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3664 {"co.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3665 {"com.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3666 {"edu.ni", &z[1003], x, 0, e, w{"auth01.ns.uu.net", "dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3667 {"gob.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3668 {"gov.ni", &z[1003], x, 0, e, n, n, n, n, e, e, t},
3669 {"in.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3670 {"info.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3671 {"int.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns1.bb-online.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3672 {"mil.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3673 {"net.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3674 {"nom.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "dns.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3675 {"org.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3676 {"web.ni", &z[1003], x, 0, e, w{"dns-ext.nic.cr", "ns.ideay.net.ni", "ns.ni", "ns.uu.net", "ns2.ni", "ns3.ni"}, n, n, n, e, e, f},
3677 {"24.nl", &z[1010], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, n, n, n, e, e, t},
3678 {"co.nl", &z[1010], x, 0x200, e, w{"a.nic.co.nl", "b.nic.co.nl", "c.nic.co.nl", "d.nic.co.nl"}, n, n, n, e, e, f},
3679 {"com.nl", &z[1010], x, 0x200, e, w{"ns1.com.nl", "ns2.com.nl"}, w{"185.85.211.136"}, n, n, e, e, f},
3680 {"net.nl", &z[1010], x, 0x200, e, w{"ns1.com.nl", "ns2.com.nl"}, n, n, n, e, e, f},
3681 {"nom.nl", &z[1010], x, 0, e, w{"ns1.hostnet.nl", "ns2.hostnetbv.com", "ns3.hostnetbv.nl"}, n, n, n, e, e, f},
3682 {"punt.nl", &z[1010], x, 0x200, "http://www.punt.nl/", w{"nsn1.mijndomein.nl", "nsn2.mijndomein.nl", "nsn3.mijndomein.nl"}, w{"2a05:d018:964:c0a:a58f:6b32:e401:3d8a", "34.240.216.169", "hosting-1a.mijndomein-ws.nl"}, n, n, e, e, f},
3683 {"co.no", &z[1011], x, 0, "https://www.norid.no/index.en.html", w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, n, e, e, t},
3684 {"fhs.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3685 {"folkebibl.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3686 {"fylkesbibl.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3687 {"gs.no", &z[1011], x, 0, e, w{"ns1.hyp.net", "ns2.hyp.net", "ns3.hyp.net"}, n, n, n, e, e, f},
3688 {"idrett.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3689 {"museum.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3690 {"priv.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3691 {"uenorge.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3692 {"vgs.no", &z[1011], x, 0, e, w{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, n, e, e, f},
3693 {"academy.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3694 {"accountants.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3695 {"actor.np", &z[1019], x, 0, "https://register.com.np/", w{"manaslu.mos.com.np", "np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np", "sungava.mos.com.np"}, n, n, n, e, e, f},
3696 {"aero.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3697 {"agency.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3698 {"asia.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3699 {"associates.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3700 {"audio.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3701 {"bar.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3702 {"bargains.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3703 {"beer.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3704 {"bid.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3705 {"bike.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3706 {"bio.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3707 {"biz.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3708 {"black.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3709 {"blue.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "pch.nnic.np", "sec2.apnic.net"}, n, n, n, e, e, f},
3710 {"boutique.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3711 {"build.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3712 {"builders.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3713 {"buzz.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3714 {"cab.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3715 {"camera.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3716 {"camp.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3717 {"capital.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3718 {"cards.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3719 {"care.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3720 {"careers.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3721 {"cash.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3722 {"catering.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3723 {"center.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3724 {"ceo.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3725 {"christmas.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3726 {"clinic.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3727 {"clothing.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3728 {"club.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3729 {"codes.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3730 {"coffee.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3731 {"college.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3732 {"com.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3733 {"community.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3734 {"company.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3735 {"computer.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3736 {"cool.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3737 {"coop.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np", "sungava.mos.com.np"}, n, n, n, e, e, f},
3738 {"country.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3739 {"credit.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3740 {"creditcard.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3741 {"dental.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3742 {"diamonds.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3743 {"edu.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3744 {"email.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3745 {"engineering.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3746 {"estate.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3747 {"events.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3748 {"expert.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3749 {"finance.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3750 {"financial.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3751 {"fish.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3752 {"fishing.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3753 {"fitness.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3754 {"flights.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3755 {"florist.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3756 {"fund.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3757 {"furniture.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3758 {"futbol.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3759 {"gallery.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3760 {"gov.np", &z[1019], x, 0, "https://nitc.gov.np/", w{"koshi.nitc.gov.np", "mechi.nitc.gov.np", "np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns-np.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3761 {"guitars.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3762 {"guru.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3763 {"hiphop.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3764 {"hiv.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3765 {"house.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3766 {"industries.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3767 {"info.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3768 {"ink.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3769 {"jobs.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3770 {"limited.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3771 {"link.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3772 {"management.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3773 {"marketing.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3774 {"media.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3775 {"menu.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3776 {"mil.np", &z[1019], x, 0, "https://register.com.np/", w{"np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3777 {"mobi.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3778 {"museum.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3779 {"name.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3780 {"net.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3781 {"ninja.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3782 {"onl.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3783 {"org.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3784 {"partners.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3785 {"parts.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3786 {"photo.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "np.cctld.authdns.ripe.net", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3787 {"photos.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3788 {"pics.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3789 {"pink.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3790 {"pro.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3791 {"productions.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3792 {"products.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3793 {"properties.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3794 {"pub.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3795 {"red.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3796 {"rentals.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3797 {"repair.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3798 {"rest.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3799 {"rocks.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3800 {"services.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3801 {"shiksha.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3802 {"shoes.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3803 {"social.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3804 {"solar.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3805 {"solutions.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3806 {"space.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3807 {"supplies.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3808 {"supply.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3809 {"support.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3810 {"surf.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3811 {"surgery.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3812 {"systems.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3813 {"tattoo.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3814 {"tax.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3815 {"technology.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3816 {"tel.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3817 {"tips.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3818 {"today.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net"}, n, n, n, e, e, f},
3819 {"tools.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3820 {"town.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3821 {"trade.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3822 {"training.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3823 {"travel.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3824 {"university.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3825 {"vacations.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3826 {"ventures.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3827 {"villas.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3828 {"vision.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3829 {"vodka.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3830 {"voting.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3831 {"voyage.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3832 {"watch.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3833 {"webcam.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3834 {"wiki.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3835 {"works.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3836 {"wtf.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3837 {"xyz.np", &z[1019], x, 0, "https://register.com.np/", w{"np-ns.npix.net.np", "ns-ext.vix.com", "ns4.apnic.net", "pch.nnic.np", "sec2.apnic.net", "shikhar.mos.com.np"}, n, n, n, e, e, f},
3838 {"zone.np", &z[1019], x, 0, "https://register.com.np/", n, n, n, n, e, e, f},
3839 {"biz.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, n, e, e, f},
3840 {"com.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, e, f},
3841 {"edu.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, n, e, e, f},
3842 {"gov.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, e, f},
3843 {"info.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr"}, n, n, n, e, e, f},
3844 {"net.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, e, f},
3845 {"org.nr", &z[1020], x, 0, e, w{"ns0.cenpac.net.nr", "ns1.cenpac.net.nr", "ns2.cenpac.net.nr", "phloem.uoregon.edu"}, n, n, n, e, e, f},
3846 {"co.nu", &z[1024], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "co.nu"}, n, n, e, e, t},
3847 {"com.nu", &z[1024], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "com.nu"}, n, n, e, e, t},
3848 {"eu.nu", &z[1024], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "eu.nu"}, n, n, e, e, t},
3849 {"ie.nu", &z[1024], x, 0, e, w{"brain.bb-online.co.uk", "ns1.bb-online.net", "ns2.bb-online.net", "ns5.bb-online.net"}, n, n, n, e, e, t},
3850 {"info.nu", &z[1024], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "info.nu"}, n, n, e, e, t},
3851 {"ac.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3852 {"co.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3853 {"cri.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3854 {"geek.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3855 {"gen.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3856 {"govt.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3857 {"health.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, t},
3858 {"iwi.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3859 {"kiwi.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3860 {"maori.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3861 {"mil.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3862 {"net.nz", &z[1026], z[5101:5102], 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3863 {"org.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3864 {"parliament.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3865 {"school.nz", &z[1026], x, 0, e, w{"ns1.dns.net.nz", "ns2.dns.net.nz", "ns3.dns.net.nz", "ns4.dns.net.nz", "ns5.dns.net.nz", "ns6.dns.net.nz", "ns7.dns.net.nz"}, n, n, n, e, e, f},
3866 {"ac.om", &z[1037], x, 0, e, n, n, n, n, e, e, f},
3867 {"biz.om", &z[1037], x, 0, e, n, n, n, n, e, e, f},
3868 {"co.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3869 {"com.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3870 {"edu.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3871 {"gov.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3872 {"med.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3873 {"mil.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3874 {"museum.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3875 {"net.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3876 {"org.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3877 {"pro.om", &z[1037], x, 0, e, w{"cctld.alpha.aridns.net.au", "cctld.beta.aridns.net.au", "cctld.delta.aridns.net.au", "cctld.gamma.aridns.net.au", "ns1.registry.om", "ns2.registry.om"}, n, n, n, e, e, f},
3878 {"sch.om", &z[1037], x, 0, e, n, n, n, n, e, e, f},
3879 {"ae.org", &z[1048], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "ae.org"}, n, n, "whois.centralnic.com", e, t},
3880 {"eu.org", &z[1048], z[5102:5154], 0, e, w{"auth1.dns.elm.net", "dns4.gandi.net", "gra.wolfhugel.eu", "hobbes.bsd-dk.dk", "ns.bortzmeyer.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net", "wombat.billaud.eu.org"}, n, n, n, "whois.eu.org", e, t},
3881 {"hk.org", &z[1048], x, 0, e, w{"a.udrtld.net", "b.udrtld.net", "c.udrtld.net", "dns7.cloudns.net", "dns8.cloudns.net"}, n, n, n, "whois.registry.hk.com", e, f},
3882 {"js.org", &z[1048], x, 0, e, w{"miles.ns.cloudflare.com", "pam.ns.cloudflare.com"}, w{"89.41.169.49"}, n, n, e, e, t},
3883 {"us.org", &z[1048], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, w{"54.153.56.183", "us.org"}, n, n, "whois.centralnic.com", e, f},
3884 {"za.org", &z[1048], x, 0, e, w{"igubu.saix.net", "ns0.is.co.za", "ns0.plig.net", "ns1.plig.net", "ns2.plig.net", "ns3.iafrica.com", "ns4.iafrica.com"}, n, n, n, "whois.za.org", e, t},
3885 {"abo.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3886 {"ac.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3887 {"com.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3888 {"edu.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3889 {"gob.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3890 {"ing.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3891 {"med.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3892 {"net.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3893 {"nom.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3894 {"org.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3895 {"sld.pa", &z[1058], x, 0, e, w{"dns-ext.nic.cr", "ns.dns.br", "ns.nic.pa", "ns.pa", "ns2.pa", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
3896 {"com.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3897 {"edu.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3898 {"gob.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3899 {"gov.pe", &z[1074], x, 0, e, n, n, n, n, e, e, t},
3900 {"mil.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3901 {"net.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3902 {"nom.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3903 {"org.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, f},
3904 {"sld.pe", &z[1074], x, 0, e, w{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, n, e, e, t},
3905 {"asso.pf", &z[1078], x, 0, e, n, n, n, n, e, e, f},
3906 {"com.pf", &z[1078], x, 0, e, n, n, n, n, e, e, f},
3907 {"edu.pf", &z[1078], x, 0, e, n, n, n, n, e, e, f},
3908 {"gov.pf", &z[1078], x, 0, e, w{"ns1.gov.pf", "ns1.mana.pf", "ns2.gov.pf", "ns2.mana.pf", "reverse.gov.pf"}, n, n, n, e, e, f},
3909 {"org.pf", &z[1078], x, 0, e, n, n, n, n, e, e, f},
3910 {"ac.pg", &z[1080], x, 0, e, n, n, n, n, e, e, f},
3911 {"com.pg", &z[1080], x, 0, e, n, n, n, n, e, e, f},
3912 {"gov.pg", &z[1080], x, 0, e, n, n, n, n, e, e, f},
3913 {"mil.pg", &z[1080], x, 0, e, n, n, n, n, e, e, f},
3914 {"net.pg", &z[1080], x, 0, e, n, n, n, n, e, e, f},
3915 {"org.pg", &z[1080], x, 0, e, n, n, n, n, e, e, f},
3916 {"com.ph", &z[1081], x, 0, e, n, w{"45.79.222.138"}, n, n, e, e, f},
3917 {"edi.ph", &z[1081], x, 0, e, w{"ns1.dp47.parklogic.com", "ns2.dp47.parklogic.com", "ns3.dp47.parklogic.com", "ns4.dp47.parklogic.com", "ns5.dp47.parklogic.com"}, w{"2600:3c02:1::2d4f:f40e", "72.52.179.175", "edi.ph"}, n, n, e, e, t},
3918 {"edu.ph", &z[1081], x, 0, e, w{"evans.gov.ph", "gabriela.ph.net", "gomez.ph.net", "ph.wegen-energy.com"}, n, n, n, e, e, f},
3919 {"gov.ph", &z[1081], x, 0, e, w{"gabriela.ph.net", "gomez.ph.net", "ns1.gov.ph", "ns2.gov.ph"}, n, n, n, e, e, f},
3920 {"i.ph", &z[1081], x, 0, e, w{"nsi1.domains.ph", "nsi2.domains.ph"}, n, n, n, e, e, f},
3921 {"mil.ph", &z[1081], x, 0, e, n, w{"45.79.222.138"}, n, n, e, e, f},
3922 {"net.ph", &z[1081], x, 0, e, n, w{"45.79.222.138"}, n, n, e, e, f},
3923 {"ngo.ph", &z[1081], x, 0, e, n, w{"45.79.222.138"}, n, n, e, e, f},
3924 {"org.ph", &z[1081], x, 0, e, n, w{"45.79.222.138"}, n, n, e, e, f},
3925 {"biz.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3926 {"com.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3927 {"edu.pk", &z[1102], x, 0, e, n, n, n, n, e, e, t},
3928 {"fam.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3929 {"gkp.pk", &z[1102], x, 0, e, n, n, n, n, e, e, t},
3930 {"gob.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3931 {"gog.pk", &z[1102], x, 0, e, n, n, n, n, e, e, t},
3932 {"gok.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3933 {"gon.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3934 {"gop.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3935 {"gos.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3936 {"gov.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3937 {"net.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3938 {"org.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3939 {"web.pk", &z[1102], x, 0, e, n, n, n, n, e, e, f},
3940 {"agro.pl", &z[1103], x, 0, "https://domain.by/", w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3941 {"aid.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3942 {"art.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "hermes.sgh.waw.pl", "ns.tpnet.pl", "ns1.agh.edu.pl", "ns1.net.icm.edu.pl", "ns2.net.icm.edu.pl"}, n, n, n, e, e, f},
3943 {"atm.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3944 {"augustow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3945 {"auto.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3946 {"babia-gora.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3947 {"bedzin.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3948 {"beskidy.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3949 {"bialowieza.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, t},
3950 {"bialystok.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3951 {"bielawa.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3952 {"bieszczady.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3953 {"biz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3954 {"boleslawiec.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3955 {"bydgoszcz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3956 {"bytom.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3957 {"ciesyn.pl", &z[1103], x, 0, e, n, n, n, n, e, e, t},
3958 {"cieszyn.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3959 {"co.pl", &z[1103], x, 0, e, w{"ns1.co.pl", "ns2.co.pl"}, n, n, n, "whois.co.pl", e, t},
3960 {"com.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3961 {"czeladz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3962 {"czest.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3963 {"dlugoleka.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3964 {"edu.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3965 {"elblag.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3966 {"elk.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3967 {"gda.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "ns.tpnet.pl", "ns1.task.gda.pl", "ns2.task.gda.pl"}, n, n, n, e, e, f},
3968 {"gdansk.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "ns.tpnet.pl", "ns1.task.gda.pl", "ns2.task.gda.pl"}, n, n, n, e, e, f},
3969 {"glogow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3970 {"gmina.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3971 {"gniezno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3972 {"gniezon.pl", &z[1103], x, 0, e, n, n, n, n, e, e, t},
3973 {"gorlice.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3974 {"gov.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3975 {"grajewo.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3976 {"gsm.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3977 {"ilawa.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3978 {"info.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3979 {"jaworzno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3980 {"jaworzono.pl", &z[1103], x, 0, e, n, n, n, n, e, e, t},
3981 {"jelenia-gora.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3982 {"jgora.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3983 {"kalisz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3984 {"karpacz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3985 {"kartuzy.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3986 {"kaszuby.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3987 {"katowice.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3988 {"kazimierz-dolny.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3989 {"kepno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3990 {"ketrzyn.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3991 {"klodzko.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3992 {"kobierzyce.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3993 {"kolobrzeg.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3994 {"konin.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3995 {"konskowola.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3996 {"krakow.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "dns.fuw.edu.pl", "info.cyf-kr.edu.pl", "nms.cyf-kr.edu.pl"}, n, n, n, e, e, f},
3997 {"ksazuby.pl", &z[1103], x, 0, e, n, n, n, n, e, e, t},
3998 {"kutno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
3999 {"lapy.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4000 {"lebork.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4001 {"legnica.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4002 {"lezajsk.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4003 {"limanowa.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4004 {"lodz.pl", &z[1103], x, 0, e, w{"dns.man.lodz.pl", "dns2.man.lodz.pl", "dns4.man.lodz.pl", "ns1.tpnet.pl"}, n, n, n, e, e, f},
4005 {"lomza.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4006 {"lowicz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4007 {"lubin.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4008 {"lublin.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "ns1.lublin.pl", "ns2.lublin.pl"}, n, n, n, e, e, f},
4009 {"lukow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4010 {"mail.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4011 {"malbork.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4012 {"malopolska.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4013 {"mazowsze.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4014 {"mazury.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4015 {"media.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4016 {"miasta.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4017 {"mielec.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4018 {"mielno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4019 {"mil.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4020 {"mragowo.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4021 {"naklo.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4022 {"net.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4023 {"ngo.pl", &z[1103], x, 0, e, w{"ns1.ngo.pl", "ns2.ngo.pl"}, n, n, n, e, e, f},
4024 {"nieruchomosci.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4025 {"nom.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4026 {"nowaruda.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4027 {"nysa.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4028 {"olawa.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4029 {"olecko.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4030 {"olkusz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4031 {"olsztyn.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4032 {"opoczno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4033 {"opole.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4034 {"org.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4035 {"ostroda.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4036 {"ostroleka.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4037 {"ostrowiec.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4038 {"ostrowwlkp.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4039 {"pc.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4040 {"pila.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4041 {"pisz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4042 {"podhale.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4043 {"podlasie.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4044 {"polkowice.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4045 {"pomorskie.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4046 {"pomorze.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4047 {"powiat.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4048 {"poznan.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "dns.amu.edu.pl", "dns3.amu.edu.pl", "kirdan.nask.net.pl"}, n, n, n, e, e, f},
4049 {"priv.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4050 {"prochowice.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4051 {"pruszkow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4052 {"przeworsk.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4053 {"pulawy.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4054 {"radom.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4055 {"rawa-maz.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4056 {"realestate.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4057 {"rel.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4058 {"rybnik.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4059 {"rzeszow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4060 {"sanok.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4061 {"sejny.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4062 {"sex.pl", &z[1103], x, 0x1, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4063 {"shop.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4064 {"sklep.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4065 {"skoczow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4066 {"slask.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4067 {"slupsk.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4068 {"sos.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4069 {"sosnowiec.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4070 {"stalowa-wola.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4071 {"starachowice.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4072 {"stargard.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4073 {"suwalki.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4074 {"swidnica.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4075 {"swiebodzin.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4076 {"swinoujscie.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4077 {"szczecin.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4078 {"szczytno.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4079 {"szkola.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4080 {"targi.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4081 {"tarnobrzeg.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4082 {"tgory.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4083 {"tm.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4084 {"torun.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "blackbox.uci.uni.torun.pl", "flis.man.torun.pl", "koala.uci.uni.torun.pl"}, n, n, n, e, e, f},
4085 {"tourism.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4086 {"travel.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4087 {"turek.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4088 {"turystyka.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "d-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4089 {"tychy.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4090 {"ustka.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4091 {"walbrzych.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4092 {"warmia.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4093 {"warszawa.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4094 {"waw.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4095 {"wegrow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4096 {"wielun.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4097 {"wlocl.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4098 {"wloclawek.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4099 {"wodzislaw.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4100 {"wolomin.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4101 {"wroc.pl", &z[1103], x, 0, e, w{"bilbo.nask.org.pl", "kirdan.nask.net.pl", "ldhpux.immt.pwr.wroc.pl", "ns1.net.icm.edu.pl", "sun2.pwr.wroc.pl", "wask.wask.wroc.pl"}, n, n, n, e, e, f},
4102 {"wroclaw.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4103 {"zachpomor.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4104 {"zagan.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4105 {"zarow.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4106 {"zgora.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4107 {"zgorzelec.pl", &z[1103], x, 0, e, w{"a-dns.pl", "b-dns.pl", "c-dns.pl", "e-dns.pl", "f-dns.pl", "g-dns.pl", "h-dns.pl", "i-dns.pl"}, n, n, n, e, e, f},
4108 {"at.pn", &z[1110], z[5154:5155], 0, e, n, n, n, n, e, e, f},
4109 {"au.pn", &z[1110], z[5155:5156], 0, e, n, n, n, n, e, e, f},
4110 {"ca.pn", &z[1110], x, 0, e, n, n, n, n, e, e, f},
4111 {"ch.pn", &z[1110], x, 0, e, n, n, n, n, e, e, f},
4112 {"cn.pn", &z[1110], x, 0, e, n, n, n, n, e, e, f},
4113 {"co.pn", &z[1110], x, 0, e, w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, e, f},
4114 {"de.pn", &z[1110], x, 0, e, n, n, n, n, e, e, f},
4115 {"edu.pn", &z[1110], x, 0, e, w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, e, f},
4116 {"es.pn", &z[1110], x, 0, e, w{"ns-1377.awsdns-44.org", "ns-1574.awsdns-04.co.uk", "ns-29.awsdns-03.com", "ns-723.awsdns-26.net"}, n, n, n, e, e, f},
4117 {"eu.pn", &z[1110], x, 0x800, e, n, n, n, n, e, e, f},
4118 {"fr.pn", &z[1110], x, 0x800, e, n, n, n, n, e, e, f},
4119 {"gov.pn", &z[1110], x, 0, e, w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, e, f},
4120 {"in.pn", &z[1110], x, 0, e, w{"ns-1425.awsdns-50.org", "ns-1677.awsdns-17.co.uk", "ns-441.awsdns-55.com", "ns-906.awsdns-49.net"}, n, n, n, e, e, t},
4121 {"it.pn", &z[1110], x, 0, e, w{"ns1.speedydns.net", "ns2.speedydns.net"}, n, n, n, e, e, f},
4122 {"jp.pn", &z[1110], x, 0x800, e, n, n, n, n, e, e, f},
4123 {"net.pn", &z[1110], x, 0, e, w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, e, f},
4124 {"org.pn", &z[1110], x, 0, e, w{"dns1.nominetdns.uk", "dns4.nominetdns.uk", "ns0.pitcairn.net.pn", "ns1.pitcairn.net.pn"}, n, n, n, e, e, f},
4125 {"uk.pn", &z[1110], z[5156:5157], 0x800, e, n, n, n, n, e, e, f},
4126 {"us.pn", &z[1110], x, 0, e, n, n, n, n, e, e, f},
4127 {"ac.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4128 {"ag.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4129 {"ai.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4130 {"alumni.pr", &z[1118], x, 0, e, w{"descartes.nic.pr", "golomb.nic.pr", "pascal.nic.pr", "pr-dns.denic.de", "pr-ns.anycast.pch.net"}, n, n, n, e, e, t},
4131 {"at.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4132 {"au.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4133 {"aw.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4134 {"bb.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4135 {"biz.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4136 {"bm.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4137 {"br.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4138 {"bs.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4139 {"ch.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4140 {"cl.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4141 {"cn.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4142 {"com.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4143 {"de.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4144 {"dm.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4145 {"do.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4146 {"edu.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4147 {"en.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4148 {"es.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4149 {"est.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4150 {"eu.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4151 {"exalumnos.pr", &z[1118], x, 0, e, w{"descartes.nic.pr", "golomb.nic.pr", "pascal.nic.pr", "pr-dns.denic.de", "pr-ns.anycast.pch.net"}, n, n, n, e, e, t},
4152 {"fr.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4153 {"gd.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4154 {"gov.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4155 {"gp.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4156 {"ht.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4157 {"info.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4158 {"isla.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4159 {"it.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4160 {"jm.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4161 {"jp.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4162 {"ky.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4163 {"lc.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4164 {"ms.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4165 {"mx.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4166 {"name.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4167 {"net.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4168 {"nl.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4169 {"nom.pr", &z[1118], x, 0, e, n, n, n, n, e, e, f},
4170 {"org.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4171 {"pro.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4172 {"prof.pr", &z[1118], x, 0, e, w{"a0.pr.afilias-nst.info", "a2.pr.afilias-nst.info", "b0.pr.afilias-nst.org", "b2.pr.afilias-nst.org", "c0.pr.afilias-nst.info", "d0.pr.afilias-nst.org"}, n, n, n, e, e, f},
4173 {"tc.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4174 {"tt.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4175 {"uk.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4176 {"us.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4177 {"vg.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4178 {"vi.pr", &z[1118], x, 0x800, e, n, n, n, n, e, e, f},
4179 {"aaa.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4180 {"aca.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4181 {"acct.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4182 {"arc.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4183 {"avocat.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4184 {"bar.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4185 {"bus.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4186 {"cfp.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4187 {"chi.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4188 {"chiro.pro", &z[1123], x, 0, e, w{"dns111.ovh.net", "ns111.ovh.net"}, n, n, n, e, e, f},
4189 {"cpa.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4190 {"dds.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4191 {"den.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4192 {"dent.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4193 {"ed.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4194 {"eng.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4195 {"jur.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4196 {"law.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4197 {"med.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4198 {"min.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4199 {"nitr.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4200 {"nur.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4201 {"nurse.pro", &z[1123], x, 0, e, w{"park1.encirca.net", "park2.encirca.net"}, w{"3.209.180.95"}, n, n, e, e, f},
4202 {"opt.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4203 {"pa.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4204 {"pha.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4205 {"pharma.pro", &z[1123], x, 0, e, w{"ns1.sedoparking.com", "ns2.sedoparking.com"}, w{"64.190.62.111"}, n, n, e, e, f},
4206 {"pod.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4207 {"pr.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4208 {"prof.pro", &z[1123], x, 0, e, w{"dns1.encirca.net", "dns2.encirca.net"}, n, n, n, e, e, f},
4209 {"prx.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4210 {"pt.pro", &z[1123], x, 0, e, n, n, n, n, e, e, t},
4211 {"recht.pro", &z[1123], x, 0, e, w{"a0.pro.afilias-nst.info", "a2.pro.afilias-nst.info", "b0.pro.afilias-nst.org", "b2.pro.afilias-nst.org", "c0.pro.afilias-nst.info", "d0.pro.afilias-nst.org"}, n, n, n, e, e, f},
4212 {"rel.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4213 {"teach.pro", &z[1123], x, 0, e, w{"curitiba.porkbun.com", "fortaleza.porkbun.com", "maceio.porkbun.com", "salvador.porkbun.com"}, w{"44.230.85.241", "uixie.porkbun.com"}, n, n, e, e, f},
4214 {"vet.pro", &z[1123], x, 0, e, n, n, n, n, e, e, f},
4215 {"com.ps", &z[1134], x, 0, "https://www.pnina.ps/registration-policy/", w{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, n, e, e, f},
4216 {"edu.ps", &z[1134], x, 0, "https://www.tonic.to/", w{"dns1.gov.ps", "dns3.gov.ps", "dns4.pna.ps", "ns1.gov.ps", "ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps"}, n, n, n, e, e, f},
4217 {"gov.ps", &z[1134], x, 0, e, w{"dns1.gov.ps", "ns1.gov.ps", "ns1.palgov.net"}, n, n, n, e, e, f},
4218 {"mobi.ps", &z[1134], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, n, n, n, e, e, t},
4219 {"mun.ps", &z[1134], x, 0, e, w{"dns1.gov.ps", "dns2.gov.ps", "ns1.gov.ps", "ns2.pnina.ps"}, n, n, n, e, e, f},
4220 {"net.ps", &z[1134], x, 0, e, w{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, n, e, e, f},
4221 {"org.ps", &z[1134], x, 0, e, w{"ns1.pnina.ps", "ns2.pnina.ps", "ote.pnina.ps", "ps-ns.anycast.pch.net", "ps.cctld.authdns.ripe.net", "rip.psg.com"}, n, n, n, e, e, f},
4222 {"plo.ps", &z[1134], x, 0, e, w{"dns3.gov.ps", "dns4.pna.ps"}, n, n, n, e, e, t},
4223 {"sch.ps", &z[1134], x, 0, e, w{"dns1.gov.ps", "dns3.gov.ps", "ns1.gov.ps", "ns1.pnina.ps", "ns2.pnina.ps"}, n, n, n, e, e, f},
4224 {"co.pt", &z[1135], x, 0, e, w{"ns61.plako.net", "ns62.plako.net"}, w{"195.22.20.163"}, n, n, e, e, t},
4225 {"com.pt", &z[1135], x, 0, e, n, n, n, n, e, e, t},
4226 {"edu.pt", &z[1135], x, 0, e, n, n, n, n, e, e, f},
4227 {"gov.pt", &z[1135], x, 0, e, w{"a.dns.pt", "dns1.gov.pt", "europe1.dnsnode.net", "ns02.fccn.pt", "nsp.dnsnode.net"}, n, n, n, e, e, f},
4228 {"int.pt", &z[1135], x, 0, e, n, n, n, n, e, e, f},
4229 {"net.pt", &z[1135], x, 0, e, n, n, n, n, e, e, f},
4230 {"nome.pt", &z[1135], x, 0, e, n, n, n, n, e, e, f},
4231 {"org.pt", &z[1135], x, 0, e, n, n, n, n, e, e, f},
4232 {"publ.pt", &z[1135], x, 0, e, n, n, n, n, e, e, f},
4233 {"belau.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, w{"141.8.226.59"}, n, n, e, e, f},
4234 {"co.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, w{"141.8.226.59"}, n, n, e, e, t},
4235 {"com.pw", &z[1137], x, 0, e, w{"ns13.xincache.com", "ns14.xincache.com"}, n, n, n, e, e, f},
4236 {"ed.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, w{"141.8.226.59"}, n, n, e, e, t},
4237 {"edu.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, n, n, n, e, e, t},
4238 {"go.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, n, n, n, e, e, t},
4239 {"gov.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, n, n, n, e, e, f},
4240 {"ne.pw", &z[1137], x, 0, e, w{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, n, e, e, t},
4241 {"net.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, n, n, n, e, e, f},
4242 {"or.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, n, n, n, e, e, t},
4243 {"org.pw", &z[1137], x, 0, e, w{"ns1390.ztomy.com", "ns2390.ztomy.com"}, w{"141.8.226.59"}, n, n, e, e, f},
4244 {"com.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4245 {"coop.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4246 {"edu.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4247 {"gov.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4248 {"mil.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4249 {"net.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4250 {"org.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "l.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4251 {"una.py", &z[1139], x, 0, e, w{"b.dns.py", "c.dns.py", "p.dns.py", "u.dns.py"}, n, n, n, e, e, f},
4252 {"com.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, f},
4253 {"edu.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, t},
4254 {"gov.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, t},
4255 {"mil.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, t},
4256 {"name.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, f},
4257 {"net.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, f},
4258 {"org.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, t},
4259 {"sch.qa", &z[1140], x, 0, e, w{"a.registry.qa", "b.registry.qa", "c.registry.qa", "d.registry.qa", "e.registry.qa", "f.registry.qa", "g.registry.qa", "h.registry.qa", "i.registry.qa"}, n, n, n, e, e, t},
4260 {"asso.re", &z[1150], x, 0, e, n, n, n, n, e, e, f},
4261 {"com.re", &z[1150], x, 0, e, n, n, n, n, e, e, f},
4262 {"nom.re", &z[1150], x, 0, e, n, n, n, n, e, e, f},
4263 {"arts.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4264 {"co.ro", &z[1185], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, n, e, e, f},
4265 {"com.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4266 {"firm.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4267 {"info.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4268 {"ne.ro", &z[1185], x, 0, e, w{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, w{"185.27.255.9", "now.co.ro"}, n, n, e, e, f},
4269 {"nom.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4270 {"nt.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4271 {"or.ro", &z[1185], x, 0, e, w{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, w{"185.27.255.9", "now.co.ro"}, n, n, e, e, f},
4272 {"org.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4273 {"rec.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4274 {"ro.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4275 {"sa.ro", &z[1185], x, 0, e, w{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, w{"185.27.255.9", "now.co.ro"}, n, n, e, e, f},
4276 {"srl.ro", &z[1185], x, 0, e, w{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, w{"185.27.255.9", "now.co.ro"}, n, n, e, e, f},
4277 {"store.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4278 {"tm.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4279 {"www.ro", &z[1185], x, 0, e, n, n, n, n, e, e, f},
4280 {"ac.rs", &z[1194], x, 0, e, w{"ban.junis.ni.ac.rs", "gaea.rcub.bg.ac.rs", "ns.etf.bg.ac.rs", "ns.rcub.bg.ac.rs", "ns.unic.kg.ac.rs", "ns1.uns.ac.rs", "ns2.iif.hu", "odisej.telekom.rs"}, n, n, n, e, e, t},
4281 {"co.rs", &z[1194], x, 0, e, w{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, e, e, f},
4282 {"edu.rs", &z[1194], x, 0, e, w{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, e, e, f},
4283 {"gov.rs", &z[1194], x, 0, e, w{"dagda1.isp.telekom.rs", "ns1.gov.rs", "ns1.nic.rs", "ns2.gov.rs"}, n, n, n, e, e, f},
4284 {"in.rs", &z[1194], x, 0, e, w{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, e, e, f},
4285 {"org.rs", &z[1194], x, 0, e, w{"a.nic.rs", "b.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, e, e, f},
4286 {"ac.ru", &z[1196], x, 0, e, w{"ns-soa.darenet.dk", "ns1.free.net", "ns2.free.net"}, n, n, n, e, e, f},
4287 {"adygeya.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4288 {"bashkiria.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4289 {"bir.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4290 {"cbg.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4291 {"com.ru", &z[1196], x, 0, e, w{"ns3-com.nic.ru", "ns4-com.nic.ru", "ns8-com.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, f},
4292 {"dagestan.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4293 {"edu.ru", &z[1196], x, 0, e, w{"ns.informika.ru", "ns.msu.ru", "ns.runnet.ru", "ns2.free.net", "ns2.informika.ru"}, n, n, n, "whois.informika.ru", e, f},
4294 {"gov.ru", &z[1196], x, 0, e, w{"acl.dns.ripn.net", "bcl.dns.ripn.net", "ccl.dns.ripn.net", "ns.gov.ru", "ns2.gov.ru"}, n, n, n, e, e, f},
4295 {"grozny.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4296 {"int.ru", &z[1196], x, 0, e, w{"ns.macomnet.ru", "ns2.macomnet.ru", "ns3.macomnet.ru"}, n, n, n, e, e, f},
4297 {"kalmykia.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4298 {"kustanai.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4299 {"marine.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4300 {"mil.ru", &z[1196], x, 0, e, w{"ns1.mil.ru", "ns2.mil.ru", "ns4.mil.ru"}, n, n, n, e, e, f},
4301 {"mordovia.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4302 {"msk.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"185.76.145.93"}, n, n, e, e, f},
4303 {"mytis.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4304 {"nalchik.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4305 {"net.ru", &z[1196], x, 0, e, w{"a.dns-servers.net.ru", "b.dns-servers.net.ru", "d.dns-servers.net.ru", "e.dns-servers.net.ru", "f.dns-servers.net.ru"}, n, n, n, e, e, f},
4306 {"nov.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4307 {"org.ru", &z[1196], x, 0, e, w{"a.dns-servers.net.ru", "b.dns-servers.net.ru", "d.dns-servers.net.ru", "e.dns-servers.net.ru", "f.dns-servers.net.ru"}, n, n, n, e, e, f},
4308 {"pp.ru", &z[1196], x, 0, e, w{"a.dns-servers.net.ru", "b.dns-servers.net.ru", "d.dns-servers.net.ru", "e.dns-servers.net.ru", "f.dns-servers.net.ru"}, n, n, n, e, e, f},
4309 {"pyatigorsk.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4310 {"relarn.ru", &z[1196], x, 0, e, w{"int2.dns.ripn.net", "int3.dns.ripn.net", "ns.relarn.ru"}, n, n, n, e, e, f},
4311 {"spb.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, f},
4312 {"vladikavkaz.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4313 {"vladimir.ru", &z[1196], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4314 {"ac.rw", &z[1200], x, 0, e, w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, e, e, f},
4315 {"co.rw", &z[1200], x, 0, e, w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, e, e, f},
4316 {"com.rw", &z[1200], x, 0, e, n, n, n, n, e, e, f},
4317 {"edu.rw", &z[1200], x, 0, e, w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, e, e, f},
4318 {"gouv.rw", &z[1200], x, 0, e, n, n, n, n, e, e, f},
4319 {"gov.rw", &z[1200], x, 0, e, w{"ns1.rdb.rw", "ns2.aos.rw", "ns3.aos.rw"}, n, n, n, e, e, f},
4320 {"int.rw", &z[1200], x, 0, e, n, n, n, n, e, e, f},
4321 {"mil.rw", &z[1200], x, 0, e, w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, e, e, f},
4322 {"net.rw", &z[1200], x, 0, e, w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, e, e, f},
4323 {"org.rw", &z[1200], x, 0, e, w{"fork.sth.dnsnode.net", "ns-rw.afrinic.net", "ns1.ricta.org.rw", "ns3.ricta.org.rw", "pch.ricta.org.rw"}, n, n, n, e, e, f},
4324 {"com.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4325 {"edu.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4326 {"gov.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4327 {"med.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4328 {"net.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4329 {"org.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4330 {"pub.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4331 {"sch.sa", &z[1203], x, 0, e, w{"c1.dns.sa", "c2.dns.sa", "i1.dns.sa", "n1.dns.sa", "p1.dns.sa", "s1.dns.sa", "s2.dns.sa"}, n, n, n, e, e, f},
4332 {"com.sb", &z[1223], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, e, e, f},
4333 {"edu.sb", &z[1223], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, e, e, f},
4334 {"gov.sb", &z[1223], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, e, e, f},
4335 {"net.sb", &z[1223], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, e, e, f},
4336 {"org.sb", &z[1223], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, n, e, e, f},
4337 {"com.sc", &z[1226], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4338 {"edu.sc", &z[1226], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4339 {"gov.sc", &z[1226], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4340 {"net.sc", &z[1226], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4341 {"org.sc", &z[1226], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4342 {"com.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "ns1.uaenic.ae", "ns2.uaenic.ae", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4343 {"edu.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4344 {"gov.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "ns1.uaenic.ae", "ns2.uaenic.ae", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4345 {"info.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4346 {"med.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4347 {"net.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4348 {"org.sd", &z[1240], x, 0, e, w{"ans1.canar.sd", "ans1.sis.sd", "ans2.canar.sd", "ns-sd.afrinic.net", "ns.cocca.fr", "pch.sis.sd", "sd.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4349 {"tv.sd", &z[1240], x, 0, e, w{"ns1.domains.sd", "ns2.domains.sd"}, n, n, n, e, e, f},
4350 {"a.se", &z[1241], x, 0, e, n, n, n, n, e, e, t},
4351 {"ac.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4352 {"b.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4353 {"bd.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4354 {"c.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4355 {"com.se", &z[1241], x, 0, e, w{"ns1.centralnic.net", "ns2.centralnic.net", "ns3.centralnic.net", "ns4.centralnic.net"}, n, n, n, "whois.centralnic.com", e, f},
4356 {"d.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4357 {"e.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4358 {"f.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4359 {"g.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4360 {"h.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4361 {"i.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4362 {"k.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4363 {"l.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4364 {"m.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4365 {"mil.se", &z[1241], x, 0, e, w{"dns6.telia.com", "ns.defence.se", "ns.mil.se", "ns2.mil.se", "ns3.mil.se", "pitea.dns.swip.net"}, n, n, n, e, e, f},
4366 {"n.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4367 {"o.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4368 {"org.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4369 {"p.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4370 {"parti.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4371 {"pp.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4372 {"press.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4373 {"r.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4374 {"s.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4375 {"t.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4376 {"tm.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4377 {"u.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4378 {"w.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4379 {"x.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4380 {"y.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4381 {"z.se", &z[1241], x, 0, e, n, n, n, n, e, e, f},
4382 {"com.sg", &z[1256], x, 0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, n, e, e, t},
4383 {"edu.sg", &z[1256], x, 0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, n, e, e, f},
4384 {"gov.sg", &z[1256], x, 0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, n, e, e, f},
4385 {"net.sg", &z[1256], x, 0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, n, e, e, f},
4386 {"org.sg", &z[1256], x, 0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, n, e, e, f},
4387 {"per.sg", &z[1256], x, 0, e, w{"dsany.sgnic.sg", "dsany2.sgnic.sg", "dsany3.sgnic.sg", "pch.sgzones.sg"}, n, n, n, e, e, f},
4388 {"co.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4389 {"com.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4390 {"edu.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4391 {"gov.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4392 {"net.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4393 {"nom.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4394 {"org.sh", &z[1257], x, 0x800, e, n, n, n, n, e, e, t},
4395 {"ae.si", &z[1272], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4396 {"at.si", &z[1272], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4397 {"cn.si", &z[1272], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4398 {"co.si", &z[1272], x, 0, e, w{"b.ns14.net", "c.ns14.net", "d.ns14.net", "ns.2020.si"}, n, n, n, e, e, f},
4399 {"de.si", &z[1272], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4400 {"uk.si", &z[1272], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4401 {"us.si", &z[1272], x, 0, e, w{"ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4402 {"com.sl", &z[1285], x, 0, e, w{"ns1.neoip.com", "ns2.neoip.com"}, n, n, n, e, e, f},
4403 {"edu.sl", &z[1285], x, 0, e, w{"ns1.neoip.com"}, n, n, n, e, e, t},
4404 {"gov.sl", &z[1285], x, 0, e, w{"ns1.neoip.com", "ns2.neoip.com"}, n, n, n, e, e, f},
4405 {"net.sl", &z[1285], x, 0, e, w{"ns1.neoip.com", "ns2.neoip.com"}, n, n, n, e, e, f},
4406 {"org.sl", &z[1285], x, 0, e, w{"ns1.neoip.com", "ns2.neoip.com"}, n, n, n, e, e, f},
4407 {"art.sn", &z[1290], x, 0, e, w{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, n, e, e, f},
4408 {"com.sn", &z[1290], x, 0, e, w{"ns.nic.sn", "ns.ucad.sn", "ns3.cctld.sn"}, n, n, n, e, e, f},
4409 {"edu.sn", &z[1290], x, 0, e, w{"ns.nic.sn", "ns.ucad.sn", "ns3.cctld.sn"}, n, n, n, e, e, f},
4410 {"gouv.sn", &z[1290], x, 0, e, w{"ns.gouv.sn", "ns.ucad.sn", "ns2.gouv.sn", "ns3.gouv.sn"}, n, n, n, e, e, t},
4411 {"org.sn", &z[1290], x, 0, e, w{"ns.nic.sn", "ns.ucad.sn", "ns3.cctld.sn"}, n, n, n, e, e, f},
4412 {"perso.sn", &z[1290], x, 0, e, w{"ns1.dns.com", "ns2.dns.com"}, n, n, n, e, e, f},
4413 {"univ.sn", &z[1290], x, 0, e, w{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, n, e, e, t},
4414 {"com.so", &z[1292], x, 0, e, w{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, n, e, e, f},
4415 {"edu.so", &z[1292], x, 0, e, w{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, n, e, e, t},
4416 {"net.so", &z[1292], x, 0, e, w{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, n, e, e, f},
4417 {"org.so", &z[1292], x, 0, e, w{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, n, e, e, f},
4418 {"uber.space", &z[1304], x, 0, e, w{"ns1.jonaspasche.com", "ns2.jonaspasche.com", "ns3.jonaspasche.com"}, n, n, n, e, e, t},
4419 {"biz.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4420 {"com.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4421 {"edu.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4422 {"me.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4423 {"net.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4424 {"org.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4425 {"sch.ss", &z[1313], x, 0, e, n, n, n, n, e, e, t},
4426 {"co.st", &z[1314], x, 0, e, w{"ns1-se.ns.gov.st", "ns1-us.ns.gov.st", "ns2-se.ns.gov.st"}, n, n, n, e, e, f},
4427 {"com.st", &z[1314], x, 0, e, w{"ns1-se.ns.gov.st", "ns1-us.ns.gov.st", "ns2-se.ns.gov.st"}, n, n, n, e, e, f},
4428 {"consulado.st", &z[1314], x, 0, e, w{"ns1.bahnhof.net", "ns2.bahnhof.net"}, n, n, n, e, e, f},
4429 {"edu.st", &z[1314], x, 0, e, w{"ns1.nic.st", "ns2.nic.st", "ns3.nic.st"}, n, n, n, e, e, f},
4430 {"embaixada.st", &z[1314], x, 0, e, w{"ns1.bahnhof.net", "ns2.bahnhof.net"}, n, n, n, e, e, t},
4431 {"embaizada.st", &z[1314], x, 0, e, n, n, n, n, e, e, f},
4432 {"gov.st", &z[1314], x, 0, e, w{"ns1.gov.st", "ns2.gov.st"}, n, n, n, e, e, f},
4433 {"mil.st", &z[1314], x, 0, e, w{"ns.bahnhof.se", "ns2.bahnhof.net"}, n, n, n, e, e, f},
4434 {"net.st", &z[1314], x, 0, e, w{"ns1.nic.st", "ns2.nic.st", "ns3.nic.st"}, n, n, n, e, e, f},
4435 {"org.st", &z[1314], x, 0, e, w{"ns1.webhosting.st", "ns2.webhosting.st"}, n, n, n, e, e, f},
4436 {"principe.st", &z[1314], x, 0, e, w{"ns1.govhost.st", "ns2.govhost.st", "ns3.govhost.st"}, n, n, n, e, e, f},
4437 {"saotome.st", &z[1314], x, 0, e, w{"ns1.govhost.st", "ns2.govhost.st"}, n, n, n, e, e, f},
4438 {"store.st", &z[1314], x, 0, e, w{"ns.bahnhof.se", "ns2.bahnhof.net"}, n, n, n, e, e, f},
4439 {"abkhazia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4440 {"adygeya.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4441 {"aktyubinsk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4442 {"arkhangelsk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4443 {"armenia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4444 {"ashgabad.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4445 {"azerbaijan.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4446 {"balashov.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4447 {"bashkiria.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4448 {"bryansk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4449 {"bukhara.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4450 {"chimkent.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4451 {"dagestan.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4452 {"east-kazakhstan.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4453 {"exnet.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4454 {"georgia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4455 {"grozny.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4456 {"ivanovo.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4457 {"jambyl.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4458 {"kalmykia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4459 {"kaluga.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4460 {"karacol.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4461 {"karaganda.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4462 {"karelia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4463 {"khakassia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4464 {"krasnodar.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4465 {"kurgan.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4466 {"kustanai.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4467 {"lenug.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4468 {"mangyshlak.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4469 {"mordovia.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4470 {"msk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4471 {"murmansk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4472 {"nalchik.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4473 {"navoi.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4474 {"north-kazakhstan.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4475 {"nov.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4476 {"obninsk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4477 {"penza.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4478 {"pokrovsk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4479 {"sochi.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4480 {"spb.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4481 {"tashkent.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4482 {"termez.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4483 {"togliatti.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4484 {"troitsk.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4485 {"tselinograd.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4486 {"tula.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4487 {"tuva.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, w{"178.210.89.119"}, n, n, e, e, t},
4488 {"vladikavkaz.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4489 {"vladimir.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4490 {"vologda.su", &z[1332], x, 0, e, w{"ns3-geo.nic.ru", "ns4-geo.nic.ru", "ns8-geo.nic.ru"}, n, n, n, e, e, t},
4491 {"com.sv", &z[1341], x, 0, e, n, n, n, n, e, e, f},
4492 {"edu.sv", &z[1341], x, 0, e, n, n, n, n, e, e, f},
4493 {"gob.sv", &z[1341], x, 0, e, n, n, n, n, e, e, f},
4494 {"org.sv", &z[1341], x, 0, e, n, n, n, n, e, e, f},
4495 {"red.sv", &z[1341], x, 0, e, n, n, n, n, e, e, f},
4496 {"com.sy", &z[1347], x, 0, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4497 {"edu.sy", &z[1347], x, 0, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4498 {"gov.sy", &z[1347], x, 0, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4499 {"mil.sy", &z[1347], x, 0, e, w{"ns31.cloudns.net", "ns32.cloudns.net", "ns33.cloudns.net", "ns34.cloudns.net"}, n, n, n, e, e, f},
4500 {"net.sy", &z[1347], x, 0, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4501 {"org.sy", &z[1347], x, 0, e, w{"ns1.tld.sy", "pch.anycast.tld.sy", "sy.cctld.authdns.ripe.net"}, n, n, n, e, e, f},
4502 {"ac.sz", &z[1351], x, 0, e, n, n, n, n, e, e, f},
4503 {"co.sz", &z[1351], x, 0, e, n, n, n, n, e, e, f},
4504 {"org.sz", &z[1351], x, 0, e, n, n, n, n, e, e, f},
4505 {"at.tc", &z[1363], z[5157:5158], 0, e, w{"ns1.123k-elazz.com", "ns2.123k-elazz.com"}, n, n, n, e, e, f},
4506 {"au.tc", &z[1363], z[5158:5159], 0, e, n, n, n, n, e, e, f},
4507 {"be.tc", &z[1363], x, 0, e, w{"ns1.be.tc", "ns2.be.tc"}, w{"213.136.89.177"}, n, n, e, e, f},
4508 {"biz.tc", &z[1363], x, 0, "https://www.biz.tc/", w{"ns1.nudrv.com", "ns2.nudrv.com"}, w{"64.136.20.39"}, n, n, e, e, f},
4509 {"br.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4510 {"ch.tc", &z[1363], x, 0, e, w{"ns1.swisscenter.com", "ns2.swisscenter.com"}, n, n, n, e, e, f},
4511 {"com.tc", &z[1363], x, 0, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, n, e, e, t},
4512 {"cz.tc", &z[1363], x, 0, e, w{"ns1.ispapi.net", "ns2.ispapi.net", "ns3.ispapi.net"}, n, n, n, e, e, f},
4513 {"de.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4514 {"dk.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4515 {"edu.tc", &z[1363], x, 0, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, n, e, e, f},
4516 {"es.tc", &z[1363], x, 0, e, w{"ns1.es.tc", "ns2.es.tc"}, n, n, n, e, e, t},
4517 {"eu.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4518 {"hk.tc", &z[1363], x, 0, e, w{"drew.ns.cloudflare.com", "kia.ns.cloudflare.com"}, n, n, n, e, e, f},
4519 {"hu.tc", &z[1363], x, 0x800, e, n, n, n, n, e, e, f},
4520 {"ie.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4521 {"int.tc", &z[1363], x, 0, e, w{"ns1.int.tc", "ns2.int.tc"}, n, n, n, e, e, f},
4522 {"it.tc", &z[1363], x, 0, e, w{"ns0.dnsmadeeasy.com", "ns1.dnsmadeeasy.com", "ns3.dnsmadeeasy.com", "ns4.dnsmadeeasy.com"}, n, n, n, e, e, f},
4523 {"kr.tc", &z[1363], x, 0, e, w{"ns.udag.de", "ns.udag.net", "ns.udag.org"}, n, n, n, e, e, f},
4524 {"mx.tc", &z[1363], x, 0, e, w{"leah.ns.cloudflare.com", "noah.ns.cloudflare.com"}, n, n, n, e, e, f},
4525 {"net.tc", &z[1363], x, 0, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc"}, n, n, n, e, e, f},
4526 {"no.tc", &z[1363], x, 0, e, w{"betty.ns.cloudflare.com", "kai.ns.cloudflare.com"}, w{"77.79.104.210"}, n, n, e, e, f},
4527 {"org.tc", &z[1363], x, 0, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, n, e, e, t},
4528 {"ph.tc", &z[1363], x, 0, e, w{"ns1.openprovider.nl", "ns2.openprovider.be", "ns3.openprovider.eu"}, n, n, n, e, e, f},
4529 {"pl.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4530 {"pro.tc", &z[1363], x, 0, e, w{"root1.zone.tc", "root2.zone.tc", "root3.zone.tc", "root4.zone.tc", "root5.zone.tc", "root6.zone.tc", "root7.zone.tc", "root8.zone.tc"}, n, n, n, e, e, f},
4531 {"ru.tc", &z[1363], x, 0, e, w{"ns1.bodis.com", "ns2.bodis.com"}, w{"199.59.242.153"}, n, n, e, e, f},
4532 {"se.tc", &z[1363], x, 0, e, w{"gabriel.ns.cloudflare.com", "jamie.ns.cloudflare.com"}, n, n, n, e, e, f},
4533 {"shop.tc", &z[1363], x, 0, e, w{"ns.onshore.net", "ns2.onshore.net"}, n, n, n, e, e, f},
4534 {"th.tc", &z[1363], x, 0, e, w{"ns-cloud-b1.googledomains.com", "ns-cloud-b2.googledomains.com", "ns-cloud-b3.googledomains.com", "ns-cloud-b4.googledomains.com"}, n, n, n, e, e, f},
4535 {"ua.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4536 {"uk.tc", &z[1363], z[5159:5162], 0, e, w{"ns1.uk.tc", "ns2.uk.tc"}, n, n, n, e, e, f},
4537 {"us.tc", &z[1363], x, 0, e, n, n, n, n, e, e, f},
4538 {"com.td", &z[1365], x, 0, e, n, n, n, n, e, e, f},
4539 {"net.td", &z[1365], x, 0, e, n, n, n, n, e, e, f},
4540 {"org.td", &z[1365], x, 0, e, n, n, n, n, e, e, f},
4541 {"tourism.td", &z[1365], x, 0, e, n, n, n, n, e, e, f},
4542 {"at.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4543 {"bg.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4544 {"ca.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4545 {"ch.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4546 {"cz.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4547 {"de.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4548 {"edu.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4549 {"eu.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4550 {"int.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4551 {"net.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4552 {"pl.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4553 {"ru.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4554 {"sg.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4555 {"us.tf", &z[1377], x, 0, e, w{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, n, e, e, f},
4556 {"ac.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4557 {"co.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4558 {"go.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4559 {"in.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4560 {"mi.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4561 {"net.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4562 {"or.th", &z[1379], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "c.thains.co.th", "ns.thnic.net", "p.thains.co.th"}, n, n, n, e, e, f},
4563 {"ac.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4564 {"aero.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4565 {"biz.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4566 {"co.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4567 {"com.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4568 {"coop.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4569 {"dyn.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4570 {"edu.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4571 {"go.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4572 {"gov.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4573 {"info.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4574 {"int.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4575 {"mil.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4576 {"museum.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4577 {"my.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4578 {"name.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4579 {"net.tj", &z[1395], x, 0x800, e, n, n, n, n, e, e, f},
4580 {"org.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4581 {"per.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4582 {"pro.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4583 {"web.tj", &z[1395], x, 0, e, n, n, n, n, e, e, f},
4584 {"24.tl", &z[1400], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "24.tl"}, n, n, e, e, t},
4585 {"com.tl", &z[1400], x, 0, e, w{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4586 {"gov.tl", &z[1400], x, 0, e, w{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4587 {"in.tl", &z[1400], x, 0x800, e, n, n, n, n, e, e, f},
4588 {"na.tl", &z[1400], x, 0, e, w{"ns1.afraid.org", "ns2.afraid.org", "ns3.afraid.org", "ns4.afraid.org"}, n, n, n, e, e, t},
4589 {"net.tl", &z[1400], x, 0, e, w{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4590 {"org.tl", &z[1400], x, 0, e, w{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, n, e, e, f},
4591 {"co.tm", &z[1401], x, 0, e, w{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, n, e, e, t},
4592 {"com.tm", &z[1401], x, 0, e, w{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, n, e, e, f},
4593 {"edu.tm", &z[1401], x, 0, e, w{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, n, e, e, f},
4594 {"gov.tm", &z[1401], x, 0, e, w{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, n, e, e, f},
4595 {"mil.tm", &z[1401], x, 0, e, w{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, n, e, e, t},
4596 {"net.tm", &z[1401], x, 0, e, w{"ns05.telecom.tm", "ns06.telecom.tm", "webns1.telecom.tm", "webns2.telecom.tm"}, n, n, n, e, e, f},
4597 {"nom.tm", &z[1401], x, 0x800, e, n, n, n, n, e, e, t},
4598 {"org.tm", &z[1401], x, 0, e, w{"dns01.nic.tm", "dns1.nic.tm", "dns2.nic.tm", "dns3.nic.tm", "dns4.nic.tm", "dns5.nic.tm", "dns6.nic.tm", "dns7.nic.tm"}, n, n, n, e, e, f},
4599 {"agrinet.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4600 {"com.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4601 {"defense.tn", &z[1403], x, 0, e, w{"ns1.defense.tn", "ns2.defense.tn"}, n, n, n, e, e, f},
4602 {"edunet.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4603 {"ens.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4604 {"fin.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4605 {"gov.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4606 {"ind.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4607 {"info.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4608 {"intl.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4609 {"mincom.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4610 {"nat.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4611 {"net.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4612 {"org.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4613 {"perso.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4614 {"rnrt.tn", &z[1403], x, 0, e, w{"ns1.cck.rnu.tn", "ns2.cck.rnu.tn", "ns3.cck.rnu.tn"}, n, n, n, e, e, f},
4615 {"rns.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4616 {"rnu.tn", &z[1403], x, 0, e, w{"ns1.cck.rnu.tn", "ns2.cck.rnu.tn", "ns3.cck.rnu.tn"}, n, n, n, e, e, f},
4617 {"tourism.tn", &z[1403], x, 0, e, w{"ns1.ati.tn", "ns2.ati.tn"}, n, n, n, e, e, f},
4618 {"com.tp", &z[1417], x, 0x800, e, n, n, n, n, e, e, f},
4619 {"or.tp", &z[1417], x, 0x800, e, n, n, n, n, e, e, f},
4620 {"org.tp", &z[1417], x, 0x800, e, n, n, n, n, e, e, f},
4621 {"av.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4622 {"bbs.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4623 {"bel.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4624 {"biz.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4625 {"com.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4626 {"dr.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4627 {"edu.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4628 {"gen.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4629 {"gov.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4630 {"info.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4631 {"k12.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4632 {"mil.tr", &z[1418], x, 0, e, n, n, n, n, e, e, t},
4633 {"name.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4634 {"nc.tr", &z[1418], x, 0, e, w{"ns1.nc.tr", "ns2.nc.tr"}, n, n, n, e, e, t},
4635 {"net.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4636 {"org.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4637 {"pol.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4638 {"tel.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4639 {"tsk.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4640 {"tv.tr", &z[1418], x, 0, e, w{"lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4641 {"web.tr", &z[1418], x, 0, e, w{"lns31.nic.tr", "lns34.nic.tr", "lns35.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns61.nic.tr", "lns71.nic.tr"}, n, n, n, e, e, t},
4642 {"aero.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4643 {"at.tt", &z[1433], z[5162:5163], 0, e, w{"a.ns.viennaweb.at", "b.ns.viennaweb.at"}, w{"195.225.236.206"}, n, n, e, e, f},
4644 {"au.tt", &z[1433], z[5163:5164], 0, e, n, n, n, n, e, e, f},
4645 {"be.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4646 {"biz.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4647 {"ca.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4648 {"cat.tt", &z[1433], x, 0, e, w{"ns-1084.awsdns-07.org", "ns-1826.awsdns-36.co.uk", "ns-455.awsdns-56.com", "ns-732.awsdns-27.net"}, n, n, n, e, e, t},
4649 {"ch.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4650 {"co.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4651 {"com.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4652 {"coop.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4653 {"de.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4654 {"edu.tt", &z[1433], x, 0, e, w{"ns1.edu.tt", "ns2.edu.tt"}, n, n, n, e, e, f},
4655 {"es.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4656 {"eu.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4657 {"fr.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4658 {"gov.tt", &z[1433], x, 0, e, w{"dns5.gov.tt", "dns6.gov.tt", "dns7.gov.tt", "dns8.gov.tt"}, n, n, n, e, e, f},
4659 {"info.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4660 {"int.tt", &z[1433], x, 0, e, w{"ns1.dnsdun.com", "ns1.dnsdun.net"}, n, n, n, e, e, t},
4661 {"it.tt", &z[1433], x, 0, e, w{"ns1.dnsv2.com", "ns2.dnsv2.com"}, n, n, n, e, e, f},
4662 {"jobs.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4663 {"mobi.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4664 {"museum.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4665 {"name.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4666 {"net.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4667 {"nl.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4668 {"org.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4669 {"pro.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4670 {"tel.tt", &z[1433], x, 0, e, n, n, n, n, e, e, t},
4671 {"travel.tt", &z[1433], x, 0x800, e, n, n, n, n, e, e, t},
4672 {"uk.tt", &z[1433], z[5164:5167], 0, e, n, n, n, n, e, e, f},
4673 {"us.tt", &z[1433], x, 0, e, n, n, n, n, e, e, f},
4674 {"club.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4675 {"com.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4676 {"ebiz.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4677 {"edu.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "edudns-a1.edu.tw", "edudns-a2.edu.tw", "edudns-a3.edu.tw", "moemoon.edu.tw", "moestar.edu.tw"}, n, n, n, e, e, t},
4678 {"game.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4679 {"gov.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4680 {"idv.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4681 {"mil.tw", &z[1440], x, 0, e, w{"dns1.mil.tw", "dns2.mil.tw"}, n, n, n, e, e, t},
4682 {"net.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4683 {"org.tw", &z[1440], x, 0, e, w{"a.twnic.net.tw", "anytld.apnic.net", "b.twnic.net.tw", "c.twnic.net.tw", "d.twnic.net.tw", "e.twnic.net.tw", "f.twnic.net.tw", "g.twnic.net.tw", "h.dns.tw", "h.twnic.net.tw"}, n, n, n, e, e, t},
4684 {"xn--czrw28b.tw" /* 商業.tw */, &z[1440], x, 0, "https://www.twnic.tw/", n, n, n, n, e, e, t},
4685 {"xn--uc0atv.tw" /* 組織.tw */, &z[1440], x, 0, "https://www.twnic.tw/", n, n, n, n, e, e, t},
4686 {"xn--zf0ao64a.tw" /* 網路.tw */, &z[1440], x, 0, "https://www.twnic.tw/", n, n, n, n, e, e, t},
4687 {"ac.tz", &z[1441], x, 0, e, w{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, n, e, e, f},
4688 {"co.tz", &z[1441], x, 0, e, w{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, n, e, e, f},
4689 {"go.tz", &z[1441], x, 0, e, w{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, n, e, e, f},
4690 {"hotel.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4691 {"info.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4692 {"me.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4693 {"mil.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4694 {"mobi.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4695 {"ne.tz", &z[1441], x, 0, e, w{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, n, e, e, f},
4696 {"or.tz", &z[1441], x, 0, e, w{"d.ext.nic.cz", "fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz", "rip.psg.com"}, n, n, n, e, e, f},
4697 {"sc.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4698 {"tv.tz", &z[1441], x, 0, e, w{"fork.sth.dnsnode.net", "ns.anycast.co.tz", "ns2.tznic.or.tz"}, n, n, n, e, e, f},
4699 {"biz.ua", &z[1442], x, 0, e, w{"ns1.uadns.com", "ns2.uadns.com", "ns3.uadns.com"}, n, n, n, e, e, f},
4700 {"cherkassy.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns2.km.ua"}, n, n, n, e, e, f},
4701 {"cherkasy.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "nix.ns.ua", "ns2.km.ua"}, n, n, n, e, e, t},
4702 {"chernigov.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"nix.ns.ua", "ns.dn.ua", "ns3.cn.ua"}, n, n, n, e, e, f},
4703 {"chernivtsi.ua", &z[1442], x, 0, e, w{"nix.ns.ua", "ns.cv.ua", "ns.kharkov.ua", "ns2.km.ua"}, n, n, n, e, e, t},
4704 {"chernovtsy.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns.cv.ua", "ns2.km.ua"}, n, n, n, e, e, f},
4705 {"ck.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns2.km.ua"}, n, n, n, e, e, f},
4706 {"cn.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"nix.ns.ua", "ns.dn.ua", "ns3.cn.ua"}, n, n, n, e, e, f},
4707 {"co.ua", &z[1442], x, 0, e, w{"ns1.uadns.com", "ns2.uadns.com", "ns3.uadns.com"}, n, n, n, "whois.co.ua", e, f},
4708 {"com.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.com.ua", "k.ns.com.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4709 {"crimea.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.crimea.ua", "nix.ns.ua", "ns.crimea.ua"}, n, n, n, "whois.crimea.ua", e, f},
4710 {"cv.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns.cv.ua", "ns2.km.ua"}, n, n, n, e, e, f},
4711 {"dn.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4712 {"dnepropetrovsk.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ns.dp.ua", "s1.ns.dp.ua", "s2.ns.dp.ua", "s3.ns.dp.ua"}, n, n, n, e, e, f},
4713 {"dnipropetrovsk.ua", &z[1442], x, 0, e, w{"ns.dp.ua", "s1.ns.dp.ua", "s2.ns.dp.ua", "s3.ns.dp.ua"}, n, n, n, e, e, t},
4714 {"donetsk.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4715 {"dp.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ns.dp.ua", "s1.ns.dp.ua", "s2.ns.dp.ua", "s3.ns.dp.ua"}, n, n, n, e, e, f},
4716 {"edu.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "deneb.dfn.de", "ho1.ns.edu.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4717 {"gov.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "ho1.ns.gov.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4718 {"if.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.if.ua", "nix.ns.ua", "ns.dn.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4719 {"in.ua", &z[1442], x, 0, e, w{"ho1.ns.od.ua", "ns.in.ua", "nss.ukr.net"}, n, n, n, "whois.in.ua", e, f},
4720 {"ivano-frankivsk.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.if.ua", "nix.ns.ua", "ns.dn.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4721 {"kh.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4722 {"kharkiv.ua", &z[1442], x, 0, e, w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, t},
4723 {"kharkov.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4724 {"kherson.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.ns.ks.ua", "nix.ns.ua", "ns.dn.ua", "ns.kharkov.ua", "ns.ks-host.com"}, n, n, n, e, e, f},
4725 {"khmelnitskiy.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "nix.ns.ua", "ns.km.ua", "ns2.km.ua", "ns3.km.ua"}, n, n, n, e, e, f},
4726 {"kiev.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.kiev.ua", "k.ns.com.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4727 {"kirovograd.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns.host.kr.ua", "ns.infocom.kr.ua"}, n, n, n, e, e, f},
4728 {"km.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns.km.ua", "ns2.km.ua", "ns3.km.ua"}, n, n, n, e, e, f},
4729 {"kr.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns.host.kr.ua", "ns.infocom.kr.ua"}, n, n, n, e, e, f},
4730 {"ks.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.ns.ks.ua", "nix.ns.ua", "ns.dn.ua", "ns.kharkov.ua", "ns.ks-host.com"}, n, n, n, e, e, f},
4731 {"kyiv.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "ho1.ns.kiev.ua", "k.ns.com.ua", "nix.ns.ua"}, n, n, n, e, e, t},
4732 {"lg.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4733 {"lt.ua", &z[1442], x, 0, e, w{"ho1.ns.lutsk.ua", "nix.ns.ua", "ns.cv.ua"}, n, n, n, e, e, f},
4734 {"lugansk.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4735 {"lutsk.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.ns.lutsk.ua", "nix.ns.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4736 {"lviv.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"eta.uar.net", "iota.uar.net", "kappa.uar.net", "ns.lviv.ua", "theta.uar.net", "zeta.uar.net"}, n, n, n, "whois.lviv.ua", e, f},
4737 {"mk.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "epp.ns.od.ua", "ho1.ns.od.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4738 {"net.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "ho1.net.ua", "nix.ns.ua", "ns.dn.ua", "ns.kh.ua", "ns.net.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, "whois.net.ua", e, f},
4739 {"nikolaev.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "epp.ns.od.ua", "ho1.ns.od.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4740 {"od.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.ns.od.ua", "nix.ns.ua", "ns.od.ua"}, n, n, n, e, e, f},
4741 {"odesa.ua", &z[1442], x, 0, e, w{"ho1.ns.od.ua", "nix.ns.ua", "ns.od.ua"}, n, n, n, e, e, f},
4742 {"odessa.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.ns.od.ua", "nix.ns.ua", "ns.od.ua"}, n, n, n, e, e, f},
4743 {"org.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.org.ua", "nix.ns.ua", "ns.dn.ua"}, n, n, n, e, e, f},
4744 {"pl.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.pl.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4745 {"poltava.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.pl.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4746 {"pp.ua", &z[1442], x, 0, e, w{"ns1.uadns.com", "ns2.uadns.com", "ns3.uadns.com"}, n, n, n, "whois.pp.ua", e, f},
4747 {"rivne.ua", &z[1442], x, 0, e, w{"ba1.ns.ua", "ns5.dnsmadeeasy.com", "ns6.dnsmadeeasy.com", "ns7.dnsmadeeasy.com"}, n, n, n, e, e, t},
4748 {"rovno.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ns5.dnsmadeeasy.com", "ns6.dnsmadeeasy.com", "ns7.dnsmadeeasy.com"}, n, n, n, e, e, f},
4749 {"rv.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ns5.dnsmadeeasy.com", "ns6.dnsmadeeasy.com", "ns7.dnsmadeeasy.com"}, n, n, n, e, e, f},
4750 {"sebastopol.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.crimea.ua", "nix.ns.ua", "ns.crimea.ua"}, n, n, n, "whois.sebastopol.ua", e, f},
4751 {"sm.ua", &z[1442], x, 0, e, w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4752 {"sumy.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4753 {"te.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"nix.ns.ua", "ns.dn.ua", "ns.te.ua", "ns2.km.ua", "ns2.uar.net"}, n, n, n, e, e, f},
4754 {"ternopil.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"nix.ns.ua", "ns.dn.ua", "ns.te.ua", "ns2.km.ua", "ns2.uar.net"}, n, n, n, e, e, f},
4755 {"uz.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.uz.ua", "nix.ns.ua", "ns.dn.ua"}, n, n, n, e, e, f},
4756 {"uzhgorod.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "ho1.ns.uz.ua", "nix.ns.ua", "ns.dn.ua"}, n, n, n, e, e, f},
4757 {"vinnica.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns1.vn.ua", "ns1.vsmu.vinnica.ua", "ns4.nest.vn.ua"}, n, n, n, e, e, f},
4758 {"vn.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "nix.ns.ua", "ns1.vn.ua", "ns1.vsmu.vinnica.ua", "ns4.nest.vn.ua"}, n, n, n, e, e, f},
4759 {"volyn.ua", &z[1442], x, 0, e, w{"ho1.ns.lutsk.ua", "nix.ns.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4760 {"yalta.ua", &z[1442], x, 0, e, w{"ho1.ns.crimea.ua", "nix.ns.ua", "ns.crimea.ua"}, n, n, n, "whois.yalta.ua", e, f},
4761 {"zaporizhzhe.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4762 {"zhitomir.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "impuls.zhitomir.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4763 {"zp.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ho1.eunic.net.ua", "ns.dn.ua", "ns.kh.ua", "ns.sm.ua", "ns.zp.ua"}, n, n, n, e, e, f},
4764 {"zt.ua", &z[1442], x, 0, "http://www.nic.net.ua/", w{"ba1.ns.ua", "impuls.zhitomir.ua", "nix.ns.ua"}, n, n, n, e, e, f},
4765 {"ac.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4766 {"co.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4767 {"com.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4768 {"go.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4769 {"mil.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4770 {"ne.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4771 {"or.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4772 {"org.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4773 {"sc.ug", &z[1446], x, 0, e, n, n, n, n, e, e, f},
4774 {"ac.uk", &z[1447], x, 0, e, w{"auth03.ns.uu.net", "dns-3.dfn.de", "ns0.ja.net", "ns1.surfnet.nl", "ns2.ja.net", "ns3.ja.net", "ns4.ja.net"}, n, n, n, "whois.ja.net", e, f},
4775 {"co.uk", &z[1447], x, 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, "whois.nic.uk", e, f},
4776 {"gov.uk", &z[1447], x, 0, e, w{"auth00.ns.de.uu.net", "auth50.ns.de.uu.net", "ns0.ja.net", "ns1.surfnet.nl", "ns2.ja.net", "ns3.ja.net", "ns4.ja.net"}, n, n, n, "whois.ja.net", e, f},
4777 {"ltd.uk", &z[1447], x, 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, e, e, f},
4778 {"me.uk", &z[1447], x, 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, e, e, f},
4779 {"mod.uk", &z[1447], x, 0, e, w{"ns1.cs.ucl.ac.uk", "ns1.mod.uk", "ns2.mod.uk"}, n, n, n, e, e, f},
4780 {"net.uk", &z[1447], x, 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, e, e, f},
4781 {"org.uk", &z[1447], x, 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, e, e, f},
4782 {"plc.uk", &z[1447], x, 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, e, e, f},
4783 {"sch.uk", &z[1447], z[5167:5182], 0, e, w{"dns1.nic.uk", "dns2.nic.uk", "dns3.nic.uk", "dns4.nic.uk", "nsa.nic.uk", "nsb.nic.uk", "nsc.nic.uk", "nsd.nic.uk"}, n, n, n, e, e, f},
4784 {"ak.us", &z[1457], x, 0, "https://doa.alaska.gov/ets/eash/DNSrequestform.html", n, n, n, n, e, e, t},
4785 {"al.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4786 {"ar.us", &z[1457], x, 0, e, n, n, n, n, e, e, t},
4787 {"as.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4788 {"az.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4789 {"ca.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4790 {"co.us", &z[1457], x, 0x800, e, n, n, n, n, e, e, f},
4791 {"ct.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4792 {"dc.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4793 {"de.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4794 {"dni.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4795 {"fed.us", &z[1457], x, 0, e, w{"a.gov-servers.net", "b.gov-servers.net", "c.gov-servers.net", "d.gov-servers.net"}, n, n, n, "whois.dotgov.gov", e, f},
4796 {"fl.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4797 {"ga.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4798 {"gu.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4799 {"hi.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4800 {"ia.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4801 {"id.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4802 {"il.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4803 {"in.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4804 {"isa.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4805 {"kids.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4806 {"ks.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4807 {"ky.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4808 {"la.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4809 {"ma.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4810 {"md.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4811 {"me.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4812 {"mi.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4813 {"mn.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4814 {"mo.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4815 {"ms.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4816 {"mt.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4817 {"nc.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4818 {"nd.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4819 {"ne.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4820 {"nh.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4821 {"nj.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4822 {"nm.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4823 {"nsn.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4824 {"nv.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4825 {"ny.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4826 {"oh.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4827 {"ok.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4828 {"or.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4829 {"pa.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4830 {"pr.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4831 {"ri.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4832 {"sc.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4833 {"sd.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4834 {"tn.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4835 {"tx.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4836 {"ut.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4837 {"va.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4838 {"vi.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4839 {"vt.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4840 {"wa.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4841 {"wi.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4842 {"wv.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4843 {"wy.us", &z[1457], x, 0, e, n, n, n, n, e, e, f},
4844 {"com.uy", &z[1458], x, 0, e, w{"ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "seciu.edu.uy"}, n, n, n, e, e, f},
4845 {"edu.uy", &z[1458], x, 0, e, w{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, n, e, e, f},
4846 {"gub.uy", &z[1458], x, 0, e, w{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, n, e, e, f},
4847 {"mil.uy", &z[1458], x, 0, e, w{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, n, e, e, f},
4848 {"net.uy", &z[1458], x, 0, e, w{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, n, e, e, f},
4849 {"org.uy", &z[1458], x, 0, e, w{"a.lactld.org", "ns.dns.br", "ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "ns3.nic.mx", "seciu.edu.uy", "ultra.edu.uy"}, n, n, n, e, e, f},
4850 {"ac.uz", &z[1459], x, 0, e, w{"ns1.sarkor.uz", "ns2.sarkor.uz"}, n, n, n, e, e, f},
4851 {"aero.uz", &z[1459], x, 0, e, w{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, n, e, e, f},
4852 {"biz.uz", &z[1459], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "biz.uz"}, n, n, e, e, f},
4853 {"co.uz", &z[1459], x, 0, e, w{"ns1.reg.uz", "ns2.reg.uz"}, n, n, n, e, e, f},
4854 {"com.uz", &z[1459], x, 0, e, w{"ns1.reg.uz", "ns2.reg.uz"}, n, n, n, e, e, f},
4855 {"coop.uz", &z[1459], x, 0, e, w{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, n, e, e, f},
4856 {"edu.uz", &z[1459], x, 0, e, w{"dns1.webspace.uz", "dns2.webspace.uz"}, n, n, n, e, e, f},
4857 {"info.uz", &z[1459], x, 0, e, w{"ns.ol.uz", "ns.tshtt.uz"}, n, n, n, e, e, f},
4858 {"int.uz", &z[1459], x, 0, e, w{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, n, e, e, f},
4859 {"museum.uz", &z[1459], x, 0, e, n, n, n, n, e, e, f},
4860 {"name.uz", &z[1459], x, 0, e, w{"ns1.billur.com", "ns2.billur.com"}, n, n, n, e, e, f},
4861 {"net.uz", &z[1459], x, 0, e, w{"ns1.reg.uz", "ns2.reg.uz"}, n, n, n, e, e, f},
4862 {"org.uz", &z[1459], x, 0, e, w{"ns1.reg.uz", "ns2.reg.uz"}, n, n, n, e, e, f},
4863 {"pro.uz", &z[1459], x, 0x8, e, w{"ns3.uzinfocom.uz", "rdns3.uzinfocom.uz"}, n, n, n, e, e, f},
4864 {"com.vc", &z[1465], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4865 {"net.vc", &z[1465], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4866 {"org.vc", &z[1465], x, 0, e, w{"a0.cctld.afilias-nst.info", "a2.cctld.afilias-nst.info", "b0.cctld.afilias-nst.org", "b2.cctld.afilias-nst.org", "c0.cctld.afilias-nst.info", "d0.cctld.afilias-nst.org"}, n, n, n, e, e, f},
4867 {"co.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4868 {"com.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4869 {"edu.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4870 {"gob.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4871 {"info.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4872 {"int.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, t},
4873 {"mil.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4874 {"net.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4875 {"org.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4876 {"tec.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, t},
4877 {"web.ve", &z[1466], x, 0, e, w{"ns3.nic.ve", "ns4.nic.ve", "ns5.nic.ve", "ns6.nic.ve", "ssdns-tld.nic.cl"}, n, n, n, e, e, f},
4878 {"pro.vg", &z[1474], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "pro.vg"}, n, n, e, e, t},
4879 {"biz.vi", &z[1475], x, 0, e, n, n, n, n, e, e, f},
4880 {"co.vi", &z[1475], x, 0, e, w{"ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, e, f},
4881 {"com.vi", &z[1475], x, 0, e, w{"ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, e, t},
4882 {"k12.vi", &z[1475], x, 0, e, w{"ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, e, f},
4883 {"net.vi", &z[1475], x, 0, e, w{"ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, e, f},
4884 {"org.vi", &z[1475], x, 0, e, w{"ns3.nic.vi", "pch.nic.vi"}, n, n, n, e, e, f},
4885 {"ac.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4886 {"biz.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4887 {"com.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4888 {"edu.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4889 {"gov.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4890 {"health.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4891 {"info.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4892 {"int.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4893 {"name.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4894 {"net.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4895 {"org.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4896 {"pro.vn", &z[1491], x, 0, e, w{"a.dns-servers.vn", "b.dns-servers.vn", "c.dns-servers.vn", "d.dns-servers.vn", "e.dns-servers.vn", "f.dns-servers.vn", "g.dns-servers.vn"}, n, n, n, e, e, f},
4897 {"co.vu", &z[1500], x, 0, "https://codotvu.co/", w{"ns1.codotvu.com", "ns2.codotvu.com", "ns3.codotvu.com", "ns4.codotvu.com"}, n, n, n, e, e, t},
4898 {"com.vu", &z[1500], x, 0, e, w{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, n, e, e, f},
4899 {"name.vu", &z[1500], x, 0x200, e, w{"ns1.subdomain.com", "ns2.subdomain.com"}, w{"144.76.162.245", "name.vu"}, n, n, e, e, t},
4900 {"net.vu", &z[1500], x, 0, e, w{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, n, e, e, f},
4901 {"org.vu", &z[1500], x, 0, e, w{"ns1.neustar.vu", "ns2.neustar.vu", "ns3.neustar.vu", "ns4.neustar.vu"}, n, n, n, e, e, f},
4902 {"com.ws", &z[1539], x, 0, e, w{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, w{"202.4.48.211"}, n, n, e, e, f},
4903 {"edu.ws", &z[1539], x, 0, e, w{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, w{"202.4.48.211"}, n, n, e, e, f},
4904 {"gov.ws", &z[1539], x, 0, e, w{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, n, n, n, e, e, f},
4905 {"net.ws", &z[1539], x, 0, e, w{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, w{"202.4.48.211"}, n, n, e, e, f},
4906 {"org.ws", &z[1539], x, 0, e, w{"ns2.dns.ws", "ns3.dns.ws", "ns4.dns.ws", "ns5.dns.ws", "ns6.dns.ws", "ns7.dns.ws"}, w{"202.4.48.211"}, n, n, e, e, f},
4907 {"co.ye", &z[1554], x, 0, e, n, n, n, n, e, e, f},
4908 {"com.ye", &z[1554], x, 0, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, f},
4909 {"gov.ye", &z[1554], x, 0, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, t},
4910 {"ltd.ye", &z[1554], x, 0, e, n, n, n, n, e, e, f},
4911 {"me.ye", &z[1554], x, 0, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, f},
4912 {"net.ye", &z[1554], x, 0, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, f},
4913 {"org.ye", &z[1554], x, 0, e, w{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "pch.nic.ye", "sah1.ye", "sah2.ye"}, n, n, n, e, e, f},
4914 {"plc.ye", &z[1554], x, 0, e, n, n, n, n, e, e, f},
4915 {"ac.yu", &z[1562], z[5182:5183], 0x800, e, n, n, n, n, e, e, f},
4916 {"cg.yu", &z[1562], x, 0x800, e, n, n, n, n, e, e, f},
4917 {"co.yu", &z[1562], x, 0x800, e, n, n, n, n, e, e, t},
4918 {"edu.yu", &z[1562], x, 0x800, e, n, n, n, n, e, e, f},
4919 {"gov.yu", &z[1562], x, 0x800, e, n, n, n, n, e, e, f},
4920 {"org.yu", &z[1562], x, 0x800, e, n, n, n, n, e, e, f},
4921 {"ac.za", &z[1564], x, 0, e, w{"disa.tenet.ac.za", "ns2us.dns.business", "ns3.dns.business", "ns4.dns.business", "za-ns.anycast.pch.net"}, n, n, n, "whois.ac.za", e, f},
4922 {"agric.za", &z[1564], x, 0, e, w{"demeter.is.co.za", "jupiter.is.co.za", "titan.is.co.za"}, n, n, n, e, e, f},
4923 {"alt.za", &z[1564], x, 0, e, w{"mumble.proxima.alt.za", "ns1.iafrica.com", "ns2.iafrica.com", "psg.com", "za-ns.anycast.pch.net"}, n, n, n, e, e, f},
4924 {"bourse.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4925 {"city.za", &z[1564], x, 0, e, n, n, n, n, e, e, f},
4926 {"co.za", &z[1564], x, 0, e, w{"coza1.dnsnode.net", "ns.coza.net.za", "ns0.is.co.za", "ns2us.dns.business", "ns3.iafrica.com"}, n, n, n, "coza-whois.registry.net.za", e, f},
4927 {"cybernet.za", &z[1564], x, 0, e, n, n, n, n, e, e, f},
4928 {"db.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4929 {"edu.za", &z[1564], x, 0, e, w{"ns-za.afrinic.net", "ns1.iafrica.com", "ns2.iafrica.com", "za-ns.anycast.pch.net"}, n, n, n, e, e, f},
4930 {"gov.za", &z[1564], x, 0, e, w{"ns1.gov.za", "ns1.inx.net.za", "ns2.gov.za", "ns2.inx.net.za", "ns3.gov.za", "ns3.inx.net.za"}, n, n, n, "whois.gov.za", e, f},
4931 {"grondar.za", &z[1564], x, 0, e, w{"grandfather.grondar.org", "ns1.iafrica.com", "ns2.iafrica.com", "rip.psg.com"}, n, n, n, e, e, f},
4932 {"iaccess.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4933 {"imt.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4934 {"inca.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4935 {"landesign.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4936 {"law.za", &z[1564], x, 0, e, w{"ns0.is.co.za", "ns1.dns.net.za", "ns2us.dns.business"}, n, n, n, e, e, f},
4937 {"mil.za", &z[1564], x, 0, e, w{"ns1.gov.za", "ns2.gov.za", "ns3.gov.za"}, n, n, n, e, e, f},
4938 {"net.za", &z[1564], x, 0, e, w{"ns0.is.co.za", "za-ns.anycast.pch.net"}, n, n, n, "net-whois.registry.net.za", e, f},
4939 {"ngo.za", &z[1564], x, 0, e, w{"antares.wisenet.co.za", "ns1.sn.apc.org", "ns2.sn.apc.org"}, n, n, n, e, e, f},
4940 {"nis.za", &z[1564], x, 0, e, w{"ns1.mywebserver.co.za", "ns2.mywebserver.co.za", "ns3.mywebserver.co.za"}, n, n, n, e, e, f},
4941 {"nom.za", &z[1564], x, 0, e, w{"ins1.c6dns.com", "ns0.plig.net", "secdns1.posix.co.za", "za-ns.anycast.pch.net"}, n, n, n, e, e, f},
4942 {"olivetti.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4943 {"org.za", &z[1564], x, 0, e, w{"ns0.is.co.za", "ns0.plig.net", "ns3.iafrica.com", "ns4.iafrica.com", "za-ns.anycast.pch.net"}, n, n, n, "org-whois.registry.net.za", e, f},
4944 {"pix.za", &z[1564], x, 0x800, e, n, n, n, n, e, e, f},
4945 {"school.za", &z[1564], z[5183:5192], 0, e, w{"ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, n, e, e, f},
4946 {"tm.za", &z[1564], x, 0, e, w{"ns0.is.co.za", "ns1.dnsza.co.za", "ns1.iafrica.com", "ns1.lolo.co.za", "ns2.iafrica.com", "ns2.lolo.co.za", "ns3.lolo.co.za", "reaper.org", "sticky.spider.web.za", "za-ns.anycast.pch.net"}, n, n, n, e, e, f},
4947 {"web.za", &z[1564], x, 0, e, w{"disa.tenet.ac.za", "ns0.is.co.za", "za-ns.anycast.pch.net"}, n, n, n, "web-whois.registry.net.za", e, f},
4948 {"ac.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, f},
4949 {"co.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, t},
4950 {"com.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, f},
4951 {"edu.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, t},
4952 {"gov.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, t},
4953 {"net.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "pch.nic.zm"}, n, n, n, e, e, t},
4954 {"org.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, f},
4955 {"sch.zm", &z[1570], x, 0, e, w{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, n, e, e, t},
4956 {"ac.zw", &z[1574], x, 0, e, w{"ns1.liquidtelecom.net", "ns2.liquidtelecom.net", "uofzns01.uz.ac.zw", "uofzns02.uz.ac.zw"}, n, n, n, e, e, f},
4957 {"co.zw", &z[1574], x, 0, e, w{"ns1.liquidtelecom.net", "ns1.zispa.org.zw", "ns2.liquidtelecom.net", "ns3.zispa.org.zw"}, n, n, n, e, e, t},
4958 {"com.zw", &z[1574], x, 0, e, n, n, n, n, e, e, t},
4959 {"org.zw", &z[1574], x, 0, e, w{"ns1.liquidtelecom.net", "ns1zim.telone.co.zw", "ns2.liquidtelecom.net", "ns2zim.telone.co.zw", "zw-ns.anycast.pch.net"}, n, n, n, e, e, f},
4960 {"001.xn--p1acf" /* 001.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4961 {"002.xn--p1acf" /* 002.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4962 {"003.xn--p1acf" /* 003.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4963 {"004.xn--p1acf" /* 004.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4964 {"005.xn--p1acf" /* 005.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4965 {"006.xn--p1acf" /* 006.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4966 {"007.xn--p1acf" /* 007.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4967 {"008.xn--p1acf" /* 008.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4968 {"009.xn--p1acf" /* 009.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4969 {"010.xn--p1acf" /* 010.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4970 {"011.xn--p1acf" /* 011.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4971 {"012.xn--p1acf" /* 012.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4972 {"013.xn--p1acf" /* 013.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4973 {"014.xn--p1acf" /* 014.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4974 {"015.xn--p1acf" /* 015.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4975 {"016.xn--p1acf" /* 016.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4976 {"017.xn--p1acf" /* 017.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4977 {"018.xn--p1acf" /* 018.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4978 {"019.xn--p1acf" /* 019.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4979 {"021.xn--p1acf" /* 021.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4980 {"022.xn--p1acf" /* 022.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4981 {"023.xn--p1acf" /* 023.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4982 {"024.xn--p1acf" /* 024.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4983 {"025.xn--p1acf" /* 025.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4984 {"026.xn--p1acf" /* 026.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4985 {"027.xn--p1acf" /* 027.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4986 {"028.xn--p1acf" /* 028.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4987 {"029.xn--p1acf" /* 029.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4988 {"030.xn--p1acf" /* 030.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4989 {"031.xn--p1acf" /* 031.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4990 {"032.xn--p1acf" /* 032.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4991 {"033.xn--p1acf" /* 033.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4992 {"034.xn--p1acf" /* 034.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4993 {"035.xn--p1acf" /* 035.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4994 {"036.xn--p1acf" /* 036.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4995 {"037.xn--p1acf" /* 037.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4996 {"038.xn--p1acf" /* 038.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4997 {"039.xn--p1acf" /* 039.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4998 {"040.xn--p1acf" /* 040.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
4999 {"041.xn--p1acf" /* 041.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5000 {"042.xn--p1acf" /* 042.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5001 {"043.xn--p1acf" /* 043.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5002 {"044.xn--p1acf" /* 044.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5003 {"045.xn--p1acf" /* 045.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5004 {"046.xn--p1acf" /* 046.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5005 {"047.xn--p1acf" /* 047.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5006 {"048.xn--p1acf" /* 048.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5007 {"049.xn--p1acf" /* 049.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5008 {"050.xn--p1acf" /* 050.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5009 {"051.xn--p1acf" /* 051.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5010 {"052.xn--p1acf" /* 052.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5011 {"053.xn--p1acf" /* 053.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5012 {"054.xn--p1acf" /* 054.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5013 {"055.xn--p1acf" /* 055.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5014 {"056.xn--p1acf" /* 056.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5015 {"057.xn--p1acf" /* 057.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5016 {"058.xn--p1acf" /* 058.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5017 {"059.xn--p1acf" /* 059.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5018 {"060.xn--p1acf" /* 060.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5019 {"061.xn--p1acf" /* 061.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5020 {"062.xn--p1acf" /* 062.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5021 {"063.xn--p1acf" /* 063.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5022 {"064.xn--p1acf" /* 064.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5023 {"065.xn--p1acf" /* 065.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5024 {"066.xn--p1acf" /* 066.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5025 {"067.xn--p1acf" /* 067.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5026 {"068.xn--p1acf" /* 068.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5027 {"069.xn--p1acf" /* 069.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5028 {"070.xn--p1acf" /* 070.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5029 {"071.xn--p1acf" /* 071.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5030 {"072.xn--p1acf" /* 072.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5031 {"073.xn--p1acf" /* 073.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5032 {"074.xn--p1acf" /* 074.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5033 {"075.xn--p1acf" /* 075.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5034 {"076.xn--p1acf" /* 076.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5035 {"077.xn--p1acf" /* 077.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5036 {"078.xn--p1acf" /* 078.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5037 {"079.xn--p1acf" /* 079.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5038 {"083.xn--p1acf" /* 083.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5039 {"086.xn--p1acf" /* 086.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5040 {"087.xn--p1acf" /* 087.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5041 {"089.xn--p1acf" /* 089.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5042 {"094.xn--p1acf" /* 094.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5043 {"095.xn--p1acf" /* 095.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5044 {"xn--80aaac0ct.xn--p1acf" /* абакан.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5045 {"xn--80ae0bp.xn--p1acf" /* авто.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5046 {"xn--80awd.xn--p1acf" /* алм.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5047 {"xn--80aa1ag9a.xn--p1acf" /* алтай.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5048 {"xn--80aam8ar9di.xn--p1acf" /* анадырь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5049 {"xn--80aaa5csg.xn--p1acf" /* астана.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5050 {"xn--80aaa6cmfh0a9d.xn--p1acf" /* астрахань.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5051 {"xn--80ag7c.xn--p1acf" /* ахг.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5052 {"xn--80ab2azb.xn--p1acf" /* баку.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5053 {"xn--80aab6birx.xn--p1acf" /* барнаул.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5054 {"xn--90ais.xn--p1acf" /* бел.рус */, &z[1590], x, 0x200, e, w{"ns1.gohost.ru", "ns2.gohost.ru"}, n, n, n, e, e, t},
5055 {"xn--90aedc4atap.xn--p1acf" /* белгород.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5056 {"xn--90amc.xn--p1acf" /* биз.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, w{"77.221.159.235"}, n, n, e, e, t},
5057 {"xn--80abamkjb7bdt.xn--p1acf" /* биробиджан.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5058 {"xn--90aiiib5f.xn--p1acf" /* бишкек.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5059 {"xn--80abedla9acxg1b7f.xn--p1acf" /* благовещенск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5060 {"xn--90aayernio.xn--p1acf" /* бобруйск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5061 {"xn--90ai6aff.xn--p1acf" /* брест.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5062 {"xn--90asilg6f.xn--p1acf" /* брянск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5063 {"xn--90aoxid7ec.xn--p1acf" /* бурятия.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5064 {"xn--b1aadecsaihi0amca3a.xn--p1acf" /* великийновгород.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5065 {"xn--b1amjiu8dp.xn--p1acf" /* вильнюс.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5066 {"xn--90abjlm5be.xn--p1acf" /* витебск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5067 {"xn--80adbhunc2aa3al.xn--p1acf" /* владивосток.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5068 {"xn--80aaafckyesce.xn--p1acf" /* владикавказ.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5069 {"xn--80adhqaok7a.xn--p1acf" /* владимир.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5070 {"xn--80add5ao.xn--p1acf" /* волга.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5071 {"xn--80addag2buct.xn--p1acf" /* волгоград.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5072 {"xn--80adde7arb.xn--p1acf" /* вологда.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5073 {"xn--b1agd0aean.xn--p1acf" /* воронеж.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5074 {"xn--c1aescj1g.xn--p1acf" /* гомель.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5075 {"xn--c1ac1acci.xn--p1acf" /* гродно.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5076 {"xn--c1aigpdl4f.xn--p1acf" /* грозный.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5077 {"xn--e1aky.xn--p1acf" /* ект.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5078 {"xn--80adia6bo.xn--p1acf" /* ереван.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5079 {"xn--80adbv1agb.xn--p1acf" /* иваново.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5080 {"xn--b1afchn5b.xn--p1acf" /* ижевск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5081 {"xn--h1aeawgfg.xn--p1acf" /* иркутск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5082 {"xn--80aauks4g.xn--p1acf" /* казань.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5083 {"xn--80aaifraljtb8a.xn--p1acf" /* калининград.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5084 {"xn--80aai0ag2c.xn--p1acf" /* калуга.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5085 {"xn--b1afaslnbn.xn--p1acf" /* кемерово.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5086 {"xn--b1afih.xn--p1acf" /* киев.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5087 {"xn--b1alfrj.xn--p1acf" /* киров.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5088 {"xn--b1afiaiu9e.xn--p1acf" /* кишинев.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5089 {"xn--j1aef.xn--p1acf" /* ком.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5090 {"xn--h1adgh.xn--p1acf" /* коми.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5091 {"xn--80atghalgi.xn--p1acf" /* кострома.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5092 {"xn--80aalwqglfe.xn--p1acf" /* краснодар.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5093 {"xn--80atblfjdfd2l.xn--p1acf" /* красноярск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5094 {"xn--j1ael8b.xn--p1acf" /* крым.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5095 {"xn--80afuomr.xn--p1acf" /* курган.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5096 {"xn--j1aarei.xn--p1acf" /* курск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5097 {"xn--g1afe6db.xn--p1acf" /* кызыл.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5098 {"xn--e1afhbv7b.xn--p1acf" /* липецк.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5099 {"xn--80aaakg8bm.xn--p1acf" /* магадан.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5100 {"xn--80aai8a2a.xn--p1acf" /* магас.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5101 {"xn--80asdfng.xn--p1acf" /* майкоп.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5102 {"xn--80aqdibz7g.xn--p1acf" /* марийэл.рус */, &z[1590], x, 0x200, e, w{"ns1.nameself.com", "ns2.nameself.com"}, n, n, n, e, e, t},
5103 {"xn--80aqjbv3f.xn--p1acf" /* мариэл.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5104 {"xn--80aaaa2chc7eta.xn--p1acf" /* махачкала.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5105 {"xn--d1abu.xn--p1acf" /* мед.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5106 {"xn--h1aeefu.xn--p1acf" /* минск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5107 {"xn--h1ahn.xn--p1acf" /* мир.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5108 {"xn--b1abpmcm0l.xn--p1acf" /* могилёв.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5109 {"xn--j1adp.xn--p1acf" /* мск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5110 {"xn--80aueagpkl.xn--p1acf" /* мурманск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5111 {"xn--80aqgci6d8a.xn--p1acf" /* нальчик.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5112 {"xn----7sbb1ccbue7h4a.xn--p1acf" /* нарьян-мар.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5113 {"xn--b1avn.xn--p1acf" /* нвс.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5114 {"xn--m1aa.xn--p1acf" /* нн.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5115 {"xn--90absbknhbvge.xn--p1acf" /* новосибирск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5116 {"xn--j1adfn.xn--p1acf" /* омск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5117 {"xn--c1avg.xn--p1acf" /* орг.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5118 {"xn--90aee6admdx.xn--p1acf" /* оренбург.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5119 {"xn--k1afg2e.xn--p1acf" /* орёл.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5120 {"xn--80ajgxi.xn--p1acf" /* пенза.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5121 {"xn--e1aohf5d.xn--p1acf" /* пермь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5122 {"xn--80aegbkvxddlre.xn--p1acf" /* петрозаводск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5123 {"xn--b1apmck.xn--p1acf" /* псков.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5124 {"xn--c1ajhpcjhd0j.xn--p1acf" /* пятигорск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5125 {"xn--80afo5a.xn--p1acf" /* рига.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5126 {"xn-----7kcgn5cdbagnnnx.xn--p1acf" /* ростов-на-дону.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5127 {"xn--b1a1ade.xn--p1acf" /* рств.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5128 {"xn--80antj7do.xn--p1acf" /* рязань.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5129 {"xn--80aamc3a6ac9a.xn--p1acf" /* салехард.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5130 {"xn--80aaa0cvac.xn--p1acf" /* самара.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5131 {"xn--80aa4alnee.xn--p1acf" /* саранск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5132 {"xn--80aag1ciek.xn--p1acf" /* саратов.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5133 {"xn--80adi0aoagldk8i.xn--p1acf" /* севастополь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5134 {"xn--90anb6ab4e.xn--p1acf" /* сибирь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5135 {"xn--e1afkclaggf6a2g.xn--p1acf" /* симферополь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5136 {"xn--e1akbdhdtf.xn--p1acf" /* смоленск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5137 {"xn--h1aliz.xn--p1acf" /* сочи.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5138 {"xn--90a1af.xn--p1acf" /* спб.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5139 {"xn--80ae1alafffj1i.xn--p1acf" /* ставрополь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5140 {"xn--80aqialz.xn--p1acf" /* таллин.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5141 {"xn--80acd2blu.xn--p1acf" /* тамбов.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5142 {"xn--80akonve2b.xn--p1acf" /* ташкент.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5143 {"xn--b1ag7af7c.xn--p1acf" /* тверь.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5144 {"xn--j1adfnc.xn--p1acf" /* томск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5145 {"xn--80avue.xn--p1acf" /* тула.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5146 {"xn--p1add.xn--p1acf" /* тур.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5147 {"xn--e1aner7ci.xn--p1acf" /* тюмень.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5148 {"xn--b1aqbiftj7e1a.xn--p1acf" /* ульяновск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5149 {"xn--80a1bd.xn--p1acf" /* уфа.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5150 {"xn--80aacf4bwnk3a.xn--p1acf" /* хабаровск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5151 {"xn--80ablvtof7b4b.xn--p1acf" /* чебоксары.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5152 {"xn--90ahkico2a6b9d.xn--p1acf" /* челябинск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5153 {"xn--e1aaob1aia6b.xn--p1acf" /* черкесск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5154 {"xn--80ap4as.xn--p1acf" /* чита.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5155 {"xn--80apizf6d.xn--p1acf" /* элиста.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5156 {"xn--80af3b0c.xn--p1acf" /* югра.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5157 {"xn--41a.xn--p1acf" /* я.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5158 {"xn--j1aaude4e.xn--p1acf" /* якутск.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5159 {"xn--80aezclli6gta.xn--p1acf" /* ярославль.рус */, &z[1590], x, 0x200, e, w{"ns1.rlnic.ru", "ns2.rlnic.ru"}, n, n, n, e, e, t},
5160 {"xn--j1aef.xn--p1ai" /* ком.рф */, &z[1591], x, 0x200, e, w{"ns1.nameself.com", "ns2.nameself.com"}, n, n, n, e, e, t},
5161 {"xn--e1apq.xn--p1ai" /* нет.рф */, &z[1591], x, 0x200, e, w{"ns1.nameself.com", "ns2.nameself.com"}, n, n, n, e, e, t},
5162 {"xn--c1avg.xn--p1ai" /* орг.рф */, &z[1591], x, 0x200, e, w{"ns1.nameself.com", "ns2.nameself.com"}, n, n, n, e, e, t},
5163 {"xn--o-btb9b.xn--90a3ac" /* oбр.срб */, &z[1593], x, 0, e, n, n, n, n, e, e, t},
5164 {"xn--o-htb.xn--90a3ac" /* oд.срб */, &z[1593], x, 0, e, n, n, n, n, e, e, t},
5165 {"xn--80au.xn--90a3ac" /* ак.срб */, &z[1593], x, 0, e, w{"ban.junis.ni.ac.rs", "gaea.rcub.bg.ac.rs", "ns.etf.bg.ac.rs", "ns.rcub.bg.ac.rs", "ns.unic.kg.ac.rs", "ns1.uns.ac.rs", "ns2.iif.hu", "odisej.telekom.rs"}, n, n, n, e, e, t},
5166 {"xn--o1ac.xn--90a3ac" /* пр.срб */, &z[1593], x, 0, e, w{"a.nic.rs", "g.nic.rs", "h.nic.rs", "l.nic.rs"}, n, n, n, e, e, t},
5167 {"xn--o1ach.xn--90a3ac" /* упр.срб */, &z[1593], x, 0, e, w{"dagda1.isp.telekom.rs", "ns1.gov.rs", "ns1.nic.rs", "ns2.gov.rs", "ns3.gov.orion.rs"}, n, n, n, e, e, t},
5168 {"xn--hhbc1oogwg.xn--mgbbh1a" /* کمپنی.بارت */, &z[1613], x, 0, e, n, n, n, n, e, e, t},
5169 {"xn--fhbed7t1n.xn--mgbbh1a71e" /* كمپنی.بھارت */, &z[1616], x, 0, e, n, n, n, n, e, e, t},
5170 {"xn--hhbcm0s3h.xn--mgbgu82a" /* ڪمپني.ڀارت */, &z[1637], x, 0, e, n, n, n, n, e, e, t},
5171 {"xn--i1b1b4ch5i.xn--h2brj9c" /* कंपनी.भारत */, &z[1641], x, 0, e, n, n, n, n, e, e, t},
5172 {"xn--i1b4e9bb5a7f.xn--h2breg3eve" /* संस्था.भारतम् */, &z[1642], x, 0, e, n, n, n, n, e, e, t},
5173 {"xn--11b2bfp5fn6er.xn--h2brj9c8c" /* कोम्पानी.भारोत */, &z[1643], x, 0, e, n, n, n, n, e, e, t},
5174 {"xn--p5b2bfp1g0b0b.xn--45brj9c" /* কম্পেনি.ভারত */, &z[1646], x, 0, e, n, n, n, n, e, e, t},
5175 {"xn--p5b2bfp5fh3fra.xn--45brj9c" /* কোম্পানি.ভারত */, &z[1646], x, 0, e, n, n, n, n, e, e, t},
5176 {"xn--p5b2bfp5fn6er.xn--45br5cyl" /* কোম্পানী.ভাৰত */, &z[1647], x, 0, e, n, n, n, n, e, e, t},
5177 {"xn--d9b2bf3g1k.xn--s9brj9c" /* ਕੰਪਨੀ.ਭਾਰਤ */, &z[1648], x, 0, e, n, n, n, n, e, e, t},
5178 {"xn--hdc1b4ch5i.xn--gecrj9c" /* કંપની.ભારત */, &z[1649], x, 0, e, n, n, n, n, e, e, t},
5179 {"xn--ohc2bfp5fn1g.xn--3hcrj9c" /* କମ୍ପାନୀ.ଭାରତ */, &z[1650], x, 0, e, n, n, n, n, e, e, t},
5180 {"xn--vlccpku2dp3h.xn--xkc2dl3a5ee0h" /* நிறுவனம்.இந்தியா */, &z[1651], x, 0, e, n, n, n, n, e, e, t},
5181 {"xn--goc1b4ch5i8a.xn--fpcrj9c3d" /* కంపెనీ.భారత్ */, &z[1655], x, 0, e, n, n, n, n, e, e, t},
5182 {"xn--3rc1b4ch0i.xn--2scrj9c" /* ಕಂಪನಿ.ಭಾರತ */, &z[1656], x, 0, e, n, n, n, n, e, e, t},
5183 {"xn--bwc2bah0ipd.xn--rvc1e0am3e" /* കന്പനി.ഭാരതം */, &z[1657], x, 0, e, n, n, n, n, e, e, t},
5184 {"xn--12co0c3b4eva.xn--o3cw4h" /* ธุรกิจ.ไทย */, &z[1660], x, 0, e, w{"a.thains.co.th", "b.thains.co.th", "p.thains.co.th"}, n, n, n, e, e, t},
5185 {"xn--gmqw5a.xn--j6w193g" /* 個人.香港 */, &z[1746], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
5186 {"xn--55qx5d.xn--j6w193g" /* 公司.香港 */, &z[1746], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
5187 {"xn--mxtq1m.xn--j6w193g" /* 政府.香港 */, &z[1746], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
5188 {"xn--wcvs22d.xn--j6w193g" /* 教育.香港 */, &z[1746], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
5189 {"xn--uc0atv.xn--j6w193g" /* 組織.香港 */, &z[1746], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
5190 {"xn--od0alg.xn--j6w193g" /* 網絡.香港 */, &z[1746], x, 0, e, w{"c.hkirc.net.hk", "d.hkirc.net.hk", "t.hkirc.net.hk", "u.hkirc.net.hk", "v.hkirc.net.hk", "x.hkirc.net.hk", "y.hkirc.net.hk", "z.hkirc.net.hk"}, n, n, n, e, e, t},
5191 {"lda.co.ao", &z[1813], x, 0, e, w{"ns.inventadomains.com", "ns2.inventadomains.com"}, n, n, n, e, e, t},
5192 {"sa.co.ao", &z[1813], x, 0, e, n, n, n, n, e, e, t},
5193 {"esc.edu.ar", &z[1821], x, 0, e, w{"ns1.innova-red.net", "ns2.innova-red.net"}, n, n, n, e, e, t},
5194 {"act.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5195 {"nsw.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5196 {"nt.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5197 {"qld.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5198 {"sa.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5199 {"tas.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5200 {"vic.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5201 {"wa.edu.au", &z[1845], x, 0, e, w{"q.au", "r.au", "s.au", "t.au"}, n, n, n, e, e, t},
5202 {"fed.rep.br", &z[2106], x, 0, e, w{"cdns1.main-hosting.eu", "cdns2.main-hosting.eu"}, n, n, n, e, e, t},
5203 {"wireless.keyword.cn", &z[2230], x, 0, e, n, n, n, n, e, e, t},
5204 {"ltd.co.im", &z[2683], x, 0, e, n, n, n, n, e, e, t},
5205 {"plc.co.im", &z[2683], x, 0, e, n, n, n, n, e, e, t},
5206 {"lg.gov.ng", &z[3548], x, 0, e, w{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, n, e, e, t},
5207 {"co.net.nz", &z[3756], x, 0, e, w{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, n, e, e, t},
5208 {"al.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eu.org"}, n, n, n, e, e, t},
5209 {"asso.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5210 {"at.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5211 {"au.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5212 {"be.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5213 {"bg.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5214 {"ca.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5215 {"cd.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5216 {"ch.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns1.imp.ch", "ns2.imp.ch"}, n, n, n, e, e, t},
5217 {"cn.eu.org", &z[3774], x, 0, e, w{"ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5218 {"cy.eu.org", &z[3774], x, 0, e, w{"ns.eu.org", "ns1.absolight.net", "ns1.tee.gr", "ns2.absolight.net", "ns2.tee.gr", "ns3.absolight.net", "ns4.absolight.net"}, n, n, n, e, e, t},
5219 {"cz.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5220 {"de.eu.org", &z[3774], x, 0, e, w{"ns.oberon.net", "ns1.absolight.net", "ns2.absolight.net", "ns2.lf.net", "ns3.absolight.net", "ns4.absolight.net"}, n, n, n, e, e, t},
5221 {"dk.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5222 {"edu.eu.org", &z[3774], x, 0, e, w{"auth1.dns.elm.net", "ns1.eu.org"}, n, n, n, e, e, t},
5223 {"ee.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5224 {"es.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5225 {"fi.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5226 {"fr.eu.org", &z[3774], x, 0, e, w{"auth1.dns.elm.net", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5227 {"gr.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns.eu.org", "ns1.absolight.net", "ns1.tee.gr", "ns2.absolight.net", "ns2.tee.gr", "ns3.absolight.net", "ns4.absolight.net"}, n, n, n, e, e, t},
5228 {"hr.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5229 {"hu.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5230 {"ie.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5231 {"il.eu.org", &z[3774], x, 0, e, w{"ns.eu.org", "ns1.eu.org"}, n, n, n, e, e, t},
5232 {"in.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5233 {"int.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5234 {"is.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5235 {"it.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5236 {"jp.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5237 {"kr.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5238 {"lt.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5239 {"lu.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5240 {"lv.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5241 {"me.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5242 {"mk.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5243 {"mt.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5244 {"my.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5245 {"net.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5246 {"ng.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5247 {"nl.eu.org", &z[3774], x, 0, e, w{"auth.dns.suryo.com", "auth1.dns.elm.net", "ns.eu.org", "ns.lf.net", "ns1.elm-consultancy.nl", "ns4.coloclue.net"}, n, n, n, e, e, t},
5248 {"no.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5249 {"nz.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5250 {"pl.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5251 {"pt.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5252 {"ro.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5253 {"ru.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5254 {"se.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5255 {"si.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5256 {"sk.eu.org", &z[3774], x, 0, e, w{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5257 {"tr.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5258 {"uk.eu.org", &z[3774], x, 0, e, w{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, n, e, e, t},
5259 {"us.eu.org", &z[3774], x, 0, e, w{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, n, e, e, t},
5260 {"co.at.pn", &z[4002], x, 0, e, n, n, n, n, e, e, t},
5261 {"com.au.pn", &z[4003], x, 0, e, n, n, n, n, e, e, t},
5262 {"co.uk.pn", &z[4019], x, 0, e, n, n, n, n, e, e, t},
5263 {"co.at.tc", &z[4399], x, 0, e, n, n, n, n, e, e, t},
5264 {"com.au.tc", &z[4400], x, 0x800, e, n, n, n, n, e, e, t},
5265 {"co.uk.tc", &z[4430], x, 0, e, n, n, n, n, e, e, t},
5266 {"me.uk.tc", &z[4430], x, 0, e, n, n, n, n, e, e, t},
5267 {"org.uk.tc", &z[4430], x, 0, e, n, n, n, n, e, e, t},
5268 {"co.at.tt", &z[4537], x, 0, e, n, w{"195.225.236.206"}, n, n, e, e, t},
5269 {"com.au.tt", &z[4538], x, 0, e, n, n, n, n, e, e, t},
5270 {"co.uk.tt", &z[4566], x, 0, e, n, n, n, n, e, e, t},
5271 {"me.uk.tt", &z[4566], x, 0, e, n, n, n, n, e, e, t},
5272 {"org.uk.tt", &z[4566], x, 0, e, n, n, n, n, e, e, t},
5273 {"barking-dagenham.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5274 {"barnet.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5275 {"barnsley.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5276 {"bathnes.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5277 {"beds.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5278 {"bexley.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5279 {"bham.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5280 {"blackburn.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5281 {"blackpool.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5282 {"bolton.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5283 {"bournemouth.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5284 {"bracknell-forest.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5285 {"bradford.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5286 {"brent.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5287 {"doncaster.sch.uk", &z[4677], x, 0, e, n, n, n, n, e, e, t},
5288 {"bg.ac.yu", &z[4809], x, 0x800, e, n, n, n, n, e, e, t},
5289 {"ecape.school.za", &z[4839], x, 0, e, w{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, n, e, e, t},
5290 {"fs.school.za", &z[4839], x, 0, e, w{"mopani.school.za", "ns0.serendipity.org.za", "nyx.marques.co.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, n, e, e, t},
5291 {"gp.school.za", &z[4839], x, 0, e, w{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ns2.obsidian.co.za", "ochre.school.za"}, n, n, n, e, e, t},
5292 {"kzn.school.za", &z[4839], x, 0, e, w{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "sec.zadns.net", "ucthpx.uct.ac.za"}, n, n, n, e, e, t},
5293 {"lp.school.za", &z[4839], x, 0, e, w{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, n, e, e, t},
5294 {"mpm.school.za", &z[4839], x, 0, e, w{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, n, e, e, t},
5295 {"ncape.school.za", &z[4839], x, 0, e, w{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, n, e, e, t},
5296 {"nw.school.za", &z[4839], x, 0, e, w{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, n, e, e, t},
5297 {"wcape.school.za", &z[4839], x, 0, e, w{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, n, e, e, t},
52705298 }
5271
5272 // ZoneMap maps domain names to Zones.
5273 var ZoneMap = map[string]*Zone{
5274 "aaa": &z[0],
5275 "aarp": &z[1],
5276 "abarth": &z[2],
5277 "abb": &z[3],
5278 "abbott": &z[4],
5279 "abbvie": &z[5],
5280 "abc": &z[6],
5281 "able": &z[7],
5282 "abogado": &z[8],
5283 "abudhabi": &z[9],
5284 "ac": &z[10],
5285 "academy": &z[11],
5286 "accenture": &z[12],
5287 "accountant": &z[13],
5288 "accountants": &z[14],
5289 "acer": &z[15],
5290 "aco": &z[16],
5291 "active": &z[17],
5292 "actor": &z[18],
5293 "ad": &z[19],
5294 "adac": &z[20],
5295 "ads": &z[21],
5296 "adult": &z[22],
5297 "ae": &z[23],
5298 "aeg": &z[24],
5299 "aero": &z[25],
5300 "aetna": &z[26],
5301 "af": &z[27],
5302 "afamilycompany": &z[28],
5303 "afl": &z[29],
5304 "africa": &z[30],
5305 "africamagic": &z[31],
5306 "ag": &z[32],
5307 "agakhan": &z[33],
5308 "agency": &z[34],
5309 "ai": &z[35],
5310 "aig": &z[36],
5311 "aigo": &z[37],
5312 "airbus": &z[38],
5313 "airforce": &z[39],
5314 "airtel": &z[40],
5315 "akdn": &z[41],
5316 "al": &z[42],
5317 "alcon": &z[43],
5318 "alfaromeo": &z[44],
5319 "alibaba": &z[45],
5320 "alipay": &z[46],
5321 "allfinanz": &z[47],
5322 "allfinanzberater": &z[48],
5323 "allfinanzberatung": &z[49],
5324 "allstate": &z[50],
5325 "ally": &z[51],
5326 "alsace": &z[52],
5327 "alstom": &z[53],
5328 "am": &z[54],
5329 "amazon": &z[55],
5330 "americanexpress": &z[56],
5331 "americanfamily": &z[57],
5332 "amex": &z[58],
5333 "amfam": &z[59],
5334 "amica": &z[60],
5335 "amp": &z[61],
5336 "amsterdam": &z[62],
5337 "an": &z[63],
5338 "analytics": &z[64],
5339 "android": &z[65],
5340 "anquan": &z[66],
5341 "ansons": &z[67],
5342 "anthem": &z[68],
5343 "antivirus": &z[69],
5344 "anz": &z[70],
5345 "ao": &z[71],
5346 "aol": &z[72],
5347 "apartments": &z[73],
5348 "app": &z[74],
5349 "apple": &z[75],
5350 "aq": &z[76],
5351 "aquarelle": &z[77],
5352 "aquitaine": &z[78],
5353 "ar": &z[79],
5354 "arab": &z[80],
5355 "aramco": &z[81],
5356 "archi": &z[82],
5357 "architect": &z[83],
5358 "army": &z[84],
5359 "arpa": &z[85],
5360 "art": &z[86],
5361 "arte": &z[87],
5362 "as": &z[88],
5363 "asda": &z[89],
5364 "asia": &z[90],
5365 "associates": &z[91],
5366 "astrium": &z[92],
5367 "at": &z[93],
5368 "athleta": &z[94],
5369 "attorney": &z[95],
5370 "au": &z[96],
5371 "auction": &z[97],
5372 "audi": &z[98],
5373 "audible": &z[99],
5374 "audio": &z[100],
5375 "auspost": &z[101],
5376 "author": &z[102],
5377 "auto": &z[103],
5378 "autoinsurance": &z[104],
5379 "autos": &z[105],
5380 "avery": &z[106],
5381 "avianca": &z[107],
5382 "aw": &z[108],
5383 "aws": &z[109],
5384 "ax": &z[110],
5385 "axa": &z[111],
5386 "axis": &z[112],
5387 "az": &z[113],
5388 "azure": &z[114],
5389 "ba": &z[115],
5390 "baby": &z[116],
5391 "baidu": &z[117],
5392 "banamex": &z[118],
5393 "bananarepublic": &z[119],
5394 "band": &z[120],
5395 "bank": &z[121],
5396 "banque": &z[122],
5397 "bar": &z[123],
5398 "barcelona": &z[124],
5399 "barclaycard": &z[125],
5400 "barclays": &z[126],
5401 "barefoot": &z[127],
5402 "bargains": &z[128],
5403 "baseball": &z[129],
5404 "basketball": &z[130],
5405 "bauhaus": &z[131],
5406 "bayern": &z[132],
5407 "bb": &z[133],
5408 "bbb": &z[134],
5409 "bbc": &z[135],
5410 "bbt": &z[136],
5411 "bbva": &z[137],
5412 "bcg": &z[138],
5413 "bcn": &z[139],
5414 "bd": &z[140],
5415 "be": &z[141],
5416 "beats": &z[142],
5417 "beauty": &z[143],
5418 "beer": &z[144],
5419 "beknown": &z[145],
5420 "bentley": &z[146],
5421 "berlin": &z[147],
5422 "best": &z[148],
5423 "bestbuy": &z[149],
5424 "bet": &z[150],
5425 "bf": &z[151],
5426 "bg": &z[152],
5427 "bh": &z[153],
5428 "bharti": &z[154],
5429 "bi": &z[155],
5430 "bible": &z[156],
5431 "bid": &z[157],
5432 "bike": &z[158],
5433 "bing": &z[159],
5434 "bingo": &z[160],
5435 "bio": &z[161],
5436 "biz": &z[162],
5437 "bj": &z[163],
5438 "black": &z[164],
5439 "blackfriday": &z[165],
5440 "blanco": &z[166],
5441 "blockbuster": &z[167],
5442 "blog": &z[168],
5443 "bloomberg": &z[169],
5444 "bloomingdales": &z[170],
5445 "blue": &z[171],
5446 "bm": &z[172],
5447 "bms": &z[173],
5448 "bmw": &z[174],
5449 "bn": &z[175],
5450 "bnl": &z[176],
5451 "bnpparibas": &z[177],
5452 "bo": &z[178],
5453 "boats": &z[179],
5454 "boehringer": &z[180],
5455 "bofa": &z[181],
5456 "bom": &z[182],
5457 "bond": &z[183],
5458 "boo": &z[184],
5459 "book": &z[185],
5460 "booking": &z[186],
5461 "boots": &z[187],
5462 "bosch": &z[188],
5463 "bostik": &z[189],
5464 "boston": &z[190],
5465 "bot": &z[191],
5466 "boutique": &z[192],
5467 "box": &z[193],
5468 "br": &z[194],
5469 "bradesco": &z[195],
5470 "bridgestone": &z[196],
5471 "broadway": &z[197],
5472 "broker": &z[198],
5473 "brother": &z[199],
5474 "brussels": &z[200],
5475 "bs": &z[201],
5476 "bt": &z[202],
5477 "budapest": &z[203],
5478 "bugatti": &z[204],
5479 "buick": &z[205],
5480 "build": &z[206],
5481 "builders": &z[207],
5482 "business": &z[208],
5483 "buy": &z[209],
5484 "buzz": &z[210],
5485 "bv": &z[211],
5486 "bw": &z[212],
5487 "bway": &z[213],
5488 "by": &z[214],
5489 "bz": &z[215],
5490 "bzh": &z[216],
5491 "ca": &z[217],
5492 "cab": &z[218],
5493 "cadillac": &z[219],
5494 "cafe": &z[220],
5495 "cal": &z[221],
5496 "call": &z[222],
5497 "calvinklein": &z[223],
5498 "cam": &z[224],
5499 "camera": &z[225],
5500 "camp": &z[226],
5501 "canalplus": &z[227],
5502 "cancerresearch": &z[228],
5503 "canon": &z[229],
5504 "capetown": &z[230],
5505 "capital": &z[231],
5506 "capitalone": &z[232],
5507 "car": &z[233],
5508 "caravan": &z[234],
5509 "cards": &z[235],
5510 "care": &z[236],
5511 "career": &z[237],
5512 "careers": &z[238],
5513 "carinsurance": &z[239],
5514 "cars": &z[240],
5515 "cartier": &z[241],
5516 "casa": &z[242],
5517 "case": &z[243],
5518 "caseih": &z[244],
5519 "cash": &z[245],
5520 "cashbackbonus": &z[246],
5521 "casino": &z[247],
5522 "cat": &z[248],
5523 "catalonia": &z[249],
5524 "catering": &z[250],
5525 "catholic": &z[251],
5526 "cba": &z[252],
5527 "cbn": &z[253],
5528 "cbre": &z[254],
5529 "cbs": &z[255],
5530 "cc": &z[256],
5531 "cd": &z[257],
5532 "ceb": &z[258],
5533 "center": &z[259],
5534 "ceo": &z[260],
5535 "cern": &z[261],
5536 "cf": &z[262],
5537 "cfa": &z[263],
5538 "cfd": &z[264],
5539 "cg": &z[265],
5540 "ch": &z[266],
5541 "chanel": &z[267],
5542 "changiairport": &z[268],
5543 "channel": &z[269],
5544 "charity": &z[270],
5545 "chartis": &z[271],
5546 "chase": &z[272],
5547 "chat": &z[273],
5548 "cheap": &z[274],
5549 "chesapeake": &z[275],
5550 "chevrolet": &z[276],
5551 "chevy": &z[277],
5552 "chintai": &z[278],
5553 "chk": &z[279],
5554 "chloe": &z[280],
5555 "christmas": &z[281],
5556 "chrome": &z[282],
5557 "chrysler": &z[283],
5558 "church": &z[284],
5559 "ci": &z[285],
5560 "cimb": &z[286],
5561 "cipriani": &z[287],
5562 "circle": &z[288],
5563 "cisco": &z[289],
5564 "citadel": &z[290],
5565 "citi": &z[291],
5566 "citic": &z[292],
5567 "city": &z[293],
5568 "cityeats": &z[294],
5569 "ck": &z[295],
5570 "cl": &z[296],
5571 "claims": &z[297],
5572 "cleaning": &z[298],
5573 "click": &z[299],
5574 "clinic": &z[300],
5575 "clinique": &z[301],
5576 "clothing": &z[302],
5577 "cloud": &z[303],
5578 "club": &z[304],
5579 "clubmed": &z[305],
5580 "cm": &z[306],
5581 "cn": &z[307],
5582 "co": &z[308],
5583 "coach": &z[309],
5584 "codes": &z[310],
5585 "coffee": &z[311],
5586 "college": &z[312],
5587 "cologne": &z[313],
5588 "com": &z[314],
5589 "comcast": &z[315],
5590 "commbank": &z[316],
5591 "community": &z[317],
5592 "company": &z[318],
5593 "compare": &z[319],
5594 "computer": &z[320],
5595 "comsec": &z[321],
5596 "condos": &z[322],
5597 "connectors": &z[323],
5598 "construction": &z[324],
5599 "consulting": &z[325],
5600 "contact": &z[326],
5601 "contractors": &z[327],
5602 "cooking": &z[328],
5603 "cookingchannel": &z[329],
5604 "cool": &z[330],
5605 "coop": &z[331],
5606 "corp": &z[332],
5607 "corsica": &z[333],
5608 "country": &z[334],
5609 "coupon": &z[335],
5610 "coupons": &z[336],
5611 "courses": &z[337],
5612 "cpa": &z[338],
5613 "cr": &z[339],
5614 "credit": &z[340],
5615 "creditcard": &z[341],
5616 "creditunion": &z[342],
5617 "cricket": &z[343],
5618 "crown": &z[344],
5619 "crs": &z[345],
5620 "cruise": &z[346],
5621 "cruises": &z[347],
5622 "csc": &z[348],
5623 "cu": &z[349],
5624 "cuisinella": &z[350],
5625 "cv": &z[351],
5626 "cw": &z[352],
5627 "cx": &z[353],
5628 "cy": &z[354],
5629 "cymru": &z[355],
5630 "cyou": &z[356],
5631 "cz": &z[357],
5632 "dabur": &z[358],
5633 "dad": &z[359],
5634 "dance": &z[360],
5635 "data": &z[361],
5636 "date": &z[362],
5637 "dating": &z[363],
5638 "datsun": &z[364],
5639 "day": &z[365],
5640 "dclk": &z[366],
5641 "dds": &z[367],
5642 "de": &z[368],
5643 "deal": &z[369],
5644 "dealer": &z[370],
5645 "deals": &z[371],
5646 "degree": &z[372],
5647 "delivery": &z[373],
5648 "dell": &z[374],
5649 "delmonte": &z[375],
5650 "deloitte": &z[376],
5651 "delta": &z[377],
5652 "democrat": &z[378],
5653 "dental": &z[379],
5654 "dentist": &z[380],
5655 "desi": &z[381],
5656 "design": &z[382],
5657 "deutschepost": &z[383],
5658 "dev": &z[384],
5659 "dhl": &z[385],
5660 "diamonds": &z[386],
5661 "diet": &z[387],
5662 "digikey": &z[388],
5663 "digital": &z[389],
5664 "direct": &z[390],
5665 "directory": &z[391],
5666 "discount": &z[392],
5667 "discover": &z[393],
5668 "dish": &z[394],
5669 "diy": &z[395],
5670 "dj": &z[396],
5671 "dk": &z[397],
5672 "dm": &z[398],
5673 "dnb": &z[399],
5674 "dnp": &z[400],
5675 "do": &z[401],
5676 "docomo": &z[402],
5677 "docs": &z[403],
5678 "doctor": &z[404],
5679 "dodge": &z[405],
5680 "dog": &z[406],
5681 "doha": &z[407],
5682 "domains": &z[408],
5683 "doosan": &z[409],
5684 "dot": &z[410],
5685 "dotafrica": &z[411],
5686 "download": &z[412],
5687 "drive": &z[413],
5688 "dstv": &z[414],
5689 "dtv": &z[415],
5690 "dubai": &z[416],
5691 "duck": &z[417],
5692 "dunlop": &z[418],
5693 "duns": &z[419],
5694 "dupont": &z[420],
5695 "durban": &z[421],
5696 "dvag": &z[422],
5697 "dvr": &z[423],
5698 "dwg": &z[424],
5699 "dz": &z[425],
5700 "earth": &z[426],
5701 "eat": &z[427],
5702 "ec": &z[428],
5703 "eco": &z[429],
5704 "ecom": &z[430],
5705 "edeka": &z[431],
5706 "edu": &z[432],
5707 "education": &z[433],
5708 "ee": &z[434],
5709 "eg": &z[435],
5710 "email": &z[436],
5711 "emerck": &z[437],
5712 "emerson": &z[438],
5713 "energy": &z[439],
5714 "engineer": &z[440],
5715 "engineering": &z[441],
5716 "enterprises": &z[442],
5717 "epost": &z[443],
5718 "epson": &z[444],
5719 "equipment": &z[445],
5720 "er": &z[446],
5721 "ericsson": &z[447],
5722 "erni": &z[448],
5723 "es": &z[449],
5724 "esq": &z[450],
5725 "estate": &z[451],
5726 "esurance": &z[452],
5727 "et": &z[453],
5728 "etisalat": &z[454],
5729 "eu": &z[455],
5730 "eurovision": &z[456],
5731 "eus": &z[457],
5732 "events": &z[458],
5733 "everbank": &z[459],
5734 "exchange": &z[460],
5735 "expert": &z[461],
5736 "exposed": &z[462],
5737 "express": &z[463],
5738 "extraspace": &z[464],
5739 "fage": &z[465],
5740 "fail": &z[466],
5741 "fairwinds": &z[467],
5742 "faith": &z[468],
5743 "family": &z[469],
5744 "fan": &z[470],
5745 "fans": &z[471],
5746 "farm": &z[472],
5747 "farmers": &z[473],
5748 "fashion": &z[474],
5749 "fast": &z[475],
5750 "fedex": &z[476],
5751 "feedback": &z[477],
5752 "ferrari": &z[478],
5753 "ferrero": &z[479],
5754 "fi": &z[480],
5755 "fiat": &z[481],
5756 "fidelity": &z[482],
5757 "fido": &z[483],
5758 "film": &z[484],
5759 "final": &z[485],
5760 "finance": &z[486],
5761 "financial": &z[487],
5762 "financialaid": &z[488],
5763 "finish": &z[489],
5764 "fire": &z[490],
5765 "firestone": &z[491],
5766 "firmdale": &z[492],
5767 "fish": &z[493],
5768 "fishing": &z[494],
5769 "fit": &z[495],
5770 "fitness": &z[496],
5771 "fj": &z[497],
5772 "fk": &z[498],
5773 "flickr": &z[499],
5774 "flights": &z[500],
5775 "flir": &z[501],
5776 "florist": &z[502],
5777 "flowers": &z[503],
5778 "fls": &z[504],
5779 "flsmidth": &z[505],
5780 "fly": &z[506],
5781 "fm": &z[507],
5782 "fo": &z[508],
5783 "foo": &z[509],
5784 "food": &z[510],
5785 "foodnetwork": &z[511],
5786 "football": &z[512],
5787 "ford": &z[513],
5788 "forex": &z[514],
5789 "forsale": &z[515],
5790 "forum": &z[516],
5791 "foundation": &z[517],
5792 "fox": &z[518],
5793 "fr": &z[519],
5794 "free": &z[520],
5795 "fresenius": &z[521],
5796 "frl": &z[522],
5797 "frogans": &z[523],
5798 "frontdoor": &z[524],
5799 "frontier": &z[525],
5800 "ftr": &z[526],
5801 "fujitsu": &z[527],
5802 "fujixerox": &z[528],
5803 "fun": &z[529],
5804 "fund": &z[530],
5805 "furniture": &z[531],
5806 "futbol": &z[532],
5807 "fyi": &z[533],
5808 "ga": &z[534],
5809 "gal": &z[535],
5810 "gallery": &z[536],
5811 "gallo": &z[537],
5812 "gallup": &z[538],
5813 "game": &z[539],
5814 "games": &z[540],
5815 "gap": &z[541],
5816 "garden": &z[542],
5817 "garnier": &z[543],
5818 "gay": &z[544],
5819 "gb": &z[545],
5820 "gbiz": &z[546],
5821 "gcc": &z[547],
5822 "gd": &z[548],
5823 "gdn": &z[549],
5824 "ge": &z[550],
5825 "gea": &z[551],
5826 "gecompany": &z[552],
5827 "ged": &z[553],
5828 "gent": &z[554],
5829 "genting": &z[555],
5830 "george": &z[556],
5831 "gf": &z[557],
5832 "gg": &z[558],
5833 "ggee": &z[559],
5834 "gh": &z[560],
5835 "gi": &z[561],
5836 "gift": &z[562],
5837 "gifts": &z[563],
5838 "gives": &z[564],
5839 "giving": &z[565],
5840 "gl": &z[566],
5841 "glade": &z[567],
5842 "glass": &z[568],
5843 "gle": &z[569],
5844 "global": &z[570],
5845 "globalx": &z[571],
5846 "globo": &z[572],
5847 "gm": &z[573],
5848 "gmail": &z[574],
5849 "gmbh": &z[575],
5850 "gmc": &z[576],
5851 "gmo": &z[577],
5852 "gmx": &z[578],
5853 "gn": &z[579],
5854 "godaddy": &z[580],
5855 "gold": &z[581],
5856 "goldpoint": &z[582],
5857 "golf": &z[583],
5858 "goo": &z[584],
5859 "goodhands": &z[585],
5860 "goodyear": &z[586],
5861 "goog": &z[587],
5862 "google": &z[588],
5863 "gop": &z[589],
5864 "got": &z[590],
5865 "gotv": &z[591],
5866 "gov": &z[592],
5867 "gp": &z[593],
5868 "gq": &z[594],
5869 "gr": &z[595],
5870 "grainger": &z[596],
5871 "graphics": &z[597],
5872 "gratis": &z[598],
5873 "gree": &z[599],
5874 "green": &z[600],
5875 "gripe": &z[601],
5876 "grocery": &z[602],
5877 "group": &z[603],
5878 "gs": &z[604],
5879 "gt": &z[605],
5880 "gu": &z[606],
5881 "guardian": &z[607],
5882 "guardianlife": &z[608],
5883 "guardianmedia": &z[609],
5884 "gucci": &z[610],
5885 "guge": &z[611],
5886 "guide": &z[612],
5887 "guitars": &z[613],
5888 "guru": &z[614],
5889 "gw": &z[615],
5890 "gy": &z[616],
5891 "hair": &z[617],
5892 "halal": &z[618],
5893 "hamburg": &z[619],
5894 "hangout": &z[620],
5895 "haus": &z[621],
5896 "hbo": &z[622],
5897 "hdfc": &z[623],
5898 "hdfcbank": &z[624],
5899 "health": &z[625],
5900 "healthcare": &z[626],
5901 "heart": &z[627],
5902 "heinz": &z[628],
5903 "help": &z[629],
5904 "helsinki": &z[630],
5905 "here": &z[631],
5906 "hermes": &z[632],
5907 "hgtv": &z[633],
5908 "hilton": &z[634],
5909 "hiphop": &z[635],
5910 "hisamitsu": &z[636],
5911 "hitachi": &z[637],
5912 "hiv": &z[638],
5913 "hk": &z[639],
5914 "hkt": &z[640],
5915 "hm": &z[641],
5916 "hn": &z[642],
5917 "hockey": &z[643],
5918 "holdings": &z[644],
5919 "holiday": &z[645],
5920 "home": &z[646],
5921 "homedepot": &z[647],
5922 "homegoods": &z[648],
5923 "homes": &z[649],
5924 "homesense": &z[650],
5925 "honda": &z[651],
5926 "honeywell": &z[652],
5927 "horse": &z[653],
5928 "hospital": &z[654],
5929 "host": &z[655],
5930 "hosting": &z[656],
5931 "hot": &z[657],
5932 "hoteis": &z[658],
5933 "hotel": &z[659],
5934 "hoteles": &z[660],
5935 "hotels": &z[661],
5936 "hotmail": &z[662],
5937 "house": &z[663],
5938 "how": &z[664],
5939 "hr": &z[665],
5940 "hsbc": &z[666],
5941 "ht": &z[667],
5942 "htc": &z[668],
5943 "hu": &z[669],
5944 "hughes": &z[670],
5945 "hyatt": &z[671],
5946 "hyundai": &z[672],
5947 "ibm": &z[673],
5948 "icbc": &z[674],
5949 "ice": &z[675],
5950 "icu": &z[676],
5951 "id": &z[677],
5952 "idn": &z[678],
5953 "ie": &z[679],
5954 "ieee": &z[680],
5955 "ifm": &z[681],
5956 "iinet": &z[682],
5957 "ikano": &z[683],
5958 "il": &z[684],
5959 "im": &z[685],
5960 "imamat": &z[686],
5961 "imdb": &z[687],
5962 "immo": &z[688],
5963 "immobilien": &z[689],
5964 "in": &z[690],
5965 "inc": &z[691],
5966 "indians": &z[692],
5967 "industries": &z[693],
5968 "infiniti": &z[694],
5969 "info": &z[695],
5970 "infosys": &z[696],
5971 "infy": &z[697],
5972 "ing": &z[698],
5973 "ink": &z[699],
5974 "institute": &z[700],
5975 "insurance": &z[701],
5976 "insure": &z[702],
5977 "int": &z[703],
5978 "intel": &z[704],
5979 "international": &z[705],
5980 "intuit": &z[706],
5981 "investments": &z[707],
5982 "io": &z[708],
5983 "ipiranga": &z[709],
5984 "iq": &z[710],
5985 "ir": &z[711],
5986 "ira": &z[712],
5987 "irish": &z[713],
5988 "is": &z[714],
5989 "iselect": &z[715],
5990 "islam": &z[716],
5991 "ismaili": &z[717],
5992 "ist": &z[718],
5993 "istanbul": &z[719],
5994 "it": &z[720],
5995 "itau": &z[721],
5996 "itv": &z[722],
5997 "iveco": &z[723],
5998 "iwc": &z[724],
5999 "jaguar": &z[725],
6000 "java": &z[726],
6001 "jcb": &z[727],
6002 "jcp": &z[728],
6003 "je": &z[729],
6004 "jeep": &z[730],
6005 "jetzt": &z[731],
6006 "jewelry": &z[732],
6007 "jio": &z[733],
6008 "jlc": &z[734],
6009 "jll": &z[735],
6010 "jm": &z[736],
6011 "jmp": &z[737],
6012 "jnj": &z[738],
6013 "jo": &z[739],
6014 "jobs": &z[740],
6015 "joburg": &z[741],
6016 "jot": &z[742],
6017 "joy": &z[743],
6018 "jp": &z[744],
6019 "jpmorgan": &z[745],
6020 "jpmorganchase": &z[746],
6021 "jprs": &z[747],
6022 "juegos": &z[748],
6023 "juniper": &z[749],
6024 "justforu": &z[750],
6025 "kaufen": &z[751],
6026 "kddi": &z[752],
6027 "ke": &z[753],
6028 "kerastase": &z[754],
6029 "kerryhotels": &z[755],
6030 "kerrylogisitics": &z[756],
6031 "kerrylogistics": &z[757],
6032 "kerryproperties": &z[758],
6033 "ketchup": &z[759],
6034 "kfh": &z[760],
6035 "kg": &z[761],
6036 "kh": &z[762],
6037 "ki": &z[763],
6038 "kia": &z[764],
6039 "kid": &z[765],
6040 "kids": &z[766],
6041 "kiehls": &z[767],
6042 "kim": &z[768],
6043 "kinder": &z[769],
6044 "kindle": &z[770],
6045 "kitchen": &z[771],
6046 "kiwi": &z[772],
6047 "km": &z[773],
6048 "kn": &z[774],
6049 "koeln": &z[775],
6050 "komatsu": &z[776],
6051 "konami": &z[777],
6052 "kone": &z[778],
6053 "kosher": &z[779],
6054 "kp": &z[780],
6055 "kpmg": &z[781],
6056 "kpn": &z[782],
6057 "kr": &z[783],
6058 "krd": &z[784],
6059 "kred": &z[785],
6060 "kuokgroup": &z[786],
6061 "kw": &z[787],
6062 "ky": &z[788],
6063 "kyknet": &z[789],
6064 "kyoto": &z[790],
6065 "kz": &z[791],
6066 "la": &z[792],
6067 "lacaixa": &z[793],
6068 "ladbrokes": &z[794],
6069 "lamborghini": &z[795],
6070 "lamer": &z[796],
6071 "lancaster": &z[797],
6072 "lancia": &z[798],
6073 "lancome": &z[799],
6074 "land": &z[800],
6075 "landrover": &z[801],
6076 "lanxess": &z[802],
6077 "lasalle": &z[803],
6078 "lat": &z[804],
6079 "latino": &z[805],
6080 "latrobe": &z[806],
6081 "law": &z[807],
6082 "lawyer": &z[808],
6083 "lb": &z[809],
6084 "lc": &z[810],
6085 "lds": &z[811],
6086 "lease": &z[812],
6087 "leclerc": &z[813],
6088 "lefrak": &z[814],
6089 "legal": &z[815],
6090 "lego": &z[816],
6091 "lexus": &z[817],
6092 "lgbt": &z[818],
6093 "li": &z[819],
6094 "liaison": &z[820],
6095 "lidl": &z[821],
6096 "life": &z[822],
6097 "lifeinsurance": &z[823],
6098 "lifestyle": &z[824],
6099 "lighting": &z[825],
6100 "like": &z[826],
6101 "lilly": &z[827],
6102 "limited": &z[828],
6103 "limo": &z[829],
6104 "lincoln": &z[830],
6105 "linde": &z[831],
6106 "link": &z[832],
6107 "lipsy": &z[833],
6108 "live": &z[834],
6109 "livestrong": &z[835],
6110 "living": &z[836],
6111 "lixil": &z[837],
6112 "lk": &z[838],
6113 "llc": &z[839],
6114 "llp": &z[840],
6115 "loan": &z[841],
6116 "loans": &z[842],
6117 "locker": &z[843],
6118 "locus": &z[844],
6119 "loft": &z[845],
6120 "lol": &z[846],
6121 "london": &z[847],
6122 "loreal": &z[848],
6123 "lotte": &z[849],
6124 "lotto": &z[850],
6125 "love": &z[851],
6126 "lpl": &z[852],
6127 "lplfinancial": &z[853],
6128 "lr": &z[854],
6129 "ls": &z[855],
6130 "lt": &z[856],
6131 "ltd": &z[857],
6132 "ltda": &z[858],
6133 "lu": &z[859],
6134 "lundbeck": &z[860],
6135 "lupin": &z[861],
6136 "luxe": &z[862],
6137 "luxury": &z[863],
6138 "lv": &z[864],
6139 "ly": &z[865],
6140 "ma": &z[866],
6141 "macys": &z[867],
6142 "madrid": &z[868],
6143 "maif": &z[869],
6144 "mail": &z[870],
6145 "maison": &z[871],
6146 "makeup": &z[872],
6147 "man": &z[873],
6148 "management": &z[874],
6149 "mango": &z[875],
6150 "map": &z[876],
6151 "market": &z[877],
6152 "marketing": &z[878],
6153 "markets": &z[879],
6154 "marriott": &z[880],
6155 "marshalls": &z[881],
6156 "maserati": &z[882],
6157 "matrix": &z[883],
6158 "mattel": &z[884],
6159 "maybelline": &z[885],
6160 "mba": &z[886],
6161 "mc": &z[887],
6162 "mcd": &z[888],
6163 "mcdonalds": &z[889],
6164 "mckinsey": &z[890],
6165 "md": &z[891],
6166 "me": &z[892],
6167 "med": &z[893],
6168 "media": &z[894],
6169 "medical": &z[895],
6170 "meet": &z[896],
6171 "melbourne": &z[897],
6172 "meme": &z[898],
6173 "memorial": &z[899],
6174 "men": &z[900],
6175 "menu": &z[901],
6176 "meo": &z[902],
6177 "merck": &z[903],
6178 "merckmsd": &z[904],
6179 "metlife": &z[905],
6180 "mf": &z[906],
6181 "mg": &z[907],
6182 "mh": &z[908],
6183 "miami": &z[909],
6184 "microsoft": &z[910],
6185 "mih": &z[911],
6186 "mii": &z[912],
6187 "mil": &z[913],
6188 "mini": &z[914],
6189 "mint": &z[915],
6190 "mit": &z[916],
6191 "mitek": &z[917],
6192 "mitsubishi": &z[918],
6193 "mk": &z[919],
6194 "ml": &z[920],
6195 "mlb": &z[921],
6196 "mls": &z[922],
6197 "mm": &z[923],
6198 "mma": &z[924],
6199 "mn": &z[925],
6200 "mnet": &z[926],
6201 "mo": &z[927],
6202 "mobi": &z[928],
6203 "mobile": &z[929],
6204 "mobily": &z[930],
6205 "moda": &z[931],
6206 "moe": &z[932],
6207 "moi": &z[933],
6208 "mom": &z[934],
6209 "monash": &z[935],
6210 "money": &z[936],
6211 "monster": &z[937],
6212 "montblanc": &z[938],
6213 "mopar": &z[939],
6214 "mormon": &z[940],
6215 "mortgage": &z[941],
6216 "moscow": &z[942],
6217 "moto": &z[943],
6218 "motorcycles": &z[944],
6219 "mov": &z[945],
6220 "movie": &z[946],
6221 "movistar": &z[947],
6222 "mozaic": &z[948],
6223 "mp": &z[949],
6224 "mq": &z[950],
6225 "mr": &z[951],
6226 "mrmuscle": &z[952],
6227 "mrporter": &z[953],
6228 "ms": &z[954],
6229 "msd": &z[955],
6230 "mt": &z[956],
6231 "mtn": &z[957],
6232 "mtpc": &z[958],
6233 "mtr": &z[959],
6234 "mu": &z[960],
6235 "multichoice": &z[961],
6236 "museum": &z[962],
6237 "music": &z[963],
6238 "mutual": &z[964],
6239 "mutualfunds": &z[965],
6240 "mutuelle": &z[966],
6241 "mv": &z[967],
6242 "mw": &z[968],
6243 "mx": &z[969],
6244 "my": &z[970],
6245 "mz": &z[971],
6246 "mzansimagic": &z[972],
6247 "na": &z[973],
6248 "nab": &z[974],
6249 "nadex": &z[975],
6250 "nagoya": &z[976],
6251 "name": &z[977],
6252 "naspers": &z[978],
6253 "nationwide": &z[979],
6254 "natura": &z[980],
6255 "navy": &z[981],
6256 "nba": &z[982],
6257 "nc": &z[983],
6258 "ne": &z[984],
6259 "nec": &z[985],
6260 "net": &z[986],
6261 "netaporter": &z[987],
6262 "netbank": &z[988],
6263 "netflix": &z[989],
6264 "network": &z[990],
6265 "neustar": &z[991],
6266 "new": &z[992],
6267 "newholland": &z[993],
6268 "news": &z[994],
6269 "next": &z[995],
6270 "nextdirect": &z[996],
6271 "nexus": &z[997],
6272 "nf": &z[998],
6273 "nfl": &z[999],
6274 "ng": &z[1000],
6275 "ngo": &z[1001],
6276 "nhk": &z[1002],
6277 "ni": &z[1003],
6278 "nico": &z[1004],
6279 "nike": &z[1005],
6280 "nikon": &z[1006],
6281 "ninja": &z[1007],
6282 "nissan": &z[1008],
6283 "nissay": &z[1009],
6284 "nl": &z[1010],
6285 "no": &z[1011],
6286 "nokia": &z[1012],
6287 "northlandinsurance": &z[1013],
6288 "northwesternmutual": &z[1014],
6289 "norton": &z[1015],
6290 "now": &z[1016],
6291 "nowruz": &z[1017],
6292 "nowtv": &z[1018],
6293 "np": &z[1019],
6294 "nr": &z[1020],
6295 "nra": &z[1021],
6296 "nrw": &z[1022],
6297 "ntt": &z[1023],
6298 "nu": &z[1024],
6299 "nyc": &z[1025],
6300 "nz": &z[1026],
6301 "obi": &z[1027],
6302 "observer": &z[1028],
6303 "off": &z[1029],
6304 "office": &z[1030],
6305 "okinawa": &z[1031],
6306 "olayan": &z[1032],
6307 "olayangroup": &z[1033],
6308 "oldnavy": &z[1034],
6309 "ollo": &z[1035],
6310 "olympus": &z[1036],
6311 "om": &z[1037],
6312 "omega": &z[1038],
6313 "one": &z[1039],
6314 "ong": &z[1040],
6315 "onl": &z[1041],
6316 "online": &z[1042],
6317 "onyourside": &z[1043],
6318 "ooo": &z[1044],
6319 "open": &z[1045],
6320 "oracle": &z[1046],
6321 "orange": &z[1047],
6322 "org": &z[1048],
6323 "organic": &z[1049],
6324 "orientexpress": &z[1050],
6325 "origin": &z[1051],
6326 "origins": &z[1052],
6327 "osaka": &z[1053],
6328 "otsuka": &z[1054],
6329 "ott": &z[1055],
6330 "overheidnl": &z[1056],
6331 "ovh": &z[1057],
6332 "pa": &z[1058],
6333 "page": &z[1059],
6334 "pamperedchef": &z[1060],
6335 "panasonic": &z[1061],
6336 "panerai": &z[1062],
6337 "paris": &z[1063],
6338 "pars": &z[1064],
6339 "partners": &z[1065],
6340 "parts": &z[1066],
6341 "party": &z[1067],
6342 "passagens": &z[1068],
6343 "patagonia": &z[1069],
6344 "patch": &z[1070],
6345 "pay": &z[1071],
6346 "payu": &z[1072],
6347 "pccw": &z[1073],
6348 "pe": &z[1074],
6349 "persiangulf": &z[1075],
6350 "pet": &z[1076],
6351 "pets": &z[1077],
6352 "pf": &z[1078],
6353 "pfizer": &z[1079],
6354 "pg": &z[1080],
6355 "ph": &z[1081],
6356 "pharmacy": &z[1082],
6357 "phd": &z[1083],
6358 "philips": &z[1084],
6359 "phone": &z[1085],
6360 "photo": &z[1086],
6361 "photography": &z[1087],
6362 "photos": &z[1088],
6363 "physio": &z[1089],
6364 "piaget": &z[1090],
6365 "pics": &z[1091],
6366 "pictet": &z[1092],
6367 "pictures": &z[1093],
6368 "pid": &z[1094],
6369 "pin": &z[1095],
6370 "ping": &z[1096],
6371 "pink": &z[1097],
6372 "pioneer": &z[1098],
6373 "piperlime": &z[1099],
6374 "pitney": &z[1100],
6375 "pizza": &z[1101],
6376 "pk": &z[1102],
6377 "pl": &z[1103],
6378 "place": &z[1104],
6379 "play": &z[1105],
6380 "playstation": &z[1106],
6381 "plumbing": &z[1107],
6382 "plus": &z[1108],
6383 "pm": &z[1109],
6384 "pn": &z[1110],
6385 "pnc": &z[1111],
6386 "pohl": &z[1112],
6387 "poker": &z[1113],
6388 "politie": &z[1114],
6389 "polo": &z[1115],
6390 "porn": &z[1116],
6391 "post": &z[1117],
6392 "pr": &z[1118],
6393 "pramerica": &z[1119],
6394 "praxi": &z[1120],
6395 "press": &z[1121],
6396 "prime": &z[1122],
6397 "pro": &z[1123],
6398 "prod": &z[1124],
6399 "productions": &z[1125],
6400 "prof": &z[1126],
6401 "progressive": &z[1127],
6402 "promo": &z[1128],
6403 "properties": &z[1129],
6404 "property": &z[1130],
6405 "protection": &z[1131],
6406 "pru": &z[1132],
6407 "prudential": &z[1133],
6408 "ps": &z[1134],
6409 "pt": &z[1135],
6410 "pub": &z[1136],
6411 "pw": &z[1137],
6412 "pwc": &z[1138],
6413 "py": &z[1139],
6414 "qa": &z[1140],
6415 "qpon": &z[1141],
6416 "qtel": &z[1142],
6417 "quebec": &z[1143],
6418 "quest": &z[1144],
6419 "qvc": &z[1145],
6420 "racing": &z[1146],
6421 "radio": &z[1147],
6422 "raid": &z[1148],
6423 "ram": &z[1149],
6424 "re": &z[1150],
6425 "read": &z[1151],
6426 "realestate": &z[1152],
6427 "realtor": &z[1153],
6428 "realty": &z[1154],
6429 "recipes": &z[1155],
6430 "red": &z[1156],
6431 "redken": &z[1157],
6432 "redstone": &z[1158],
6433 "redumbrella": &z[1159],
6434 "rehab": &z[1160],
6435 "reise": &z[1161],
6436 "reisen": &z[1162],
6437 "reit": &z[1163],
6438 "reliance": &z[1164],
6439 "ren": &z[1165],
6440 "rent": &z[1166],
6441 "rentals": &z[1167],
6442 "repair": &z[1168],
6443 "report": &z[1169],
6444 "republican": &z[1170],
6445 "rest": &z[1171],
6446 "restaurant": &z[1172],
6447 "retirement": &z[1173],
6448 "review": &z[1174],
6449 "reviews": &z[1175],
6450 "rexroth": &z[1176],
6451 "rich": &z[1177],
6452 "richardli": &z[1178],
6453 "ricoh": &z[1179],
6454 "rightathome": &z[1180],
6455 "ril": &z[1181],
6456 "rio": &z[1182],
6457 "rip": &z[1183],
6458 "rmit": &z[1184],
6459 "ro": &z[1185],
6460 "rocher": &z[1186],
6461 "rocks": &z[1187],
6462 "rockwool": &z[1188],
6463 "rodeo": &z[1189],
6464 "rogers": &z[1190],
6465 "roma": &z[1191],
6466 "room": &z[1192],
6467 "root": &z[1193],
6468 "rs": &z[1194],
6469 "rsvp": &z[1195],
6470 "ru": &z[1196],
6471 "rugby": &z[1197],
6472 "ruhr": &z[1198],
6473 "run": &z[1199],
6474 "rw": &z[1200],
6475 "rwe": &z[1201],
6476 "ryukyu": &z[1202],
6477 "sa": &z[1203],
6478 "saarland": &z[1204],
6479 "safe": &z[1205],
6480 "safety": &z[1206],
6481 "safeway": &z[1207],
6482 "sakura": &z[1208],
6483 "sale": &z[1209],
6484 "salon": &z[1210],
6485 "samsclub": &z[1211],
6486 "samsung": &z[1212],
6487 "sandvik": &z[1213],
6488 "sandvikcoromant": &z[1214],
6489 "sanofi": &z[1215],
6490 "sap": &z[1216],
6491 "sapo": &z[1217],
6492 "sapphire": &z[1218],
6493 "sarl": &z[1219],
6494 "sas": &z[1220],
6495 "save": &z[1221],
6496 "saxo": &z[1222],
6497 "sb": &z[1223],
6498 "sbi": &z[1224],
6499 "sbs": &z[1225],
6500 "sc": &z[1226],
6501 "sca": &z[1227],
6502 "scb": &z[1228],
6503 "schaeffler": &z[1229],
6504 "schmidt": &z[1230],
6505 "scholarships": &z[1231],
6506 "school": &z[1232],
6507 "schule": &z[1233],
6508 "schwarz": &z[1234],
6509 "schwarzgroup": &z[1235],
6510 "science": &z[1236],
6511 "scjohnson": &z[1237],
6512 "scor": &z[1238],
6513 "scot": &z[1239],
6514 "sd": &z[1240],
6515 "se": &z[1241],
6516 "search": &z[1242],
6517 "seat": &z[1243],
6518 "secure": &z[1244],
6519 "security": &z[1245],
6520 "seek": &z[1246],
6521 "select": &z[1247],
6522 "sener": &z[1248],
6523 "services": &z[1249],
6524 "ses": &z[1250],
6525 "seven": &z[1251],
6526 "sew": &z[1252],
6527 "sex": &z[1253],
6528 "sexy": &z[1254],
6529 "sfr": &z[1255],
6530 "sg": &z[1256],
6531 "sh": &z[1257],
6532 "shangrila": &z[1258],
6533 "sharp": &z[1259],
6534 "shaw": &z[1260],
6535 "shell": &z[1261],
6536 "shia": &z[1262],
6537 "shiksha": &z[1263],
6538 "shoes": &z[1264],
6539 "shop": &z[1265],
6540 "shopping": &z[1266],
6541 "shopyourway": &z[1267],
6542 "shouji": &z[1268],
6543 "show": &z[1269],
6544 "showtime": &z[1270],
6545 "shriram": &z[1271],
6546 "si": &z[1272],
6547 "silk": &z[1273],
6548 "sina": &z[1274],
6549 "singles": &z[1275],
6550 "site": &z[1276],
6551 "sj": &z[1277],
6552 "sk": &z[1278],
6553 "ski": &z[1279],
6554 "skin": &z[1280],
6555 "skolkovo": &z[1281],
6556 "sky": &z[1282],
6557 "skydrive": &z[1283],
6558 "skype": &z[1284],
6559 "sl": &z[1285],
6560 "sling": &z[1286],
6561 "sm": &z[1287],
6562 "smart": &z[1288],
6563 "smile": &z[1289],
6564 "sn": &z[1290],
6565 "sncf": &z[1291],
6566 "so": &z[1292],
6567 "soccer": &z[1293],
6568 "social": &z[1294],
6569 "softbank": &z[1295],
6570 "software": &z[1296],
6571 "sohu": &z[1297],
6572 "solar": &z[1298],
6573 "solutions": &z[1299],
6574 "song": &z[1300],
6575 "sony": &z[1301],
6576 "soy": &z[1302],
6577 "spa": &z[1303],
6578 "space": &z[1304],
6579 "spiegel": &z[1305],
6580 "sport": &z[1306],
6581 "sports": &z[1307],
6582 "spot": &z[1308],
6583 "spreadbetting": &z[1309],
6584 "sr": &z[1310],
6585 "srl": &z[1311],
6586 "srt": &z[1312],
6587 "ss": &z[1313],
6588 "st": &z[1314],
6589 "stada": &z[1315],
6590 "staples": &z[1316],
6591 "star": &z[1317],
6592 "starhub": &z[1318],
6593 "statebank": &z[1319],
6594 "statefarm": &z[1320],
6595 "statoil": &z[1321],
6596 "stc": &z[1322],
6597 "stcgroup": &z[1323],
6598 "stockholm": &z[1324],
6599 "storage": &z[1325],
6600 "store": &z[1326],
6601 "stream": &z[1327],
6602 "stroke": &z[1328],
6603 "studio": &z[1329],
6604 "study": &z[1330],
6605 "style": &z[1331],
6606 "su": &z[1332],
6607 "sucks": &z[1333],
6608 "supersport": &z[1334],
6609 "supplies": &z[1335],
6610 "supply": &z[1336],
6611 "support": &z[1337],
6612 "surf": &z[1338],
6613 "surgery": &z[1339],
6614 "suzuki": &z[1340],
6615 "sv": &z[1341],
6616 "svr": &z[1342],
6617 "swatch": &z[1343],
6618 "swiftcover": &z[1344],
6619 "swiss": &z[1345],
6620 "sx": &z[1346],
6621 "sy": &z[1347],
6622 "sydney": &z[1348],
6623 "symantec": &z[1349],
6624 "systems": &z[1350],
6625 "sz": &z[1351],
6626 "tab": &z[1352],
6627 "taipei": &z[1353],
6628 "talk": &z[1354],
6629 "taobao": &z[1355],
6630 "target": &z[1356],
6631 "tata": &z[1357],
6632 "tatamotors": &z[1358],
6633 "tatar": &z[1359],
6634 "tattoo": &z[1360],
6635 "tax": &z[1361],
6636 "taxi": &z[1362],
6637 "tc": &z[1363],
6638 "tci": &z[1364],
6639 "td": &z[1365],
6640 "tdk": &z[1366],
6641 "team": &z[1367],
6642 "tech": &z[1368],
6643 "technology": &z[1369],
6644 "tel": &z[1370],
6645 "telecity": &z[1371],
6646 "telefonica": &z[1372],
6647 "temasek": &z[1373],
6648 "tennis": &z[1374],
6649 "terra": &z[1375],
6650 "teva": &z[1376],
6651 "tf": &z[1377],
6652 "tg": &z[1378],
6653 "th": &z[1379],
6654 "thai": &z[1380],
6655 "thd": &z[1381],
6656 "theater": &z[1382],
6657 "theatre": &z[1383],
6658 "theguardian": &z[1384],
6659 "thehartford": &z[1385],
6660 "tiaa": &z[1386],
6661 "tickets": &z[1387],
6662 "tienda": &z[1388],
6663 "tiffany": &z[1389],
6664 "tiffay": &z[1390],
6665 "tiia": &z[1391],
6666 "tips": &z[1392],
6667 "tires": &z[1393],
6668 "tirol": &z[1394],
6669 "tj": &z[1395],
6670 "tjmaxx": &z[1396],
6671 "tjx": &z[1397],
6672 "tk": &z[1398],
6673 "tkmaxx": &z[1399],
6674 "tl": &z[1400],
6675 "tm": &z[1401],
6676 "tmall": &z[1402],
6677 "tn": &z[1403],
6678 "to": &z[1404],
6679 "today": &z[1405],
6680 "tokyo": &z[1406],
6681 "tools": &z[1407],
6682 "top": &z[1408],
6683 "toray": &z[1409],
6684 "toshiba": &z[1410],
6685 "total": &z[1411],
6686 "tour": &z[1412],
6687 "tours": &z[1413],
6688 "town": &z[1414],
6689 "toyota": &z[1415],
6690 "toys": &z[1416],
6691 "tp": &z[1417],
6692 "tr": &z[1418],
6693 "trade": &z[1419],
6694 "tradershotels": &z[1420],
6695 "trading": &z[1421],
6696 "training": &z[1422],
6697 "transformers": &z[1423],
6698 "translations": &z[1424],
6699 "transunion": &z[1425],
6700 "travel": &z[1426],
6701 "travelchannel": &z[1427],
6702 "travelers": &z[1428],
6703 "travelersinsurance": &z[1429],
6704 "travelguard": &z[1430],
6705 "trust": &z[1431],
6706 "trv": &z[1432],
6707 "tt": &z[1433],
6708 "tube": &z[1434],
6709 "tui": &z[1435],
6710 "tunes": &z[1436],
6711 "tushu": &z[1437],
6712 "tv": &z[1438],
6713 "tvs": &z[1439],
6714 "tw": &z[1440],
6715 "tz": &z[1441],
6716 "ua": &z[1442],
6717 "ubank": &z[1443],
6718 "ubs": &z[1444],
6719 "uconnect": &z[1445],
6720 "ug": &z[1446],
6721 "uk": &z[1447],
6722 "ultrabook": &z[1448],
6723 "um": &z[1449],
6724 "ummah": &z[1450],
6725 "unicom": &z[1451],
6726 "unicorn": &z[1452],
6727 "university": &z[1453],
6728 "uno": &z[1454],
6729 "uol": &z[1455],
6730 "ups": &z[1456],
6731 "us": &z[1457],
6732 "uy": &z[1458],
6733 "uz": &z[1459],
6734 "va": &z[1460],
6735 "vacations": &z[1461],
6736 "vana": &z[1462],
6737 "vanguard": &z[1463],
6738 "vanish": &z[1464],
6739 "vc": &z[1465],
6740 "ve": &z[1466],
6741 "vegas": &z[1467],
6742 "ventures": &z[1468],
6743 "verisign": &z[1469],
6744 "xn--vermgensberater-ctb": &z[1470], // vermögensberater
6745 "xn--vermgensberatung-pwb": &z[1471], // vermögensberatung
6746 "versicherung": &z[1472],
6747 "vet": &z[1473],
6748 "vg": &z[1474],
6749 "vi": &z[1475],
6750 "viajes": &z[1476],
6751 "video": &z[1477],
6752 "vig": &z[1478],
6753 "viking": &z[1479],
6754 "villas": &z[1480],
6755 "vin": &z[1481],
6756 "vip": &z[1482],
6757 "virgin": &z[1483],
6758 "visa": &z[1484],
6759 "vision": &z[1485],
6760 "vista": &z[1486],
6761 "vistaprint": &z[1487],
6762 "viva": &z[1488],
6763 "vivo": &z[1489],
6764 "vlaanderen": &z[1490],
6765 "vn": &z[1491],
6766 "vodka": &z[1492],
6767 "volkswagen": &z[1493],
6768 "volvo": &z[1494],
6769 "vons": &z[1495],
6770 "vote": &z[1496],
6771 "voting": &z[1497],
6772 "voto": &z[1498],
6773 "voyage": &z[1499],
6774 "vu": &z[1500],
6775 "vuelos": &z[1501],
6776 "wales": &z[1502],
6777 "walmart": &z[1503],
6778 "walter": &z[1504],
6779 "wang": &z[1505],
6780 "wanggou": &z[1506],
6781 "warman": &z[1507],
6782 "watch": &z[1508],
6783 "watches": &z[1509],
6784 "weather": &z[1510],
6785 "weatherchannel": &z[1511],
6786 "web": &z[1512],
6787 "webcam": &z[1513],
6788 "weber": &z[1514],
6789 "webjet": &z[1515],
6790 "webs": &z[1516],
6791 "website": &z[1517],
6792 "wed": &z[1518],
6793 "wedding": &z[1519],
6794 "weibo": &z[1520],
6795 "weir": &z[1521],
6796 "wf": &z[1522],
6797 "whoswho": &z[1523],
6798 "wien": &z[1524],
6799 "wiki": &z[1525],
6800 "williamhill": &z[1526],
6801 "wilmar": &z[1527],
6802 "win": &z[1528],
6803 "windows": &z[1529],
6804 "wine": &z[1530],
6805 "winners": &z[1531],
6806 "wme": &z[1532],
6807 "wolterskluwer": &z[1533],
6808 "woodside": &z[1534],
6809 "work": &z[1535],
6810 "works": &z[1536],
6811 "world": &z[1537],
6812 "wow": &z[1538],
6813 "ws": &z[1539],
6814 "wtc": &z[1540],
6815 "wtf": &z[1541],
6816 "xbox": &z[1542],
6817 "xerox": &z[1543],
6818 "xfinity": &z[1544],
6819 "xihuan": &z[1545],
6820 "xin": &z[1546],
6821 "xperia": &z[1547],
6822 "xxx": &z[1548],
6823 "xyz": &z[1549],
6824 "yachts": &z[1550],
6825 "yahoo": &z[1551],
6826 "yamaxun": &z[1552],
6827 "yandex": &z[1553],
6828 "ye": &z[1554],
6829 "yellowpages": &z[1555],
6830 "yodobashi": &z[1556],
6831 "yoga": &z[1557],
6832 "yokohama": &z[1558],
6833 "you": &z[1559],
6834 "youtube": &z[1560],
6835 "yt": &z[1561],
6836 "yu": &z[1562],
6837 "yun": &z[1563],
6838 "za": &z[1564],
6839 "zappos": &z[1565],
6840 "zara": &z[1566],
6841 "zero": &z[1567],
6842 "zip": &z[1568],
6843 "zippo": &z[1569],
6844 "zm": &z[1570],
6845 "zone": &z[1571],
6846 "zuerich": &z[1572],
6847 "zulu": &z[1573],
6848 "zw": &z[1574],
6849 "xn--jxalpdlp": &z[1575], // δοκιμή
6850 "xn--qxam": &z[1576], // ελ
6851 "xn--qxa6a": &z[1577], // ευ
6852 "xn--90ae": &z[1578], // бг
6853 "xn--90ais": &z[1579], // бел
6854 "xn--d1acj3b": &z[1580], // дети
6855 "xn--e1a4c": &z[1581], // ею
6856 "xn--80akhbyknj4f": &z[1582], // испытание
6857 "xn--80aqecdr1a": &z[1583], // католик
6858 "xn--j1aef": &z[1584], // ком
6859 "xn--d1alf": &z[1585], // мкд
6860 "xn--l1acc": &z[1586], // мон
6861 "xn--80adxhks": &z[1587], // москва
6862 "xn--80asehdb": &z[1588], // онлайн
6863 "xn--c1avg": &z[1589], // орг
6864 "xn--p1acf": &z[1590], // рус
6865 "xn--p1ai": &z[1591], // рф
6866 "xn--80aswg": &z[1592], // сайт
6867 "xn--90a3ac": &z[1593], // срб
6868 "xn--j1amh": &z[1594], // укр
6869 "xn--80ao21a": &z[1595], // қаз
6870 "xn--y9a3aq": &z[1596], // հայ
6871 "xn--deba0ad": &z[1597], // טעסט
6872 "xn--9dbq2a": &z[1598], // קום
6873 "xn--hgbk6aj7f53bba": &z[1599], // آزمایشی
6874 "xn--kgbechtv": &z[1600], // إختبار
6875 "xn--mgbca7dzdo": &z[1601], // ابوظبي
6876 "xn--mgbaakc7dvf": &z[1602], // اتصالات
6877 "xn--mgba3a3ejt": &z[1603], // ارامكو
6878 "xn--mgbayh7gpa": &z[1604], // الاردن
6879 "xn--mgbcpq6gpa1a": &z[1605], // البحرين
6880 "xn--lgbbat1ad8j": &z[1606], // الجزائر
6881 "xn--mgberp4a5d4ar": &z[1607], // السعودية
6882 "xn--mgba7c0bbn0a": &z[1608], // العليان
6883 "xn--mgbc0a9azcg": &z[1609], // المغرب
6884 "xn--mgbaam7a8h": &z[1610], // امارات
6885 "xn--mgba3a4f16a": &z[1611], // ایران
6886 "xn--mgbbh1a": &z[1612], // بارت
6887 "xn--mgbab2bd": &z[1613], // بازار
6888 "xn--ngbe9e0a": &z[1614], // بيتك
6889 "xn--mgbbh1a71e": &z[1615], // بھارت
6890 "xn--pgbs0dh": &z[1616], // تونس
6891 "xn--mgbpl2fh": &z[1617], // سودان
6892 "xn--ogbpf8fl": &z[1618], // سورية
6893 "xn--ngbc5azd": &z[1619], // شبكة
6894 "xn--mgbtx2b": &z[1620], // عراق
6895 "xn--ngbrx": &z[1621], // عرب
6896 "xn--mgb9awbf": &z[1622], // عمان
6897 "xn--ygbi2ammx": &z[1623], // فلسطين
6898 "xn--wgbl6a": &z[1624], // قطر
6899 "xn--mgbi4ecexp": &z[1625], // كاثوليك
6900 "xn--fhbei": &z[1626], // كوم
6901 "xn--pgb3ceoj": &z[1627], // كيوتل
6902 "xn--wgbh1c": &z[1628], // مصر
6903 "xn--mgbx4cd0ab": &z[1629], // مليسيا
6904 "xn--mgbb9fbpob": &z[1630], // موبايلي
6905 "xn--mgbah1a3hjkrd": &z[1631], // موريتانيا
6906 "xn--mgbv6cfpo": &z[1632], // موزايك
6907 "xn--4gbrim": &z[1633], // موقع
6908 "xn--mgbt3dhd": &z[1634], // همراه
6909 "xn--mgbai9azgqp6j": &z[1635], // پاکستان
6910 "xn--mgbgu82a": &z[1636], // ڀارت
6911 "xn--11b4c3d": &z[1637], // कॉम
6912 "xn--c2br7g": &z[1638], // नेट
6913 "xn--11b5bs3a9aj6g": &z[1639], // परीक्षा
6914 "xn--h2brj9c": &z[1640], // भारत
6915 "xn--h2breg3eve": &z[1641], // भारतम्
6916 "xn--h2brj9c8c": &z[1642], // भारोत
6917 "xn--i1b6b1a6a2e": &z[1643], // संगठन
6918 "xn--54b7fta0cc": &z[1644], // বাংলা
6919 "xn--45brj9c": &z[1645], // ভারত
6920 "xn--45br5cyl": &z[1646], // ভাৰত
6921 "xn--s9brj9c": &z[1647], // ਭਾਰਤ
6922 "xn--gecrj9c": &z[1648], // ભારત
6923 "xn--3hcrj9c": &z[1649], // ଭାରତ
6924 "xn--xkc2dl3a5ee0h": &z[1650], // இந்தியா
6925 "xn--xkc2al3hye2a": &z[1651], // இலங்கை
6926 "xn--clchc0ea0b2g2a9gcd": &z[1652], // சிங்கப்பூர்
6927 "xn--hlcj6aya9esc7a": &z[1653], // பரிட்சை
6928 "xn--fpcrj9c3d": &z[1654], // భారత్
6929 "xn--2scrj9c": &z[1655], // ಭಾರತ
6930 "xn--rvc1e0am3e": &z[1656], // ഭാരതം
6931 "xn--fzc2c9e2c": &z[1657], // ලංකා
6932 "xn--42c2d9a": &z[1658], // คอม
6933 "xn--o3cw4h": &z[1659], // ไทย
6934 "xn--q7ce6a": &z[1660], // ລາວ
6935 "xn--node": &z[1661], // გე
6936 "xn--q9jyb4c": &z[1662], // みんな
6937 "xn--cckwcxetd": &z[1663], // アマゾン
6938 "xn--gckr3f0f": &z[1664], // クラウド
6939 "xn--qcka1pmc": &z[1665], // グーグル
6940 "xn--tckwe": &z[1666], // コム
6941 "xn--cck2b3b": &z[1667], // ストア
6942 "xn--1ck2e1b": &z[1668], // セール
6943 "xn--zckzah": &z[1669], // テスト
6944 "xn--bck1b9a5dre4c": &z[1670], // ファッション
6945 "xn--eckvdtc9d": &z[1671], // ポイント
6946 "xn--4gq48lf9j": &z[1672], // 一号店
6947 "xn--rhqv96g": &z[1673], // 世界
6948 "xn--fiq64b": &z[1674], // 中信
6949 "xn--fiqs8s": &z[1675], // 中国
6950 "xn--fiqz9s": &z[1676], // 中國
6951 "xn--fiq228c5hs": &z[1677], // 中文网
6952 "xn--jlq480n2rg": &z[1678], // 亚马逊
6953 "xn--vhquv": &z[1679], // 企业
6954 "xn--1qqw23a": &z[1680], // 佛山
6955 "xn--vuq861b": &z[1681], // 信息
6956 "xn--nyqy26a": &z[1682], // 健康
6957 "xn--45q11c": &z[1683], // 八卦
6958 "xn--55qx5d": &z[1684], // 公司
6959 "xn--55qw42g": &z[1685], // 公益
6960 "xn--kprw13d": &z[1686], // 台湾
6961 "xn--kpry57d": &z[1687], // 台灣
6962 "xn--czru2d": &z[1688], // 商城
6963 "xn--czrs0t": &z[1689], // 商店
6964 "xn--czr694b": &z[1690], // 商标
6965 "xn--w4rs40l": &z[1691], // 嘉里
6966 "xn--w4r85el8fhu5dnra": &z[1692], // 嘉里大酒店
6967 "xn--3ds443g": &z[1693], // 在线
6968 "xn--3oq18vl8pn36a": &z[1694], // 大众汽车
6969 "xn--pssy2u": &z[1695], // 大拿
6970 "xn--tiq49xqyj": &z[1696], // 天主教
6971 "xn--fjq720a": &z[1697], // 娱乐
6972 "xn--fct429k": &z[1698], // 家電
6973 "xn--estv75g": &z[1699], // 工行
6974 "xn--xhq521b": &z[1700], // 广东
6975 "xn--6rtwn": &z[1701], // 广州
6976 "xn--9krt00a": &z[1702], // 微博
6977 "xn--30rr7y": &z[1703], // 慈善
6978 "xn--6qq986b3xl": &z[1704], // 我爱你
6979 "xn--kput3i": &z[1705], // 手机
6980 "xn--kpu716f": &z[1706], // 手表
6981 "xn--otu796d": &z[1707], // 招聘
6982 "xn--zfr164b": &z[1708], // 政务
6983 "xn--mxtq1m": &z[1709], // 政府
6984 "xn--yfro4i67o": &z[1710], // 新加坡
6985 "xn--efvy88h": &z[1711], // 新闻
6986 "xn--9et52u": &z[1712], // 时尚
6987 "xn--kcrx7bb75ajk3b": &z[1713], // 普利司通
6988 "xn--rovu88b": &z[1714], // 書籍
6989 "xn--nqv7f": &z[1715], // 机构
6990 "xn--tqq33ed31aqia": &z[1716], // 机构体制
6991 "xn--dkwm73cwpn": &z[1717], // 欧莱雅
6992 "xn--0zwm56d": &z[1718], // 测试
6993 "xn--b4w605ferd": &z[1719], // 淡马锡
6994 "xn--fes124c": &z[1720], // 深圳
6995 "xn--g6w251d": &z[1721], // 測試
6996 "xn--unup4y": &z[1722], // 游戏
6997 "xn--mix891f": &z[1723], // 澳門
6998 "xn--3pxu8k": &z[1724], // 点看
6999 "xn--pbt977c": &z[1725], // 珠宝
7000 "xn--hxt035cmppuel": &z[1726], // 盛貿飯店
7001 "xn--6frz82g": &z[1727], // 移动
7002 "xn--nqv7fs00ema": &z[1728], // 组织机构
7003 "xn--ses554g": &z[1729], // 网址
7004 "xn--hxt814e": &z[1730], // 网店
7005 "xn--5tzm5g": &z[1731], // 网站
7006 "xn--io0a7i": &z[1732], // 网络
7007 "xn--8y0a063a": &z[1733], // 联通
7008 "xn--jlq61u9w7b": &z[1734], // 诺基亚
7009 "xn--flw351e": &z[1735], // 谷歌
7010 "xn--g2xx48c": &z[1736], // 购物
7011 "xn--55qx5d8y0buji4b870u": &z[1737], // 通用电气公司
7012 "xn--gk3at1e": &z[1738], // 通販
7013 "xn--3bst00m": &z[1739], // 集团
7014 "xn--fzys8d69uvgm": &z[1740], // 電訊盈科
7015 "xn--kcrx77d1x4a": &z[1741], // 飞利浦
7016 "xn--jvr189m": &z[1742], // 食品
7017 "xn--imr513n": &z[1743], // 餐厅
7018 "xn--5su34j936bgsg": &z[1744], // 香格里拉
7019 "xn--j6w193g": &z[1745], // 香港
7020 "xn--j6w470d71issc": &z[1746], // 香港電訊
7021 "xn--c1yn36f": &z[1747], // 點看
7022 "xn--t60b56a": &z[1748], // 닷넷
7023 "xn--mk1bu44c": &z[1749], // 닷컴
7024 "xn--cg4bki": &z[1750], // 삼성
7025 "xn--9t4b11yi5a": &z[1751], // 테스트
7026 "xn--3e0b707e": &z[1752], // 한국
7027 "com.ac": &z[1753],
7028 "gov.ac": &z[1754],
7029 "mil.ac": &z[1755],
7030 "net.ac": &z[1756],
7031 "org.ac": &z[1757],
7032 "nom.ad": &z[1758],
7033 "ac.ae": &z[1759],
7034 "co.ae": &z[1760],
7035 "gov.ae": &z[1761],
7036 "mil.ae": &z[1762],
7037 "name.ae": &z[1763],
7038 "net.ae": &z[1764],
7039 "org.ae": &z[1765],
7040 "pro.ae": &z[1766],
7041 "sch.ae": &z[1767],
7042 "airport.aero": &z[1768],
7043 "cargo.aero": &z[1769],
7044 "charter.aero": &z[1770],
7045 "bank.af": &z[1771],
7046 "com.af": &z[1772],
7047 "edu.af": &z[1773],
7048 "gov.af": &z[1774],
7049 "hotel.af": &z[1775],
7050 "law.af": &z[1776],
7051 "music.af": &z[1777],
7052 "net.af": &z[1778],
7053 "org.af": &z[1779],
7054 "tv.af": &z[1780],
7055 "co.ag": &z[1781],
7056 "com.ag": &z[1782],
7057 "net.ag": &z[1783],
7058 "nom.ag": &z[1784],
7059 "ok.ag": &z[1785],
7060 "org.ag": &z[1786],
7061 "com.ai": &z[1787],
7062 "net.ai": &z[1788],
7063 "off.ai": &z[1789],
7064 "org.ai": &z[1790],
7065 "com.al": &z[1791],
7066 "edu.al": &z[1792],
7067 "gov.al": &z[1793],
7068 "inima.al": &z[1794],
7069 "net.al": &z[1795],
7070 "org.al": &z[1796],
7071 "soros.al": &z[1797],
7072 "tirana.al": &z[1798],
7073 "uniti.al": &z[1799],
7074 "upt.al": &z[1800],
7075 "co.am": &z[1801],
7076 "com.am": &z[1802],
7077 "net.am": &z[1803],
7078 "north.am": &z[1804],
7079 "org.am": &z[1805],
7080 "radio.am": &z[1806],
7081 "south.am": &z[1807],
7082 "com.an": &z[1808],
7083 "edu.an": &z[1809],
7084 "net.an": &z[1810],
7085 "org.an": &z[1811],
7086 "co.ao": &z[1812],
7087 "ed.ao": &z[1813],
7088 "gv.ao": &z[1814],
7089 "it.ao": &z[1815],
7090 "og.ao": &z[1816],
7091 "pb.ao": &z[1817],
7092 "com.aq": &z[1818],
7093 "com.ar": &z[1819],
7094 "edu.ar": &z[1820],
7095 "gob.ar": &z[1821],
7096 "gov.ar": &z[1822],
7097 "int.ar": &z[1823],
7098 "mil.ar": &z[1824],
7099 "net.ar": &z[1825],
7100 "org.ar": &z[1826],
7101 "tur.ar": &z[1827],
7102 "e164.arpa": &z[1828],
7103 "in-addr.arpa": &z[1829],
7104 "ip6.arpa": &z[1830],
7105 "iris.arpa": &z[1831],
7106 "uri.arpa": &z[1832],
7107 "urn.arpa": &z[1833],
7108 "ac.at": &z[1834],
7109 "co.at": &z[1835],
7110 "gv.at": &z[1836],
7111 "or.at": &z[1837],
7112 "priv.at": &z[1838],
7113 "act.au": &z[1839],
7114 "asn.au": &z[1840],
7115 "com.au": &z[1841],
7116 "conf.au": &z[1842],
7117 "csiro.au": &z[1843],
7118 "edu.au": &z[1844],
7119 "gov.au": &z[1845],
7120 "id.au": &z[1846],
7121 "info.au": &z[1847],
7122 "net.au": &z[1848],
7123 "nsw.au": &z[1849],
7124 "nt.au": &z[1850],
7125 "org.au": &z[1851],
7126 "oz.au": &z[1852],
7127 "qld.au": &z[1853],
7128 "sa.au": &z[1854],
7129 "tas.au": &z[1855],
7130 "telememo.au": &z[1856],
7131 "vic.au": &z[1857],
7132 "wa.au": &z[1858],
7133 "com.aw": &z[1859],
7134 "bilesuvar.az": &z[1860],
7135 "biz.az": &z[1861],
7136 "co.az": &z[1862],
7137 "com.az": &z[1863],
7138 "edu.az": &z[1864],
7139 "ganja.az": &z[1865],
7140 "gov.az": &z[1866],
7141 "imishli.az": &z[1867],
7142 "info.az": &z[1868],
7143 "int.az": &z[1869],
7144 "mil.az": &z[1870],
7145 "name.az": &z[1871],
7146 "net.az": &z[1872],
7147 "org.az": &z[1873],
7148 "pp.az": &z[1874],
7149 "pro.az": &z[1875],
7150 "samux.az": &z[1876],
7151 "shamaxi.az": &z[1877],
7152 "shusha.az": &z[1878],
7153 "sumgait.az": &z[1879],
7154 "zaqatala.az": &z[1880],
7155 "co.ba": &z[1881],
7156 "com.ba": &z[1882],
7157 "edu.ba": &z[1883],
7158 "gov.ba": &z[1884],
7159 "mil.ba": &z[1885],
7160 "net.ba": &z[1886],
7161 "org.ba": &z[1887],
7162 "rs.ba": &z[1888],
7163 "unbi.ba": &z[1889],
7164 "unmo.ba": &z[1890],
7165 "unsa.ba": &z[1891],
7166 "untz.ba": &z[1892],
7167 "unze.ba": &z[1893],
7168 "biz.bb": &z[1894],
7169 "co.bb": &z[1895],
7170 "com.bb": &z[1896],
7171 "gov.bb": &z[1897],
7172 "info.bb": &z[1898],
7173 "net.bb": &z[1899],
7174 "org.bb": &z[1900],
7175 "store.bb": &z[1901],
7176 "tv.bb": &z[1902],
7177 "ac.bd": &z[1903],
7178 "com.bd": &z[1904],
7179 "edu.bd": &z[1905],
7180 "gov.bd": &z[1906],
7181 "mil.bd": &z[1907],
7182 "net.bd": &z[1908],
7183 "org.bd": &z[1909],
7184 "gov.bf": &z[1910],
7185 "0.bg": &z[1911],
7186 "1.bg": &z[1912],
7187 "2.bg": &z[1913],
7188 "3.bg": &z[1914],
7189 "4.bg": &z[1915],
7190 "5.bg": &z[1916],
7191 "6.bg": &z[1917],
7192 "7.bg": &z[1918],
7193 "8.bg": &z[1919],
7194 "9.bg": &z[1920],
7195 "a.bg": &z[1921],
7196 "b.bg": &z[1922],
7197 "c.bg": &z[1923],
7198 "d.bg": &z[1924],
7199 "e.bg": &z[1925],
7200 "f.bg": &z[1926],
7201 "g.bg": &z[1927],
7202 "h.bg": &z[1928],
7203 "i.bg": &z[1929],
7204 "j.bg": &z[1930],
7205 "k.bg": &z[1931],
7206 "l.bg": &z[1932],
7207 "m.bg": &z[1933],
7208 "n.bg": &z[1934],
7209 "o.bg": &z[1935],
7210 "p.bg": &z[1936],
7211 "q.bg": &z[1937],
7212 "r.bg": &z[1938],
7213 "s.bg": &z[1939],
7214 "t.bg": &z[1940],
7215 "u.bg": &z[1941],
7216 "v.bg": &z[1942],
7217 "w.bg": &z[1943],
7218 "x.bg": &z[1944],
7219 "y.bg": &z[1945],
7220 "z.bg": &z[1946],
7221 "biz.bh": &z[1947],
7222 "cc.bh": &z[1948],
7223 "com.bh": &z[1949],
7224 "edu.bh": &z[1950],
7225 "gov.bh": &z[1951],
7226 "info.bh": &z[1952],
7227 "net.bh": &z[1953],
7228 "org.bh": &z[1954],
7229 "co.bi": &z[1955],
7230 "com.bi": &z[1956],
7231 "edu.bi": &z[1957],
7232 "gov.bi": &z[1958],
7233 "info.bi": &z[1959],
7234 "mo.bi": &z[1960],
7235 "net.bi": &z[1961],
7236 "or.bi": &z[1962],
7237 "org.bi": &z[1963],
7238 "ote.bi": &z[1964],
7239 "1x.biz": &z[1965],
7240 "auz.biz": &z[1966],
7241 "asso.bj": &z[1967],
7242 "barreau.bj": &z[1968],
7243 "com.bj": &z[1969],
7244 "edu.bj": &z[1970],
7245 "gouv.bj": &z[1971],
7246 "gov.bj": &z[1972],
7247 "mil.bj": &z[1973],
7248 "art.blog": &z[1974],
7249 "business.blog": &z[1975],
7250 "car.blog": &z[1976],
7251 "code.blog": &z[1977],
7252 "family.blog": &z[1978],
7253 "fashion.blog": &z[1979],
7254 "finance.blog": &z[1980],
7255 "fitness.blog": &z[1981],
7256 "food.blog": &z[1982],
7257 "game.blog": &z[1983],
7258 "health.blog": &z[1984],
7259 "home.blog": &z[1985],
7260 "law.blog": &z[1986],
7261 "movie.blog": &z[1987],
7262 "music.blog": &z[1988],
7263 "news.blog": &z[1989],
7264 "photo.blog": &z[1990],
7265 "poetry.blog": &z[1991],
7266 "politics.blog": &z[1992],
7267 "school.blog": &z[1993],
7268 "science.blog": &z[1994],
7269 "sport.blog": &z[1995],
7270 "tech.blog": &z[1996],
7271 "travel.blog": &z[1997],
7272 "video.blog": &z[1998],
7273 "water.blog": &z[1999],
7274 "com.bm": &z[2000],
7275 "edu.bm": &z[2001],
7276 "gov.bm": &z[2002],
7277 "net.bm": &z[2003],
7278 "org.bm": &z[2004],
7279 "com.bn": &z[2005],
7280 "edu.bn": &z[2006],
7281 "gov.bn": &z[2007],
7282 "net.bn": &z[2008],
7283 "org.bn": &z[2009],
7284 "com.bo": &z[2010],
7285 "edu.bo": &z[2011],
7286 "gob.bo": &z[2012],
7287 "gov.bo": &z[2013],
7288 "int.bo": &z[2014],
7289 "mil.bo": &z[2015],
7290 "net.bo": &z[2016],
7291 "org.bo": &z[2017],
7292 "tv.bo": &z[2018],
7293 "abc.br": &z[2019],
7294 "adm.br": &z[2020],
7295 "adv.br": &z[2021],
7296 "agr.br": &z[2022],
7297 "am.br": &z[2023],
7298 "aparecida.br": &z[2024],
7299 "arq.br": &z[2025],
7300 "art.br": &z[2026],
7301 "ato.br": &z[2027],
7302 "b.br": &z[2028],
7303 "belem.br": &z[2029],
7304 "bhz.br": &z[2030],
7305 "bio.br": &z[2031],
7306 "blog.br": &z[2032],
7307 "bmd.br": &z[2033],
7308 "boavista.br": &z[2034],
7309 "bsb.br": &z[2035],
7310 "campinas.br": &z[2036],
7311 "caxias.br": &z[2037],
7312 "cim.br": &z[2038],
7313 "cng.br": &z[2039],
7314 "cnt.br": &z[2040],
7315 "com.br": &z[2041],
7316 "coop.br": &z[2042],
7317 "curitiba.br": &z[2043],
7318 "ecn.br": &z[2044],
7319 "eco.br": &z[2045],
7320 "edu.br": &z[2046],
7321 "emp.br": &z[2047],
7322 "eng.br": &z[2048],
7323 "esp.br": &z[2049],
7324 "etc.br": &z[2050],
7325 "eti.br": &z[2051],
7326 "far.br": &z[2052],
7327 "flog.br": &z[2053],
7328 "floripa.br": &z[2054],
7329 "fm.br": &z[2055],
7330 "fnd.br": &z[2056],
7331 "fortal.br": &z[2057],
7332 "fot.br": &z[2058],
7333 "foz.br": &z[2059],
7334 "fst.br": &z[2060],
7335 "g12.br": &z[2061],
7336 "ggf.br": &z[2062],
7337 "gov.br": &z[2063],
7338 "gru.br": &z[2064],
7339 "imb.br": &z[2065],
7340 "ind.br": &z[2066],
7341 "inf.br": &z[2067],
7342 "jampa.br": &z[2068],
7343 "jor.br": &z[2069],
7344 "jus.br": &z[2070],
7345 "lel.br": &z[2071],
7346 "macapa.br": &z[2072],
7347 "maceio.br": &z[2073],
7348 "manaus.br": &z[2074],
7349 "mat.br": &z[2075],
7350 "med.br": &z[2076],
7351 "mil.br": &z[2077],
7352 "mus.br": &z[2078],
7353 "natal.br": &z[2079],
7354 "net.br": &z[2080],
7355 "nom.br": &z[2081],
7356 "not.br": &z[2082],
7357 "ntr.br": &z[2083],
7358 "odo.br": &z[2084],
7359 "org.br": &z[2085],
7360 "palmas.br": &z[2086],
7361 "poa.br": &z[2087],
7362 "ppg.br": &z[2088],
7363 "pro.br": &z[2089],
7364 "psc.br": &z[2090],
7365 "psi.br": &z[2091],
7366 "qsl.br": &z[2092],
7367 "radio.br": &z[2093],
7368 "rec.br": &z[2094],
7369 "recife.br": &z[2095],
7370 "rep.br": &z[2096],
7371 "rio.br": &z[2097],
7372 "salvador.br": &z[2098],
7373 "sec3.br": &z[2099],
7374 "sjc.br": &z[2100],
7375 "slg.br": &z[2101],
7376 "srv.br": &z[2102],
7377 "taxi.br": &z[2103],
7378 "teo.br": &z[2104],
7379 "tmp.br": &z[2105],
7380 "trd.br": &z[2106],
7381 "tur.br": &z[2107],
7382 "tv.br": &z[2108],
7383 "vet.br": &z[2109],
7384 "vix.br": &z[2110],
7385 "vlog.br": &z[2111],
7386 "wiki.br": &z[2112],
7387 "zlg.br": &z[2113],
7388 "com.bs": &z[2114],
7389 "edu.bs": &z[2115],
7390 "gov.bs": &z[2116],
7391 "net.bs": &z[2117],
7392 "org.bs": &z[2118],
7393 "we.bs": &z[2119],
7394 "com.bt": &z[2120],
7395 "edu.bt": &z[2121],
7396 "gov.bt": &z[2122],
7397 "net.bt": &z[2123],
7398 "org.bt": &z[2124],
7399 "ac.bw": &z[2125],
7400 "co.bw": &z[2126],
7401 "net.bw": &z[2127],
7402 "org.bw": &z[2128],
7403 "com.by": &z[2129],
7404 "gov.by": &z[2130],
7405 "mil.by": &z[2131],
7406 "minsk.by": &z[2132],
7407 "net.by": &z[2133],
7408 "co.bz": &z[2134],
7409 "com.bz": &z[2135],
7410 "edu.bz": &z[2136],
7411 "gov.bz": &z[2137],
7412 "net.bz": &z[2138],
7413 "org.bz": &z[2139],
7414 "za.bz": &z[2140],
7415 "ab.ca": &z[2141],
7416 "bc.ca": &z[2142],
7417 "co.ca": &z[2143],
7418 "gc.ca": &z[2144],
7419 "mb.ca": &z[2145],
7420 "nb.ca": &z[2146],
7421 "nf.ca": &z[2147],
7422 "nl.ca": &z[2148],
7423 "ns.ca": &z[2149],
7424 "nt.ca": &z[2150],
7425 "nu.ca": &z[2151],
7426 "on.ca": &z[2152],
7427 "pe.ca": &z[2153],
7428 "qc.ca": &z[2154],
7429 "sk.ca": &z[2155],
7430 "yk.ca": &z[2156],
7431 "com.cc": &z[2157],
7432 "edu.cc": &z[2158],
7433 "net.cc": &z[2159],
7434 "org.cc": &z[2160],
7435 "ac.cd": &z[2161],
7436 "com.cd": &z[2162],
7437 "edu.cd": &z[2163],
7438 "gouv.cd": &z[2164],
7439 "net.cd": &z[2165],
7440 "org.cd": &z[2166],
7441 "ac.ci": &z[2167],
7442 "aeroport.ci": &z[2168],
7443 "asso.ci": &z[2169],
7444 "assoc.ci": &z[2170],
7445 "co.ci": &z[2171],
7446 "com.ci": &z[2172],
7447 "ed.ci": &z[2173],
7448 "edu.ci": &z[2174],
7449 "go.ci": &z[2175],
7450 "gov.ci": &z[2176],
7451 "in.ci": &z[2177],
7452 "int.ci": &z[2178],
7453 "net.ci": &z[2179],
7454 "nom.ci": &z[2180],
7455 "or.ci": &z[2181],
7456 "org.ci": &z[2182],
7457 "presse.ci": &z[2183],
7458 "biz.ck": &z[2184],
7459 "co.ck": &z[2185],
7460 "edu.ck": &z[2186],
7461 "gen.ck": &z[2187],
7462 "gov.ck": &z[2188],
7463 "info.ck": &z[2189],
7464 "net.ck": &z[2190],
7465 "org.ck": &z[2191],
7466 "co.cm": &z[2192],
7467 "com.cm": &z[2193],
7468 "edu.cm": &z[2194],
7469 "net.cm": &z[2195],
7470 "ac.cn": &z[2196],
7471 "ah.cn": &z[2197],
7472 "bj.cn": &z[2198],
7473 "com.cn": &z[2199],
7474 "cq.cn": &z[2200],
7475 "edu.cn": &z[2201],
7476 "fj.cn": &z[2202],
7477 "gd.cn": &z[2203],
7478 "gov.cn": &z[2204],
7479 "gs.cn": &z[2205],
7480 "gx.cn": &z[2206],
7481 "gz.cn": &z[2207],
7482 "ha.cn": &z[2208],
7483 "hb.cn": &z[2209],
7484 "he.cn": &z[2210],
7485 "hi.cn": &z[2211],
7486 "hk.cn": &z[2212],
7487 "hl.cn": &z[2213],
7488 "hn.cn": &z[2214],
7489 "jl.cn": &z[2215],
7490 "js.cn": &z[2216],
7491 "jx.cn": &z[2217],
7492 "keyword.cn": &z[2218],
7493 "ln.cn": &z[2219],
7494 "mil.cn": &z[2220],
7495 "mo.cn": &z[2221],
7496 "net.cn": &z[2222],
7497 "nm.cn": &z[2223],
7498 "nx.cn": &z[2224],
7499 "org.cn": &z[2225],
7500 "qh.cn": &z[2226],
7501 "sc.cn": &z[2227],
7502 "sd.cn": &z[2228],
7503 "sh.cn": &z[2229],
7504 "sn.cn": &z[2230],
7505 "sx.cn": &z[2231],
7506 "tj.cn": &z[2232],
7507 "tw.cn": &z[2233],
7508 "xj.cn": &z[2234],
7509 "xz.cn": &z[2235],
7510 "yn.cn": &z[2236],
7511 "zj.cn": &z[2237],
7512 "com.co": &z[2238],
7513 "edu.co": &z[2239],
7514 "gov.co": &z[2240],
7515 "mil.co": &z[2241],
7516 "net.co": &z[2242],
7517 "nom.co": &z[2243],
7518 "org.co": &z[2244],
7519 "4u.com": &z[2245],
7520 "ae.com": &z[2246],
7521 "africa.com": &z[2247],
7522 "ar.com": &z[2248],
7523 "asia.com": &z[2249],
7524 "au.com": &z[2250],
7525 "br.com": &z[2251],
7526 "cn.com": &z[2252],
7527 "co.com": &z[2253],
7528 "de.com": &z[2254],
7529 "eu.com": &z[2255],
7530 "gb.com": &z[2256],
7531 "gr.com": &z[2257],
7532 "hk.com": &z[2258],
7533 "hu.com": &z[2259],
7534 "jpn.com": &z[2260],
7535 "kr.com": &z[2261],
7536 "mex.com": &z[2262],
7537 "no.com": &z[2263],
7538 "nv.com": &z[2264],
7539 "pty-ltd.com": &z[2265],
7540 "qb.com": &z[2266],
7541 "qc.com": &z[2267],
7542 "ru.com": &z[2268],
7543 "sa.com": &z[2269],
7544 "se.com": &z[2270],
7545 "uk.com": &z[2271],
7546 "us.com": &z[2272],
7547 "uy.com": &z[2273],
7548 "za.com": &z[2274],
7549 "de.cool": &z[2275],
7550 "ac.cr": &z[2276],
7551 "co.cr": &z[2277],
7552 "ed.cr": &z[2278],
7553 "eu.cr": &z[2279],
7554 "fi.cr": &z[2280],
7555 "go.cr": &z[2281],
7556 "or.cr": &z[2282],
7557 "sa.cr": &z[2283],
7558 "co.cu": &z[2284],
7559 "com.cu": &z[2285],
7560 "cuba.cu": &z[2286],
7561 "cyt.cu": &z[2287],
7562 "edu.cu": &z[2288],
7563 "get.cu": &z[2289],
7564 "gov.cu": &z[2290],
7565 "inf.cu": &z[2291],
7566 "net.cu": &z[2292],
7567 "org.cu": &z[2293],
7568 "tur.cu": &z[2294],
7569 "com.cv": &z[2295],
7570 "edu.cv": &z[2296],
7571 "gov.cv": &z[2297],
7572 "int.cv": &z[2298],
7573 "net.cv": &z[2299],
7574 "nome.cv": &z[2300],
7575 "org.cv": &z[2301],
7576 "publ.cv": &z[2302],
7577 "com.cw": &z[2303],
7578 "net.cw": &z[2304],
7579 "com.cx": &z[2305],
7580 "edu.cx": &z[2306],
7581 "gov.cx": &z[2307],
7582 "net.cx": &z[2308],
7583 "org.cx": &z[2309],
7584 "ac.cy": &z[2310],
7585 "biz.cy": &z[2311],
7586 "com.cy": &z[2312],
7587 "ekloges.cy": &z[2313],
7588 "gov.cy": &z[2314],
7589 "ltd.cy": &z[2315],
7590 "name.cy": &z[2316],
7591 "net.cy": &z[2317],
7592 "org.cy": &z[2318],
7593 "parliament.cy": &z[2319],
7594 "press.cy": &z[2320],
7595 "pro.cy": &z[2321],
7596 "tm.cy": &z[2322],
7597 "co.cz": &z[2323],
7598 "1x.de": &z[2324],
7599 "co.de": &z[2325],
7600 "com.de": &z[2326],
7601 "biz.dk": &z[2327],
7602 "co.dk": &z[2328],
7603 "co.dm": &z[2329],
7604 "com.dm": &z[2330],
7605 "edu.dm": &z[2331],
7606 "gov.dm": &z[2332],
7607 "net.dm": &z[2333],
7608 "org.dm": &z[2334],
7609 "art.do": &z[2335],
7610 "com.do": &z[2336],
7611 "edu.do": &z[2337],
7612 "gob.do": &z[2338],
7613 "gov.do": &z[2339],
7614 "mil.do": &z[2340],
7615 "net.do": &z[2341],
7616 "org.do": &z[2342],
7617 "sid.do": &z[2343],
7618 "sld.do": &z[2344],
7619 "web.do": &z[2345],
7620 "art.dz": &z[2346],
7621 "asso.dz": &z[2347],
7622 "com.dz": &z[2348],
7623 "edu.dz": &z[2349],
7624 "gov.dz": &z[2350],
7625 "net.dz": &z[2351],
7626 "org.dz": &z[2352],
7627 "pol.dz": &z[2353],
7628 "com.ec": &z[2354],
7629 "edu.ec": &z[2355],
7630 "fin.ec": &z[2356],
7631 "gob.ec": &z[2357],
7632 "gov.ec": &z[2358],
7633 "info.ec": &z[2359],
7634 "med.ec": &z[2360],
7635 "mil.ec": &z[2361],
7636 "net.ec": &z[2362],
7637 "org.ec": &z[2363],
7638 "pro.ec": &z[2364],
7639 "co.ee": &z[2365],
7640 "com.ee": &z[2366],
7641 "edu.ee": &z[2367],
7642 "fie.ee": &z[2368],
7643 "gov.ee": &z[2369],
7644 "hiiumaa.ee": &z[2370],
7645 "kul.ee": &z[2371],
7646 "med.ee": &z[2372],
7647 "org.ee": &z[2373],
7648 "parnu.ee": &z[2374],
7649 "parnumaa.ee": &z[2375],
7650 "polvamaa.ee": &z[2376],
7651 "pri.ee": &z[2377],
7652 "tartu.ee": &z[2378],
7653 "com.eg": &z[2379],
7654 "edu.eg": &z[2380],
7655 "eun.eg": &z[2381],
7656 "gov.eg": &z[2382],
7657 "info.eg": &z[2383],
7658 "mil.eg": &z[2384],
7659 "name.eg": &z[2385],
7660 "net.eg": &z[2386],
7661 "org.eg": &z[2387],
7662 "sci.eg": &z[2388],
7663 "sport.eg": &z[2389],
7664 "tv.eg": &z[2390],
7665 "com.er": &z[2391],
7666 "edu.er": &z[2392],
7667 "gov.er": &z[2393],
7668 "ind.er": &z[2394],
7669 "mil.er": &z[2395],
7670 "net.er": &z[2396],
7671 "org.er": &z[2397],
7672 "com.es": &z[2398],
7673 "edu.es": &z[2399],
7674 "gob.es": &z[2400],
7675 "nom.es": &z[2401],
7676 "org.es": &z[2402],
7677 "biz.et": &z[2403],
7678 "com.et": &z[2404],
7679 "edu.et": &z[2405],
7680 "gov.et": &z[2406],
7681 "info.et": &z[2407],
7682 "name.et": &z[2408],
7683 "net.et": &z[2409],
7684 "org.et": &z[2410],
7685 "24.eu": &z[2411],
7686 "ecb.eu": &z[2412],
7687 "europa.eu": &z[2413],
7688 "ac.fj": &z[2414],
7689 "biz.fj": &z[2415],
7690 "com.fj": &z[2416],
7691 "gov.fj": &z[2417],
7692 "info.fj": &z[2418],
7693 "mil.fj": &z[2419],
7694 "name.fj": &z[2420],
7695 "net.fj": &z[2421],
7696 "org.fj": &z[2422],
7697 "pro.fj": &z[2423],
7698 "school.fj": &z[2424],
7699 "ac.fk": &z[2425],
7700 "co.fk": &z[2426],
7701 "gov.fk": &z[2427],
7702 "net.fk": &z[2428],
7703 "nom.fk": &z[2429],
7704 "org.fk": &z[2430],
7705 "0.fm": &z[2431],
7706 "2.fm": &z[2432],
7707 "4.fm": &z[2433],
7708 "6.fm": &z[2434],
7709 "8.fm": &z[2435],
7710 "radio.fm": &z[2436],
7711 "aero.fo": &z[2437],
7712 "biz.fo": &z[2438],
7713 "co.fo": &z[2439],
7714 "com.fo": &z[2440],
7715 "coop.fo": &z[2441],
7716 "edu.fo": &z[2442],
7717 "flp.fo": &z[2443],
7718 "ftp.fo": &z[2444],
7719 "gov.fo": &z[2445],
7720 "info.fo": &z[2446],
7721 "int.fo": &z[2447],
7722 "internet.fo": &z[2448],
7723 "irc.fo": &z[2449],
7724 "mail.fo": &z[2450],
7725 "mil.fo": &z[2451],
7726 "museum.fo": &z[2452],
7727 "name.fo": &z[2453],
7728 "org.fo": &z[2454],
7729 "telenet.fo": &z[2455],
7730 "telnet.fo": &z[2456],
7731 "web.fo": &z[2457],
7732 "www.fo": &z[2458],
7733 "aeroport.fr": &z[2459],
7734 "asso.fr": &z[2460],
7735 "avocat.fr": &z[2461],
7736 "chambagri.fr": &z[2462],
7737 "chirurgiens-dentistes.fr": &z[2463],
7738 "com.fr": &z[2464],
7739 "experts-comptables.fr": &z[2465],
7740 "geometre-expert.fr": &z[2466],
7741 "gouv.fr": &z[2467],
7742 "medecin.fr": &z[2468],
7743 "nom.fr": &z[2469],
7744 "notaires.fr": &z[2470],
7745 "pharmacien.fr": &z[2471],
7746 "port.fr": &z[2472],
7747 "prd.fr": &z[2473],
7748 "presse.fr": &z[2474],
7749 "tm.fr": &z[2475],
7750 "veterinaire.fr": &z[2476],
7751 "ac.ga": &z[2477],
7752 "aeroport.ga": &z[2478],
7753 "asso.ga": &z[2479],
7754 "co.ga": &z[2480],
7755 "com.ga": &z[2481],
7756 "ed.ga": &z[2482],
7757 "edu.ga": &z[2483],
7758 "go.ga": &z[2484],
7759 "int.ga": &z[2485],
7760 "net.ga": &z[2486],
7761 "or.ga": &z[2487],
7762 "org.ga": &z[2488],
7763 "presse.ga": &z[2489],
7764 "hmg.gb": &z[2490],
7765 "com.gd": &z[2491],
7766 "edu.gd": &z[2492],
7767 "gov.gd": &z[2493],
7768 "mlt.gd": &z[2494],
7769 "net.gd": &z[2495],
7770 "org.gd": &z[2496],
7771 "sci.gd": &z[2497],
7772 "com.ge": &z[2498],
7773 "edu.ge": &z[2499],
7774 "gov.ge": &z[2500],
7775 "mil.ge": &z[2501],
7776 "net.ge": &z[2502],
7777 "org.ge": &z[2503],
7778 "pvt.ge": &z[2504],
7779 "school.ge": &z[2505],
7780 "24.gg": &z[2506],
7781 "ac.gg": &z[2507],
7782 "co.gg": &z[2508],
7783 "eu.gg": &z[2509],
7784 "gov.gg": &z[2510],
7785 "net.gg": &z[2511],
7786 "org.gg": &z[2512],
7787 "sch.gg": &z[2513],
7788 "tr.gg": &z[2514],
7789 "tv.gg": &z[2515],
7790 "web.gg": &z[2516],
7791 "com.gh": &z[2517],
7792 "edu.gh": &z[2518],
7793 "gov.gh": &z[2519],
7794 "mil.gh": &z[2520],
7795 "net.gh": &z[2521],
7796 "org.gh": &z[2522],
7797 "com.gi": &z[2523],
7798 "edu.gi": &z[2524],
7799 "gov.gi": &z[2525],
7800 "ltd.gi": &z[2526],
7801 "mod.gi": &z[2527],
7802 "org.gi": &z[2528],
7803 "co.gl": &z[2529],
7804 "com.gl": &z[2530],
7805 "edu.gl": &z[2531],
7806 "net.gl": &z[2532],
7807 "org.gl": &z[2533],
7808 "ac.gn": &z[2534],
7809 "co.gn": &z[2535],
7810 "com.gn": &z[2536],
7811 "gov.gn": &z[2537],
7812 "net.gn": &z[2538],
7813 "org.gn": &z[2539],
7814 "24.gp": &z[2540],
7815 "asia.gp": &z[2541],
7816 "asso.gp": &z[2542],
7817 "co.gp": &z[2543],
7818 "com.gp": &z[2544],
7819 "edu.gp": &z[2545],
7820 "eu.gp": &z[2546],
7821 "mobi.gp": &z[2547],
7822 "net.gp": &z[2548],
7823 "online.gp": &z[2549],
7824 "org.gp": &z[2550],
7825 "com.gr": &z[2551],
7826 "edu.gr": &z[2552],
7827 "gov.gr": &z[2553],
7828 "net.gr": &z[2554],
7829 "org.gr": &z[2555],
7830 "com.gt": &z[2556],
7831 "edu.gt": &z[2557],
7832 "gob.gt": &z[2558],
7833 "ind.gt": &z[2559],
7834 "mil.gt": &z[2560],
7835 "net.gt": &z[2561],
7836 "org.gt": &z[2562],
7837 "com.gu": &z[2563],
7838 "edu.gu": &z[2564],
7839 "gov.gu": &z[2565],
7840 "guam.gu": &z[2566],
7841 "net.gu": &z[2567],
7842 "org.gu": &z[2568],
7843 "web.gu": &z[2569],
7844 "co.gy": &z[2570],
7845 "com.gy": &z[2571],
7846 "net.gy": &z[2572],
7847 "org.gy": &z[2573],
7848 "com.hk": &z[2574],
7849 "edu.hk": &z[2575],
7850 "gov.hk": &z[2576],
7851 "idv.hk": &z[2577],
7852 "inc.hk": &z[2578],
7853 "ltd.hk": &z[2579],
7854 "net.hk": &z[2580],
7855 "org.hk": &z[2581],
7856 "xn--55qx5d.hk": &z[2582], // 公司.hk
7857 "com.hn": &z[2583],
7858 "edu.hn": &z[2584],
7859 "gob.hn": &z[2585],
7860 "mil.hn": &z[2586],
7861 "net.hn": &z[2587],
7862 "org.hn": &z[2588],
7863 "com.hr": &z[2589],
7864 "from.hr": &z[2590],
7865 "iz.hr": &z[2591],
7866 "name.hr": &z[2592],
7867 "adult.ht": &z[2593],
7868 "art.ht": &z[2594],
7869 "asso.ht": &z[2595],
7870 "com.ht": &z[2596],
7871 "coop.ht": &z[2597],
7872 "edu.ht": &z[2598],
7873 "firm.ht": &z[2599],
7874 "gouv.ht": &z[2600],
7875 "info.ht": &z[2601],
7876 "med.ht": &z[2602],
7877 "net.ht": &z[2603],
7878 "org.ht": &z[2604],
7879 "perso.ht": &z[2605],
7880 "pol.ht": &z[2606],
7881 "pro.ht": &z[2607],
7882 "rel.ht": &z[2608],
7883 "shop.ht": &z[2609],
7884 "2000.hu": &z[2610],
7885 "ac.hu": &z[2611],
7886 "agrar.hu": &z[2612],
7887 "bolt.hu": &z[2613],
7888 "casino.hu": &z[2614],
7889 "city.hu": &z[2615],
7890 "co.hu": &z[2616],
7891 "edu.hu": &z[2617],
7892 "erotica.hu": &z[2618],
7893 "erotika.hu": &z[2619],
7894 "film.hu": &z[2620],
7895 "forum.hu": &z[2621],
7896 "games.hu": &z[2622],
7897 "gov.hu": &z[2623],
7898 "hotel.hu": &z[2624],
7899 "info.hu": &z[2625],
7900 "ingatlan.hu": &z[2626],
7901 "jogasz.hu": &z[2627],
7902 "konyvelo.hu": &z[2628],
7903 "lakas.hu": &z[2629],
7904 "media.hu": &z[2630],
7905 "news.hu": &z[2631],
7906 "org.hu": &z[2632],
7907 "priv.hu": &z[2633],
7908 "reklam.hu": &z[2634],
7909 "sex.hu": &z[2635],
7910 "shop.hu": &z[2636],
7911 "sport.hu": &z[2637],
7912 "suli.hu": &z[2638],
7913 "szex.hu": &z[2639],
7914 "tm.hu": &z[2640],
7915 "tozsde.hu": &z[2641],
7916 "utazas.hu": &z[2642],
7917 "video.hu": &z[2643],
7918 "ac.id": &z[2644],
7919 "biz.id": &z[2645],
7920 "co.id": &z[2646],
7921 "desa.id": &z[2647],
7922 "go.id": &z[2648],
7923 "mi.id": &z[2649],
7924 "mil.id": &z[2650],
7925 "my.id": &z[2651],
7926 "net.id": &z[2652],
7927 "or.id": &z[2653],
7928 "sch.id": &z[2654],
7929 "web.id": &z[2655],
7930 "com.ie": &z[2656],
7931 "gov.ie": &z[2657],
7932 "net.ie": &z[2658],
7933 "nli.ie": &z[2659],
7934 "org.ie": &z[2660],
7935 "ac.il": &z[2661],
7936 "co.il": &z[2662],
7937 "gov.il": &z[2663],
7938 "idf.il": &z[2664],
7939 "k12.il": &z[2665],
7940 "muni.il": &z[2666],
7941 "net.il": &z[2667],
7942 "org.il": &z[2668],
7943 "ac.im": &z[2669],
7944 "co.im": &z[2670],
7945 "com.im": &z[2671],
7946 "gov.im": &z[2672],
7947 "net.im": &z[2673],
7948 "org.im": &z[2674],
7949 "ac.in": &z[2675],
7950 "co.in": &z[2676],
7951 "edu.in": &z[2677],
7952 "ernet.in": &z[2678],
7953 "firm.in": &z[2679],
7954 "gen.in": &z[2680],
7955 "gov.in": &z[2681],
7956 "ind.in": &z[2682],
7957 "mil.in": &z[2683],
7958 "net.in": &z[2684],
7959 "org.in": &z[2685],
7960 "res.in": &z[2686],
7961 "auz.info": &z[2687],
7962 "eu.int": &z[2688],
7963 "com.io": &z[2689],
7964 "org.io": &z[2690],
7965 "biz.iq": &z[2691],
7966 "com.iq": &z[2692],
7967 "edu.iq": &z[2693],
7968 "gov.iq": &z[2694],
7969 "info.iq": &z[2695],
7970 "mil.iq": &z[2696],
7971 "name.iq": &z[2697],
7972 "net.iq": &z[2698],
7973 "org.iq": &z[2699],
7974 "tv.iq": &z[2700],
7975 "ac.ir": &z[2701],
7976 "co.ir": &z[2702],
7977 "gov.ir": &z[2703],
7978 "id.ir": &z[2704],
7979 "net.ir": &z[2705],
7980 "org.ir": &z[2706],
7981 "sch.ir": &z[2707],
7982 "abr.it": &z[2708],
7983 "abruzzo.it": &z[2709],
7984 "ag.it": &z[2710],
7985 "agrigento.it": &z[2711],
7986 "al.it": &z[2712],
7987 "alessandria.it": &z[2713],
7988 "alto-adige.it": &z[2714],
7989 "altoadige.it": &z[2715],
7990 "an.it": &z[2716],
7991 "ancona.it": &z[2717],
7992 "andria-barletta-trani.it": &z[2718],
7993 "andria-trani-barletta.it": &z[2719],
7994 "andriabarlettatrani.it": &z[2720],
7995 "andriatranibarletta.it": &z[2721],
7996 "ao.it": &z[2722],
7997 "aosta.it": &z[2723],
7998 "aoste.it": &z[2724],
7999 "ap.it": &z[2725],
8000 "aq.it": &z[2726],
8001 "aquila.it": &z[2727],
8002 "ar.it": &z[2728],
8003 "arezzo.it": &z[2729],
8004 "ascoli-piceno.it": &z[2730],
8005 "ascolipiceno.it": &z[2731],
8006 "asti.it": &z[2732],
8007 "at.it": &z[2733],
8008 "av.it": &z[2734],
8009 "avellino.it": &z[2735],
8010 "ba.it": &z[2736],
8011 "balsan.it": &z[2737],
8012 "bari.it": &z[2738],
8013 "barletta-trani-andria.it": &z[2739],
8014 "barlettatraniandria.it": &z[2740],
8015 "bas.it": &z[2741],
8016 "basilicata.it": &z[2742],
8017 "belluno.it": &z[2743],
8018 "benevento.it": &z[2744],
8019 "bergamo.it": &z[2745],
8020 "bg.it": &z[2746],
8021 "bi.it": &z[2747],
8022 "biella.it": &z[2748],
8023 "bl.it": &z[2749],
8024 "bn.it": &z[2750],
8025 "bo.it": &z[2751],
8026 "bologna.it": &z[2752],
8027 "bolzano.it": &z[2753],
8028 "bozen.it": &z[2754],
8029 "br.it": &z[2755],
8030 "brescia.it": &z[2756],
8031 "brindisi.it": &z[2757],
8032 "bs.it": &z[2758],
8033 "bt.it": &z[2759],
8034 "bz.it": &z[2760],
8035 "ca.it": &z[2761],
8036 "cagliari.it": &z[2762],
8037 "cal.it": &z[2763],
8038 "calabria.it": &z[2764],
8039 "caltanissetta.it": &z[2765],
8040 "cam.it": &z[2766],
8041 "campania.it": &z[2767],
8042 "campidano-medio.it": &z[2768],
8043 "campidanomedio.it": &z[2769],
8044 "campobasso.it": &z[2770],
8045 "carbonia-iglesias.it": &z[2771],
8046 "carboniaiglesias.it": &z[2772],
8047 "carrara-massa.it": &z[2773],
8048 "carraramassa.it": &z[2774],
8049 "caserta.it": &z[2775],
8050 "catania.it": &z[2776],
8051 "catanzaro.it": &z[2777],
8052 "cb.it": &z[2778],
8053 "ce.it": &z[2779],
8054 "cesena-forli.it": &z[2780],
8055 "cesenaforli.it": &z[2781],
8056 "ch.it": &z[2782],
8057 "chieti.it": &z[2783],
8058 "ci.it": &z[2784],
8059 "cl.it": &z[2785],
8060 "cn.it": &z[2786],
8061 "co.it": &z[2787],
8062 "como.it": &z[2788],
8063 "cosenza.it": &z[2789],
8064 "cr.it": &z[2790],
8065 "cremona.it": &z[2791],
8066 "crotone.it": &z[2792],
8067 "cs.it": &z[2793],
8068 "ct.it": &z[2794],
8069 "cuneo.it": &z[2795],
8070 "cz.it": &z[2796],
8071 "dell-ogliastra.it": &z[2797],
8072 "dellogliastra.it": &z[2798],
8073 "edu.it": &z[2799],
8074 "emilia-romagna.it": &z[2800],
8075 "emiliaromagna.it": &z[2801],
8076 "emr.it": &z[2802],
8077 "en.it": &z[2803],
8078 "enna.it": &z[2804],
8079 "fc.it": &z[2805],
8080 "fe.it": &z[2806],
8081 "fermo.it": &z[2807],
8082 "ferrara.it": &z[2808],
8083 "fg.it": &z[2809],
8084 "fi.it": &z[2810],
8085 "firenze.it": &z[2811],
8086 "florence.it": &z[2812],
8087 "fm.it": &z[2813],
8088 "foggia.it": &z[2814],
8089 "forli-cesena.it": &z[2815],
8090 "forlicesena.it": &z[2816],
8091 "fr.it": &z[2817],
8092 "friuli-v-giulia.it": &z[2818],
8093 "friuli-ve-giulia.it": &z[2819],
8094 "friuli-vegiulia.it": &z[2820],
8095 "friuli-venezia-giulia.it": &z[2821],
8096 "friuli-veneziagiulia.it": &z[2822],
8097 "friuli-vgiulia.it": &z[2823],
8098 "friuliv-giulia.it": &z[2824],
8099 "friulive-giulia.it": &z[2825],
8100 "friulivegiulia.it": &z[2826],
8101 "friulivenezia-giulia.it": &z[2827],
8102 "friuliveneziagiulia.it": &z[2828],
8103 "friulivgiulia.it": &z[2829],
8104 "frosinone.it": &z[2830],
8105 "fvg.it": &z[2831],
8106 "ge.it": &z[2832],
8107 "genoa.it": &z[2833],
8108 "genova.it": &z[2834],
8109 "go.it": &z[2835],
8110 "gorizia.it": &z[2836],
8111 "gov.it": &z[2837],
8112 "gr.it": &z[2838],
8113 "grosseto.it": &z[2839],
8114 "iglesias-carbonia.it": &z[2840],
8115 "iglesiascarbonia.it": &z[2841],
8116 "im.it": &z[2842],
8117 "imperia.it": &z[2843],
8118 "is.it": &z[2844],
8119 "isernia.it": &z[2845],
8120 "kr.it": &z[2846],
8121 "la-spezia.it": &z[2847],
8122 "laquila.it": &z[2848],
8123 "laspezia.it": &z[2849],
8124 "latina.it": &z[2850],
8125 "laz.it": &z[2851],
8126 "lazio.it": &z[2852],
8127 "lc.it": &z[2853],
8128 "le.it": &z[2854],
8129 "lecce.it": &z[2855],
8130 "lecco.it": &z[2856],
8131 "li.it": &z[2857],
8132 "lig.it": &z[2858],
8133 "liguria.it": &z[2859],
8134 "livorno.it": &z[2860],
8135 "lo.it": &z[2861],
8136 "lodi.it": &z[2862],
8137 "lom.it": &z[2863],
8138 "lombardia.it": &z[2864],
8139 "lombardy.it": &z[2865],
8140 "lt.it": &z[2866],
8141 "lu.it": &z[2867],
8142 "lucania.it": &z[2868],
8143 "lucca.it": &z[2869],
8144 "macerata.it": &z[2870],
8145 "mantova.it": &z[2871],
8146 "mar.it": &z[2872],
8147 "marche.it": &z[2873],
8148 "massa-carrara.it": &z[2874],
8149 "massacarrara.it": &z[2875],
8150 "matera.it": &z[2876],
8151 "mb.it": &z[2877],
8152 "mc.it": &z[2878],
8153 "me.it": &z[2879],
8154 "medio-campidano.it": &z[2880],
8155 "mediocampidano.it": &z[2881],
8156 "messina.it": &z[2882],
8157 "mi.it": &z[2883],
8158 "milan.it": &z[2884],
8159 "milano.it": &z[2885],
8160 "mn.it": &z[2886],
8161 "mo.it": &z[2887],
8162 "modena.it": &z[2888],
8163 "mol.it": &z[2889],
8164 "molise.it": &z[2890],
8165 "monza.it": &z[2891],
8166 "monza-brianza.it": &z[2892],
8167 "monza-e-della-brianza.it": &z[2893],
8168 "monzabrianza.it": &z[2894],
8169 "monzaebrianza.it": &z[2895],
8170 "monzaedellabrianza.it": &z[2896],
8171 "ms.it": &z[2897],
8172 "mt.it": &z[2898],
8173 "na.it": &z[2899],
8174 "naples.it": &z[2900],
8175 "napoli.it": &z[2901],
8176 "no.it": &z[2902],
8177 "novara.it": &z[2903],
8178 "nu.it": &z[2904],
8179 "nuoro.it": &z[2905],
8180 "og.it": &z[2906],
8181 "ogliastra.it": &z[2907],
8182 "olbia-tempio.it": &z[2908],
8183 "olbiatempio.it": &z[2909],
8184 "or.it": &z[2910],
8185 "oristano.it": &z[2911],
8186 "ot.it": &z[2912],
8187 "pa.it": &z[2913],
8188 "padova.it": &z[2914],
8189 "padua.it": &z[2915],
8190 "palermo.it": &z[2916],
8191 "parma.it": &z[2917],
8192 "pavia.it": &z[2918],
8193 "pc.it": &z[2919],
8194 "pd.it": &z[2920],
8195 "pe.it": &z[2921],
8196 "perugia.it": &z[2922],
8197 "pesaro-urbino.it": &z[2923],
8198 "pesarourbino.it": &z[2924],
8199 "pescara.it": &z[2925],
8200 "pg.it": &z[2926],
8201 "pi.it": &z[2927],
8202 "piacenza.it": &z[2928],
8203 "piedmont.it": &z[2929],
8204 "piemonte.it": &z[2930],
8205 "pisa.it": &z[2931],
8206 "pistoia.it": &z[2932],
8207 "pmn.it": &z[2933],
8208 "pn.it": &z[2934],
8209 "po.it": &z[2935],
8210 "pordenone.it": &z[2936],
8211 "potenza.it": &z[2937],
8212 "pr.it": &z[2938],
8213 "prato.it": &z[2939],
8214 "pt.it": &z[2940],
8215 "pu.it": &z[2941],
8216 "pug.it": &z[2942],
8217 "puglia.it": &z[2943],
8218 "pv.it": &z[2944],
8219 "pz.it": &z[2945],
8220 "ra.it": &z[2946],
8221 "ragusa.it": &z[2947],
8222 "ravenna.it": &z[2948],
8223 "rc.it": &z[2949],
8224 "re.it": &z[2950],
8225 "reggio-calabria.it": &z[2951],
8226 "reggio-emilia.it": &z[2952],
8227 "reggiocalabria.it": &z[2953],
8228 "reggioemilia.it": &z[2954],
8229 "rg.it": &z[2955],
8230 "ri.it": &z[2956],
8231 "rieti.it": &z[2957],
8232 "rimini.it": &z[2958],
8233 "rm.it": &z[2959],
8234 "rn.it": &z[2960],
8235 "ro.it": &z[2961],
8236 "roma.it": &z[2962],
8237 "rome.it": &z[2963],
8238 "rovigo.it": &z[2964],
8239 "sa.it": &z[2965],
8240 "salerno.it": &z[2966],
8241 "sar.it": &z[2967],
8242 "sardegna.it": &z[2968],
8243 "sardinia.it": &z[2969],
8244 "sassari.it": &z[2970],
8245 "savona.it": &z[2971],
8246 "si.it": &z[2972],
8247 "sic.it": &z[2973],
8248 "sicilia.it": &z[2974],
8249 "sicily.it": &z[2975],
8250 "siena.it": &z[2976],
8251 "siracusa.it": &z[2977],
8252 "so.it": &z[2978],
8253 "sondrio.it": &z[2979],
8254 "sp.it": &z[2980],
8255 "sr.it": &z[2981],
8256 "ss.it": &z[2982],
8257 "suedtirol.it": &z[2983],
8258 "sv.it": &z[2984],
8259 "ta.it": &z[2985],
8260 "taa.it": &z[2986],
8261 "taranto.it": &z[2987],
8262 "te.it": &z[2988],
8263 "tempio-olbia.it": &z[2989],
8264 "tempioolbia.it": &z[2990],
8265 "teramo.it": &z[2991],
8266 "terni.it": &z[2992],
8267 "tn.it": &z[2993],
8268 "to.it": &z[2994],
8269 "torino.it": &z[2995],
8270 "tos.it": &z[2996],
8271 "toscana.it": &z[2997],
8272 "tp.it": &z[2998],
8273 "tr.it": &z[2999],
8274 "trani-andria-barletta.it": &z[3000],
8275 "trani-barletta-andria.it": &z[3001],
8276 "traniandriabarletta.it": &z[3002],
8277 "tranibarlettaandria.it": &z[3003],
8278 "trapani.it": &z[3004],
8279 "trentino.it": &z[3005],
8280 "trentino-a-adige.it": &z[3006],
8281 "trentino-aadige.it": &z[3007],
8282 "trentino-alto-adige.it": &z[3008],
8283 "trentino-altoadige.it": &z[3009],
8284 "trentino-s-tirol.it": &z[3010],
8285 "trentino-stirol.it": &z[3011],
8286 "trentino-sud-tirol.it": &z[3012],
8287 "trentino-sudtirol.it": &z[3013],
8288 "trentino-sued-tirol.it": &z[3014],
8289 "trentino-suedtirol.it": &z[3015],
8290 "trentinoa-adige.it": &z[3016],
8291 "trentinoaadige.it": &z[3017],
8292 "trentinoalto-adige.it": &z[3018],
8293 "trentinoaltoadige.it": &z[3019],
8294 "trentinos-tirol.it": &z[3020],
8295 "trentinosud-tirol.it": &z[3021],
8296 "trentinosudtirol.it": &z[3022],
8297 "trentinosued-tirol.it": &z[3023],
8298 "trentinosuedtirol.it": &z[3024],
8299 "trento.it": &z[3025],
8300 "treviso.it": &z[3026],
8301 "trieste.it": &z[3027],
8302 "ts.it": &z[3028],
8303 "turin.it": &z[3029],
8304 "tuscany.it": &z[3030],
8305 "tv.it": &z[3031],
8306 "ud.it": &z[3032],
8307 "udine.it": &z[3033],
8308 "umb.it": &z[3034],
8309 "umbria.it": &z[3035],
8310 "urbino-pesaro.it": &z[3036],
8311 "urbinopesaro.it": &z[3037],
8312 "va.it": &z[3038],
8313 "val-d-aosta.it": &z[3039],
8314 "val-daosta.it": &z[3040],
8315 "vald-aosta.it": &z[3041],
8316 "valdaosta.it": &z[3042],
8317 "valle-d-aosta.it": &z[3043],
8318 "valle-daosta.it": &z[3044],
8319 "valled-aosta.it": &z[3045],
8320 "valledaosta.it": &z[3046],
8321 "vao.it": &z[3047],
8322 "varese.it": &z[3048],
8323 "vb.it": &z[3049],
8324 "vc.it": &z[3050],
8325 "vda.it": &z[3051],
8326 "ve.it": &z[3052],
8327 "ven.it": &z[3053],
8328 "veneto.it": &z[3054],
8329 "venezia.it": &z[3055],
8330 "venice.it": &z[3056],
8331 "verbania.it": &z[3057],
8332 "vercelli.it": &z[3058],
8333 "verona.it": &z[3059],
8334 "vi.it": &z[3060],
8335 "vibo-valentia.it": &z[3061],
8336 "vibovalentia.it": &z[3062],
8337 "vicenza.it": &z[3063],
8338 "viterbo.it": &z[3064],
8339 "vr.it": &z[3065],
8340 "vs.it": &z[3066],
8341 "vt.it": &z[3067],
8342 "vv.it": &z[3068],
8343 "24.je": &z[3069],
8344 "co.je": &z[3070],
8345 "gov.je": &z[3071],
8346 "net.je": &z[3072],
8347 "org.je": &z[3073],
8348 "sch.je": &z[3074],
8349 "com.jm": &z[3075],
8350 "edu.jm": &z[3076],
8351 "gov.jm": &z[3077],
8352 "mil.jm": &z[3078],
8353 "net.jm": &z[3079],
8354 "org.jm": &z[3080],
8355 "com.jo": &z[3081],
8356 "edu.jo": &z[3082],
8357 "gov.jo": &z[3083],
8358 "mil.jo": &z[3084],
8359 "name.jo": &z[3085],
8360 "net.jo": &z[3086],
8361 "org.jo": &z[3087],
8362 "sch.jo": &z[3088],
8363 "ac.jp": &z[3089],
8364 "ad.jp": &z[3090],
8365 "aichi.jp": &z[3091],
8366 "akita.jp": &z[3092],
8367 "aomori.jp": &z[3093],
8368 "chiba.jp": &z[3094],
8369 "co.jp": &z[3095],
8370 "ed.jp": &z[3096],
8371 "ehime.jp": &z[3097],
8372 "fukui.jp": &z[3098],
8373 "fukuoka.jp": &z[3099],
8374 "fukushima.jp": &z[3100],
8375 "gifu.jp": &z[3101],
8376 "go.jp": &z[3102],
8377 "gr.jp": &z[3103],
8378 "gunma.jp": &z[3104],
8379 "hiroshima.jp": &z[3105],
8380 "hokkaido.jp": &z[3106],
8381 "hyogo.jp": &z[3107],
8382 "ibaraki.jp": &z[3108],
8383 "ishikawa.jp": &z[3109],
8384 "iwate.jp": &z[3110],
8385 "kagawa.jp": &z[3111],
8386 "kagoshima.jp": &z[3112],
8387 "kanagawa.jp": &z[3113],
8388 "kochi.jp": &z[3114],
8389 "kumamoto.jp": &z[3115],
8390 "kyoto.jp": &z[3116],
8391 "lg.jp": &z[3117],
8392 "mie.jp": &z[3118],
8393 "miyagi.jp": &z[3119],
8394 "miyazaki.jp": &z[3120],
8395 "nagano.jp": &z[3121],
8396 "nagasaki.jp": &z[3122],
8397 "nara.jp": &z[3123],
8398 "ne.jp": &z[3124],
8399 "niigata.jp": &z[3125],
8400 "oita.jp": &z[3126],
8401 "okayama.jp": &z[3127],
8402 "okinawa.jp": &z[3128],
8403 "or.jp": &z[3129],
8404 "osaka.jp": &z[3130],
8405 "saga.jp": &z[3131],
8406 "saitama.jp": &z[3132],
8407 "shiga.jp": &z[3133],
8408 "shimane.jp": &z[3134],
8409 "shizuoka.jp": &z[3135],
8410 "tochigi.jp": &z[3136],
8411 "tokushima.jp": &z[3137],
8412 "tokyo.jp": &z[3138],
8413 "tottori.jp": &z[3139],
8414 "toyama.jp": &z[3140],
8415 "wakayama.jp": &z[3141],
8416 "yamagata.jp": &z[3142],
8417 "yamaguchi.jp": &z[3143],
8418 "yamanashi.jp": &z[3144],
8419 "xn--ehqz56n.jp": &z[3145], // 三重.jp
8420 "xn--1lqs03n.jp": &z[3146], // 京都.jp
8421 "xn--qqqt11m.jp": &z[3147], // 佐賀.jp
8422 "xn--f6qx53a.jp": &z[3148], // 兵庫.jp
8423 "xn--djrs72d6uy.jp": &z[3149], // 北海道.jp
8424 "xn--mkru45i.jp": &z[3150], // 千葉.jp
8425 "xn--0trq7p7nn.jp": &z[3151], // 和歌山.jp
8426 "xn--5js045d.jp": &z[3152], // 埼玉.jp
8427 "xn--kbrq7o.jp": &z[3153], // 大分.jp
8428 "xn--pssu33l.jp": &z[3154], // 大阪.jp
8429 "xn--ntsq17g.jp": &z[3155], // 奈良.jp
8430 "xn--uisz3g.jp": &z[3156], // 宮城.jp
8431 "xn--6btw5a.jp": &z[3157], // 宮崎.jp
8432 "xn--1ctwo.jp": &z[3158], // 富山.jp
8433 "xn--6orx2r.jp": &z[3159], // 山口.jp
8434 "xn--rht61e.jp": &z[3160], // 山形.jp
8435 "xn--rht27z.jp": &z[3161], // 山梨.jp
8436 "xn--nit225k.jp": &z[3162], // 岐阜.jp
8437 "xn--rht3d.jp": &z[3163], // 岡山.jp
8438 "xn--djty4k.jp": &z[3164], // 岩手.jp
8439 "xn--klty5x.jp": &z[3165], // 島根.jp
8440 "xn--kltx9a.jp": &z[3166], // 広島.jp
8441 "xn--kltp7d.jp": &z[3167], // 徳島.jp
8442 "xn--c3s14m.jp": &z[3168], // 愛媛.jp
8443 "xn--vgu402c.jp": &z[3169], // 愛知.jp
8444 "xn--efvn9s.jp": &z[3170], // 新潟.jp
8445 "xn--1lqs71d.jp": &z[3171], // 東京.jp
8446 "xn--4pvxs.jp": &z[3172], // 栃木.jp
8447 "xn--uuwu58a.jp": &z[3173], // 沖縄.jp
8448 "xn--zbx025d.jp": &z[3174], // 滋賀.jp
8449 "xn--8pvr4u.jp": &z[3175], // 熊本.jp
8450 "xn--5rtp49c.jp": &z[3176], // 石川.jp
8451 "xn--ntso0iqx3a.jp": &z[3177], // 神奈川.jp
8452 "xn--elqq16h.jp": &z[3178], // 福井.jp
8453 "xn--4it168d.jp": &z[3179], // 福岡.jp
8454 "xn--klt787d.jp": &z[3180], // 福島.jp
8455 "xn--rny31h.jp": &z[3181], // 秋田.jp
8456 "xn--7t0a264c.jp": &z[3182], // 群馬.jp
8457 "xn--uist22h.jp": &z[3183], // 茨城.jp
8458 "xn--8ltr62k.jp": &z[3184], // 長崎.jp
8459 "xn--2m4a15e.jp": &z[3185], // 長野.jp
8460 "xn--32vp30h.jp": &z[3186], // 青森.jp
8461 "xn--4it797k.jp": &z[3187], // 静岡.jp
8462 "xn--5rtq34k.jp": &z[3188], // 香川.jp
8463 "xn--k7yn95e.jp": &z[3189], // 高知.jp
8464 "xn--tor131o.jp": &z[3190], // 鳥取.jp
8465 "xn--d5qv7z876c.jp": &z[3191], // 鹿児島.jp
8466 "ac.ke": &z[3192],
8467 "co.ke": &z[3193],
8468 "go.ke": &z[3194],
8469 "info.ke": &z[3195],
8470 "me.ke": &z[3196],
8471 "mobi.ke": &z[3197],
8472 "ne.ke": &z[3198],
8473 "or.ke": &z[3199],
8474 "sc.ke": &z[3200],
8475 "com.kg": &z[3201],
8476 "edu.kg": &z[3202],
8477 "gov.kg": &z[3203],
8478 "mil.kg": &z[3204],
8479 "net.kg": &z[3205],
8480 "org.kg": &z[3206],
8481 "com.kh": &z[3207],
8482 "edu.kh": &z[3208],
8483 "gov.kh": &z[3209],
8484 "mil.kh": &z[3210],
8485 "net.kh": &z[3211],
8486 "org.kh": &z[3212],
8487 "per.kh": &z[3213],
8488 "biz.ki": &z[3214],
8489 "com.ki": &z[3215],
8490 "edu.ki": &z[3216],
8491 "eu.ki": &z[3217],
8492 "gov.ki": &z[3218],
8493 "info.ki": &z[3219],
8494 "mob.ki": &z[3220],
8495 "mobi.ki": &z[3221],
8496 "net.ki": &z[3222],
8497 "org.ki": &z[3223],
8498 "phone.ki": &z[3224],
8499 "tel.ki": &z[3225],
8500 "asso.km": &z[3226],
8501 "com.km": &z[3227],
8502 "coop.km": &z[3228],
8503 "edu.km": &z[3229],
8504 "gouv.km": &z[3230],
8505 "medecin.km": &z[3231],
8506 "mil.km": &z[3232],
8507 "nom.km": &z[3233],
8508 "notaires.km": &z[3234],
8509 "org.km": &z[3235],
8510 "pharmaciens.km": &z[3236],
8511 "presse.km": &z[3237],
8512 "tm.km": &z[3238],
8513 "veterinaire.km": &z[3239],
8514 "co.kn": &z[3240],
8515 "com.kn": &z[3241],
8516 "edu.kn": &z[3242],
8517 "gov.kn": &z[3243],
8518 "net.kn": &z[3244],
8519 "org.kn": &z[3245],
8520 "com.kp": &z[3246],
8521 "net.kp": &z[3247],
8522 "org.kp": &z[3248],
8523 "rep.kp": &z[3249],
8524 "ac.kr": &z[3250],
8525 "busan.kr": &z[3251],
8526 "chungbuk.kr": &z[3252],
8527 "chungnam.kr": &z[3253],
8528 "co.kr": &z[3254],
8529 "daegu.kr": &z[3255],
8530 "daejeon.kr": &z[3256],
8531 "es.kr": &z[3257],
8532 "gangwon.kr": &z[3258],
8533 "go.kr": &z[3259],
8534 "gwangju.kr": &z[3260],
8535 "gyeongbuk.kr": &z[3261],
8536 "gyeonggi.kr": &z[3262],
8537 "gyeongnam.kr": &z[3263],
8538 "hs.kr": &z[3264],
8539 "incheon.kr": &z[3265],
8540 "jeju.kr": &z[3266],
8541 "jeonbuk.kr": &z[3267],
8542 "jeonnam.kr": &z[3268],
8543 "kg.kr": &z[3269],
8544 "mil.kr": &z[3270],
8545 "ms.kr": &z[3271],
8546 "ne.kr": &z[3272],
8547 "or.kr": &z[3273],
8548 "pe.kr": &z[3274],
8549 "re.kr": &z[3275],
8550 "sc.kr": &z[3276],
8551 "seoul.kr": &z[3277],
8552 "ulsan.kr": &z[3278],
8553 "com.kw": &z[3279],
8554 "edu.kw": &z[3280],
8555 "gov.kw": &z[3281],
8556 "net.kw": &z[3282],
8557 "org.kw": &z[3283],
8558 "com.ky": &z[3284],
8559 "edu.ky": &z[3285],
8560 "gov.ky": &z[3286],
8561 "net.ky": &z[3287],
8562 "org.ky": &z[3288],
8563 "com.kz": &z[3289],
8564 "edu.kz": &z[3290],
8565 "gov.kz": &z[3291],
8566 "mil.kz": &z[3292],
8567 "net.kz": &z[3293],
8568 "org.kz": &z[3294],
8569 "com.lb": &z[3295],
8570 "edu.lb": &z[3296],
8571 "gov.lb": &z[3297],
8572 "net.lb": &z[3298],
8573 "org.lb": &z[3299],
8574 "24.lc": &z[3300],
8575 "co.lc": &z[3301],
8576 "com.lc": &z[3302],
8577 "edu.lc": &z[3303],
8578 "gov.lc": &z[3304],
8579 "l.lc": &z[3305],
8580 "net.lc": &z[3306],
8581 "org.lc": &z[3307],
8582 "p.lc": &z[3308],
8583 "assn.lk": &z[3309],
8584 "com.lk": &z[3310],
8585 "edu.lk": &z[3311],
8586 "gov.lk": &z[3312],
8587 "grp.lk": &z[3313],
8588 "hotel.lk": &z[3314],
8589 "int.lk": &z[3315],
8590 "ltd.lk": &z[3316],
8591 "net.lk": &z[3317],
8592 "ngo.lk": &z[3318],
8593 "org.lk": &z[3319],
8594 "sch.lk": &z[3320],
8595 "soc.lk": &z[3321],
8596 "web.lk": &z[3322],
8597 "com.lr": &z[3323],
8598 "edu.lr": &z[3324],
8599 "gov.lr": &z[3325],
8600 "net.lr": &z[3326],
8601 "org.lr": &z[3327],
8602 "vcom.lr": &z[3328],
8603 "ac.ls": &z[3329],
8604 "co.ls": &z[3330],
8605 "gov.ls": &z[3331],
8606 "net.ls": &z[3332],
8607 "org.ls": &z[3333],
8608 "parliament.ls": &z[3334],
8609 "gov.lt": &z[3335],
8610 "asn.lv": &z[3336],
8611 "com.lv": &z[3337],
8612 "conf.lv": &z[3338],
8613 "edu.lv": &z[3339],
8614 "gov.lv": &z[3340],
8615 "id.lv": &z[3341],
8616 "mil.lv": &z[3342],
8617 "net.lv": &z[3343],
8618 "org.lv": &z[3344],
8619 "com.ly": &z[3345],
8620 "edu.ly": &z[3346],
8621 "gov.ly": &z[3347],
8622 "id.ly": &z[3348],
8623 "med.ly": &z[3349],
8624 "net.ly": &z[3350],
8625 "org.ly": &z[3351],
8626 "plc.ly": &z[3352],
8627 "sch.ly": &z[3353],
8628 "ac.ma": &z[3354],
8629 "co.ma": &z[3355],
8630 "gov.ma": &z[3356],
8631 "net.ma": &z[3357],
8632 "org.ma": &z[3358],
8633 "press.ma": &z[3359],
8634 "asso.mc": &z[3360],
8635 "tm.mc": &z[3361],
8636 "ac.me": &z[3362],
8637 "co.me": &z[3363],
8638 "edu.me": &z[3364],
8639 "gov.me": &z[3365],
8640 "its.me": &z[3366],
8641 "net.me": &z[3367],
8642 "org.me": &z[3368],
8643 "priv.me": &z[3369],
8644 "co.mg": &z[3370],
8645 "com.mg": &z[3371],
8646 "edu.mg": &z[3372],
8647 "gov.mg": &z[3373],
8648 "in.mg": &z[3374],
8649 "mil.mg": &z[3375],
8650 "net.mg": &z[3376],
8651 "nom.mg": &z[3377],
8652 "org.mg": &z[3378],
8653 "prd.mg": &z[3379],
8654 "tm.mg": &z[3380],
8655 "com.mk": &z[3381],
8656 "edu.mk": &z[3382],
8657 "gov.mk": &z[3383],
8658 "inf.mk": &z[3384],
8659 "name.mk": &z[3385],
8660 "net.mk": &z[3386],
8661 "org.mk": &z[3387],
8662 "pro.mk": &z[3388],
8663 "com.ml": &z[3389],
8664 "edu.ml": &z[3390],
8665 "gov.ml": &z[3391],
8666 "net.ml": &z[3392],
8667 "org.ml": &z[3393],
8668 "presse.ml": &z[3394],
8669 "biz.mm": &z[3395],
8670 "com.mm": &z[3396],
8671 "edu.mm": &z[3397],
8672 "gov.mm": &z[3398],
8673 "mil.mm": &z[3399],
8674 "net.mm": &z[3400],
8675 "org.mm": &z[3401],
8676 "per.mm": &z[3402],
8677 "edu.mn": &z[3403],
8678 "gov.mn": &z[3404],
8679 "org.mn": &z[3405],
8680 "co.mo": &z[3406],
8681 "com.mo": &z[3407],
8682 "edu.mo": &z[3408],
8683 "gov.mo": &z[3409],
8684 "net.mo": &z[3410],
8685 "org.mo": &z[3411],
8686 "co.mp": &z[3412],
8687 "com.mp": &z[3413],
8688 "gov.mp": &z[3414],
8689 "org.mp": &z[3415],
8690 "edu.mr": &z[3416],
8691 "gov.mr": &z[3417],
8692 "org.mr": &z[3418],
8693 "perso.mr": &z[3419],
8694 "co.ms": &z[3420],
8695 "com.ms": &z[3421],
8696 "net.ms": &z[3422],
8697 "org.ms": &z[3423],
8698 "com.mt": &z[3424],
8699 "edu.mt": &z[3425],
8700 "gov.mt": &z[3426],
8701 "net.mt": &z[3427],
8702 "org.mt": &z[3428],
8703 "24.mu": &z[3429],
8704 "ac.mu": &z[3430],
8705 "co.mu": &z[3431],
8706 "com.mu": &z[3432],
8707 "gov.mu": &z[3433],
8708 "net.mu": &z[3434],
8709 "nom.mu": &z[3435],
8710 "or.mu": &z[3436],
8711 "org.mu": &z[3437],
8712 "aero.mv": &z[3438],
8713 "biz.mv": &z[3439],
8714 "com.mv": &z[3440],
8715 "coop.mv": &z[3441],
8716 "edu.mv": &z[3442],
8717 "gov.mv": &z[3443],
8718 "info.mv": &z[3444],
8719 "int.mv": &z[3445],
8720 "mil.mv": &z[3446],
8721 "museum.mv": &z[3447],
8722 "name.mv": &z[3448],
8723 "net.mv": &z[3449],
8724 "org.mv": &z[3450],
8725 "pro.mv": &z[3451],
8726 "ac.mw": &z[3452],
8727 "co.mw": &z[3453],
8728 "com.mw": &z[3454],
8729 "coop.mw": &z[3455],
8730 "edu.mw": &z[3456],
8731 "gov.mw": &z[3457],
8732 "int.mw": &z[3458],
8733 "museum.mw": &z[3459],
8734 "net.mw": &z[3460],
8735 "org.mw": &z[3461],
8736 "com.mx": &z[3462],
8737 "edu.mx": &z[3463],
8738 "gob.mx": &z[3464],
8739 "net.mx": &z[3465],
8740 "org.mx": &z[3466],
8741 "com.my": &z[3467],
8742 "edi.my": &z[3468],
8743 "edu.my": &z[3469],
8744 "gov.my": &z[3470],
8745 "mil.my": &z[3471],
8746 "name.my": &z[3472],
8747 "net.my": &z[3473],
8748 "org.my": &z[3474],
8749 "ac.mz": &z[3475],
8750 "adv.mz": &z[3476],
8751 "co.mz": &z[3477],
8752 "edu.mz": &z[3478],
8753 "gov.mz": &z[3479],
8754 "net.mz": &z[3480],
8755 "org.mz": &z[3481],
8756 "alt.na": &z[3482],
8757 "cc.na": &z[3483],
8758 "co.na": &z[3484],
8759 "com.na": &z[3485],
8760 "dr.na": &z[3486],
8761 "edu.na": &z[3487],
8762 "in.na": &z[3488],
8763 "info.na": &z[3489],
8764 "mobi.na": &z[3490],
8765 "name.na": &z[3491],
8766 "net.na": &z[3492],
8767 "of.na": &z[3493],
8768 "or.na": &z[3494],
8769 "org.na": &z[3495],
8770 "pro.na": &z[3496],
8771 "school.na": &z[3497],
8772 "tv.na": &z[3498],
8773 "ws.na": &z[3499],
8774 "kyrylkov.name": &z[3500],
8775 "puig.name": &z[3501],
8776 "santos.name": &z[3502],
8777 "asso.nc": &z[3503],
8778 "com.nc": &z[3504],
8779 "nom.nc": &z[3505],
8780 "com.ne": &z[3506],
8781 "info.ne": &z[3507],
8782 "int.ne": &z[3508],
8783 "org.ne": &z[3509],
8784 "perso.ne": &z[3510],
8785 "1x.net": &z[3511],
8786 "auz.net": &z[3512],
8787 "gb.net": &z[3513],
8788 "hu.net": &z[3514],
8789 "in.net": &z[3515],
8790 "jp.net": &z[3516],
8791 "ru.net": &z[3517],
8792 "se.net": &z[3518],
8793 "uk.net": &z[3519],
8794 "za.net": &z[3520],
8795 "arts.nf": &z[3521],
8796 "com.nf": &z[3522],
8797 "firm.nf": &z[3523],
8798 "info.nf": &z[3524],
8799 "net.nf": &z[3525],
8800 "org.nf": &z[3526],
8801 "other.nf": &z[3527],
8802 "per.nf": &z[3528],
8803 "rec.nf": &z[3529],
8804 "store.nf": &z[3530],
8805 "us.nf": &z[3531],
8806 "web.nf": &z[3532],
8807 "com.ng": &z[3533],
8808 "edu.ng": &z[3534],
8809 "gov.ng": &z[3535],
8810 "i.ng": &z[3536],
8811 "mil.ng": &z[3537],
8812 "mobi.ng": &z[3538],
8813 "name.ng": &z[3539],
8814 "net.ng": &z[3540],
8815 "org.ng": &z[3541],
8816 "sch.ng": &z[3542],
8817 "ac.ni": &z[3543],
8818 "biz.ni": &z[3544],
8819 "co.ni": &z[3545],
8820 "com.ni": &z[3546],
8821 "edu.ni": &z[3547],
8822 "gob.ni": &z[3548],
8823 "gov.ni": &z[3549],
8824 "in.ni": &z[3550],
8825 "info.ni": &z[3551],
8826 "int.ni": &z[3552],
8827 "mil.ni": &z[3553],
8828 "net.ni": &z[3554],
8829 "nom.ni": &z[3555],
8830 "org.ni": &z[3556],
8831 "web.ni": &z[3557],
8832 "24.nl": &z[3558],
8833 "co.nl": &z[3559],
8834 "com.nl": &z[3560],
8835 "net.nl": &z[3561],
8836 "nom.nl": &z[3562],
8837 "punt.nl": &z[3563],
8838 "co.no": &z[3564],
8839 "fhs.no": &z[3565],
8840 "folkebibl.no": &z[3566],
8841 "fylkesbibl.no": &z[3567],
8842 "gs.no": &z[3568],
8843 "idrett.no": &z[3569],
8844 "museum.no": &z[3570],
8845 "priv.no": &z[3571],
8846 "uenorge.no": &z[3572],
8847 "vgs.no": &z[3573],
8848 "academy.np": &z[3574],
8849 "accountants.np": &z[3575],
8850 "actor.np": &z[3576],
8851 "aero.np": &z[3577],
8852 "agency.np": &z[3578],
8853 "asia.np": &z[3579],
8854 "associates.np": &z[3580],
8855 "audio.np": &z[3581],
8856 "bar.np": &z[3582],
8857 "bargains.np": &z[3583],
8858 "beer.np": &z[3584],
8859 "bid.np": &z[3585],
8860 "bike.np": &z[3586],
8861 "bio.np": &z[3587],
8862 "biz.np": &z[3588],
8863 "black.np": &z[3589],
8864 "blue.np": &z[3590],
8865 "boutique.np": &z[3591],
8866 "build.np": &z[3592],
8867 "builders.np": &z[3593],
8868 "buzz.np": &z[3594],
8869 "cab.np": &z[3595],
8870 "camera.np": &z[3596],
8871 "camp.np": &z[3597],
8872 "capital.np": &z[3598],
8873 "cards.np": &z[3599],
8874 "care.np": &z[3600],
8875 "careers.np": &z[3601],
8876 "cash.np": &z[3602],
8877 "catering.np": &z[3603],
8878 "center.np": &z[3604],
8879 "ceo.np": &z[3605],
8880 "christmas.np": &z[3606],
8881 "clinic.np": &z[3607],
8882 "clothing.np": &z[3608],
8883 "club.np": &z[3609],
8884 "codes.np": &z[3610],
8885 "coffee.np": &z[3611],
8886 "college.np": &z[3612],
8887 "com.np": &z[3613],
8888 "community.np": &z[3614],
8889 "company.np": &z[3615],
8890 "computer.np": &z[3616],
8891 "cool.np": &z[3617],
8892 "coop.np": &z[3618],
8893 "country.np": &z[3619],
8894 "credit.np": &z[3620],
8895 "creditcard.np": &z[3621],
8896 "dental.np": &z[3622],
8897 "diamonds.np": &z[3623],
8898 "edu.np": &z[3624],
8899 "email.np": &z[3625],
8900 "engineering.np": &z[3626],
8901 "estate.np": &z[3627],
8902 "events.np": &z[3628],
8903 "expert.np": &z[3629],
8904 "finance.np": &z[3630],
8905 "financial.np": &z[3631],
8906 "fish.np": &z[3632],
8907 "fishing.np": &z[3633],
8908 "fitness.np": &z[3634],
8909 "flights.np": &z[3635],
8910 "florist.np": &z[3636],
8911 "fund.np": &z[3637],
8912 "furniture.np": &z[3638],
8913 "futbol.np": &z[3639],
8914 "gallery.np": &z[3640],
8915 "gov.np": &z[3641],
8916 "guitars.np": &z[3642],
8917 "guru.np": &z[3643],
8918 "hiphop.np": &z[3644],
8919 "hiv.np": &z[3645],
8920 "house.np": &z[3646],
8921 "industries.np": &z[3647],
8922 "info.np": &z[3648],
8923 "ink.np": &z[3649],
8924 "jobs.np": &z[3650],
8925 "limited.np": &z[3651],
8926 "link.np": &z[3652],
8927 "management.np": &z[3653],
8928 "marketing.np": &z[3654],
8929 "media.np": &z[3655],
8930 "menu.np": &z[3656],
8931 "mil.np": &z[3657],
8932 "mobi.np": &z[3658],
8933 "museum.np": &z[3659],
8934 "name.np": &z[3660],
8935 "net.np": &z[3661],
8936 "ninja.np": &z[3662],
8937 "onl.np": &z[3663],
8938 "org.np": &z[3664],
8939 "partners.np": &z[3665],
8940 "parts.np": &z[3666],
8941 "photo.np": &z[3667],
8942 "photos.np": &z[3668],
8943 "pics.np": &z[3669],
8944 "pink.np": &z[3670],
8945 "pro.np": &z[3671],
8946 "productions.np": &z[3672],
8947 "products.np": &z[3673],
8948 "properties.np": &z[3674],
8949 "pub.np": &z[3675],
8950 "red.np": &z[3676],
8951 "rentals.np": &z[3677],
8952 "repair.np": &z[3678],
8953 "rest.np": &z[3679],
8954 "rocks.np": &z[3680],
8955 "services.np": &z[3681],
8956 "shiksha.np": &z[3682],
8957 "shoes.np": &z[3683],
8958 "social.np": &z[3684],
8959 "solar.np": &z[3685],
8960 "solutions.np": &z[3686],
8961 "space.np": &z[3687],
8962 "supplies.np": &z[3688],
8963 "supply.np": &z[3689],
8964 "support.np": &z[3690],
8965 "surf.np": &z[3691],
8966 "surgery.np": &z[3692],
8967 "systems.np": &z[3693],
8968 "tattoo.np": &z[3694],
8969 "tax.np": &z[3695],
8970 "technology.np": &z[3696],
8971 "tel.np": &z[3697],
8972 "tips.np": &z[3698],
8973 "today.np": &z[3699],
8974 "tools.np": &z[3700],
8975 "town.np": &z[3701],
8976 "trade.np": &z[3702],
8977 "training.np": &z[3703],
8978 "travel.np": &z[3704],
8979 "university.np": &z[3705],
8980 "vacations.np": &z[3706],
8981 "ventures.np": &z[3707],
8982 "villas.np": &z[3708],
8983 "vision.np": &z[3709],
8984 "vodka.np": &z[3710],
8985 "voting.np": &z[3711],
8986 "voyage.np": &z[3712],
8987 "watch.np": &z[3713],
8988 "webcam.np": &z[3714],
8989 "wiki.np": &z[3715],
8990 "works.np": &z[3716],
8991 "wtf.np": &z[3717],
8992 "xyz.np": &z[3718],
8993 "zone.np": &z[3719],
8994 "biz.nr": &z[3720],
8995 "com.nr": &z[3721],
8996 "edu.nr": &z[3722],
8997 "gov.nr": &z[3723],
8998 "info.nr": &z[3724],
8999 "net.nr": &z[3725],
9000 "org.nr": &z[3726],
9001 "co.nu": &z[3727],
9002 "com.nu": &z[3728],
9003 "eu.nu": &z[3729],
9004 "ie.nu": &z[3730],
9005 "info.nu": &z[3731],
9006 "ac.nz": &z[3732],
9007 "co.nz": &z[3733],
9008 "cri.nz": &z[3734],
9009 "geek.nz": &z[3735],
9010 "gen.nz": &z[3736],
9011 "govt.nz": &z[3737],
9012 "health.nz": &z[3738],
9013 "iwi.nz": &z[3739],
9014 "kiwi.nz": &z[3740],
9015 "maori.nz": &z[3741],
9016 "mil.nz": &z[3742],
9017 "net.nz": &z[3743],
9018 "org.nz": &z[3744],
9019 "parliament.nz": &z[3745],
9020 "school.nz": &z[3746],
9021 "ac.om": &z[3747],
9022 "biz.om": &z[3748],
9023 "co.om": &z[3749],
9024 "com.om": &z[3750],
9025 "edu.om": &z[3751],
9026 "gov.om": &z[3752],
9027 "med.om": &z[3753],
9028 "mil.om": &z[3754],
9029 "museum.om": &z[3755],
9030 "net.om": &z[3756],
9031 "org.om": &z[3757],
9032 "pro.om": &z[3758],
9033 "sch.om": &z[3759],
9034 "ae.org": &z[3760],
9035 "eu.org": &z[3761],
9036 "hk.org": &z[3762],
9037 "js.org": &z[3763],
9038 "us.org": &z[3764],
9039 "za.org": &z[3765],
9040 "abo.pa": &z[3766],
9041 "ac.pa": &z[3767],
9042 "com.pa": &z[3768],
9043 "edu.pa": &z[3769],
9044 "gob.pa": &z[3770],
9045 "ing.pa": &z[3771],
9046 "med.pa": &z[3772],
9047 "net.pa": &z[3773],
9048 "nom.pa": &z[3774],
9049 "org.pa": &z[3775],
9050 "sld.pa": &z[3776],
9051 "com.pe": &z[3777],
9052 "edu.pe": &z[3778],
9053 "gob.pe": &z[3779],
9054 "gov.pe": &z[3780],
9055 "mil.pe": &z[3781],
9056 "net.pe": &z[3782],
9057 "nom.pe": &z[3783],
9058 "org.pe": &z[3784],
9059 "sld.pe": &z[3785],
9060 "asso.pf": &z[3786],
9061 "com.pf": &z[3787],
9062 "edu.pf": &z[3788],
9063 "gov.pf": &z[3789],
9064 "org.pf": &z[3790],
9065 "ac.pg": &z[3791],
9066 "com.pg": &z[3792],
9067 "gov.pg": &z[3793],
9068 "mil.pg": &z[3794],
9069 "net.pg": &z[3795],
9070 "org.pg": &z[3796],
9071 "com.ph": &z[3797],
9072 "edi.ph": &z[3798],
9073 "edu.ph": &z[3799],
9074 "gov.ph": &z[3800],
9075 "i.ph": &z[3801],
9076 "mil.ph": &z[3802],
9077 "net.ph": &z[3803],
9078 "ngo.ph": &z[3804],
9079 "org.ph": &z[3805],
9080 "biz.pk": &z[3806],
9081 "com.pk": &z[3807],
9082 "edu.pk": &z[3808],
9083 "fam.pk": &z[3809],
9084 "gkp.pk": &z[3810],
9085 "gob.pk": &z[3811],
9086 "gog.pk": &z[3812],
9087 "gok.pk": &z[3813],
9088 "gon.pk": &z[3814],
9089 "gop.pk": &z[3815],
9090 "gos.pk": &z[3816],
9091 "gov.pk": &z[3817],
9092 "net.pk": &z[3818],
9093 "org.pk": &z[3819],
9094 "web.pk": &z[3820],
9095 "agro.pl": &z[3821],
9096 "aid.pl": &z[3822],
9097 "art.pl": &z[3823],
9098 "atm.pl": &z[3824],
9099 "augustow.pl": &z[3825],
9100 "auto.pl": &z[3826],
9101 "babia-gora.pl": &z[3827],
9102 "bedzin.pl": &z[3828],
9103 "beskidy.pl": &z[3829],
9104 "bialowieza.pl": &z[3830],
9105 "bialystok.pl": &z[3831],
9106 "bielawa.pl": &z[3832],
9107 "bieszczady.pl": &z[3833],
9108 "biz.pl": &z[3834],
9109 "boleslawiec.pl": &z[3835],
9110 "bydgoszcz.pl": &z[3836],
9111 "bytom.pl": &z[3837],
9112 "ciesyn.pl": &z[3838],
9113 "cieszyn.pl": &z[3839],
9114 "co.pl": &z[3840],
9115 "com.pl": &z[3841],
9116 "czeladz.pl": &z[3842],
9117 "czest.pl": &z[3843],
9118 "dlugoleka.pl": &z[3844],
9119 "edu.pl": &z[3845],
9120 "elblag.pl": &z[3846],
9121 "elk.pl": &z[3847],
9122 "gda.pl": &z[3848],
9123 "gdansk.pl": &z[3849],
9124 "glogow.pl": &z[3850],
9125 "gmina.pl": &z[3851],
9126 "gniezno.pl": &z[3852],
9127 "gniezon.pl": &z[3853],
9128 "gorlice.pl": &z[3854],
9129 "gov.pl": &z[3855],
9130 "grajewo.pl": &z[3856],
9131 "gsm.pl": &z[3857],
9132 "ilawa.pl": &z[3858],
9133 "info.pl": &z[3859],
9134 "jaworzno.pl": &z[3860],
9135 "jaworzono.pl": &z[3861],
9136 "jelenia-gora.pl": &z[3862],
9137 "jgora.pl": &z[3863],
9138 "kalisz.pl": &z[3864],
9139 "karpacz.pl": &z[3865],
9140 "kartuzy.pl": &z[3866],
9141 "kaszuby.pl": &z[3867],
9142 "katowice.pl": &z[3868],
9143 "kazimierz-dolny.pl": &z[3869],
9144 "kepno.pl": &z[3870],
9145 "ketrzyn.pl": &z[3871],
9146 "klodzko.pl": &z[3872],
9147 "kobierzyce.pl": &z[3873],
9148 "kolobrzeg.pl": &z[3874],
9149 "konin.pl": &z[3875],
9150 "konskowola.pl": &z[3876],
9151 "krakow.pl": &z[3877],
9152 "ksazuby.pl": &z[3878],
9153 "kutno.pl": &z[3879],
9154 "lapy.pl": &z[3880],
9155 "lebork.pl": &z[3881],
9156 "legnica.pl": &z[3882],
9157 "lezajsk.pl": &z[3883],
9158 "limanowa.pl": &z[3884],
9159 "lodz.pl": &z[3885],
9160 "lomza.pl": &z[3886],
9161 "lowicz.pl": &z[3887],
9162 "lubin.pl": &z[3888],
9163 "lublin.pl": &z[3889],
9164 "lukow.pl": &z[3890],
9165 "mail.pl": &z[3891],
9166 "malbork.pl": &z[3892],
9167 "malopolska.pl": &z[3893],
9168 "mazowsze.pl": &z[3894],
9169 "mazury.pl": &z[3895],
9170 "media.pl": &z[3896],
9171 "miasta.pl": &z[3897],
9172 "mielec.pl": &z[3898],
9173 "mielno.pl": &z[3899],
9174 "mil.pl": &z[3900],
9175 "mragowo.pl": &z[3901],
9176 "naklo.pl": &z[3902],
9177 "net.pl": &z[3903],
9178 "ngo.pl": &z[3904],
9179 "nieruchomosci.pl": &z[3905],
9180 "nom.pl": &z[3906],
9181 "nowaruda.pl": &z[3907],
9182 "nysa.pl": &z[3908],
9183 "olawa.pl": &z[3909],
9184 "olecko.pl": &z[3910],
9185 "olkusz.pl": &z[3911],
9186 "olsztyn.pl": &z[3912],
9187 "opoczno.pl": &z[3913],
9188 "opole.pl": &z[3914],
9189 "org.pl": &z[3915],
9190 "ostroda.pl": &z[3916],
9191 "ostroleka.pl": &z[3917],
9192 "ostrowiec.pl": &z[3918],
9193 "ostrowwlkp.pl": &z[3919],
9194 "pc.pl": &z[3920],
9195 "pila.pl": &z[3921],
9196 "pisz.pl": &z[3922],
9197 "podhale.pl": &z[3923],
9198 "podlasie.pl": &z[3924],
9199 "polkowice.pl": &z[3925],
9200 "pomorskie.pl": &z[3926],
9201 "pomorze.pl": &z[3927],
9202 "powiat.pl": &z[3928],
9203 "poznan.pl": &z[3929],
9204 "priv.pl": &z[3930],
9205 "prochowice.pl": &z[3931],
9206 "pruszkow.pl": &z[3932],
9207 "przeworsk.pl": &z[3933],
9208 "pulawy.pl": &z[3934],
9209 "radom.pl": &z[3935],
9210 "rawa-maz.pl": &z[3936],
9211 "realestate.pl": &z[3937],
9212 "rel.pl": &z[3938],
9213 "rybnik.pl": &z[3939],
9214 "rzeszow.pl": &z[3940],
9215 "sanok.pl": &z[3941],
9216 "sejny.pl": &z[3942],
9217 "sex.pl": &z[3943],
9218 "shop.pl": &z[3944],
9219 "sklep.pl": &z[3945],
9220 "skoczow.pl": &z[3946],
9221 "slask.pl": &z[3947],
9222 "slupsk.pl": &z[3948],
9223 "sos.pl": &z[3949],
9224 "sosnowiec.pl": &z[3950],
9225 "stalowa-wola.pl": &z[3951],
9226 "starachowice.pl": &z[3952],
9227 "stargard.pl": &z[3953],
9228 "suwalki.pl": &z[3954],
9229 "swidnica.pl": &z[3955],
9230 "swiebodzin.pl": &z[3956],
9231 "swinoujscie.pl": &z[3957],
9232 "szczecin.pl": &z[3958],
9233 "szczytno.pl": &z[3959],
9234 "szkola.pl": &z[3960],
9235 "targi.pl": &z[3961],
9236 "tarnobrzeg.pl": &z[3962],
9237 "tgory.pl": &z[3963],
9238 "tm.pl": &z[3964],
9239 "torun.pl": &z[3965],
9240 "tourism.pl": &z[3966],
9241 "travel.pl": &z[3967],
9242 "turek.pl": &z[3968],
9243 "turystyka.pl": &z[3969],
9244 "tychy.pl": &z[3970],
9245 "ustka.pl": &z[3971],
9246 "walbrzych.pl": &z[3972],
9247 "warmia.pl": &z[3973],
9248 "warszawa.pl": &z[3974],
9249 "waw.pl": &z[3975],
9250 "wegrow.pl": &z[3976],
9251 "wielun.pl": &z[3977],
9252 "wlocl.pl": &z[3978],
9253 "wloclawek.pl": &z[3979],
9254 "wodzislaw.pl": &z[3980],
9255 "wolomin.pl": &z[3981],
9256 "wroc.pl": &z[3982],
9257 "wroclaw.pl": &z[3983],
9258 "zachpomor.pl": &z[3984],
9259 "zagan.pl": &z[3985],
9260 "zarow.pl": &z[3986],
9261 "zgora.pl": &z[3987],
9262 "zgorzelec.pl": &z[3988],
9263 "at.pn": &z[3989],
9264 "au.pn": &z[3990],
9265 "ca.pn": &z[3991],
9266 "ch.pn": &z[3992],
9267 "cn.pn": &z[3993],
9268 "co.pn": &z[3994],
9269 "de.pn": &z[3995],
9270 "edu.pn": &z[3996],
9271 "es.pn": &z[3997],
9272 "eu.pn": &z[3998],
9273 "fr.pn": &z[3999],
9274 "gov.pn": &z[4000],
9275 "in.pn": &z[4001],
9276 "it.pn": &z[4002],
9277 "jp.pn": &z[4003],
9278 "net.pn": &z[4004],
9279 "org.pn": &z[4005],
9280 "uk.pn": &z[4006],
9281 "us.pn": &z[4007],
9282 "ac.pr": &z[4008],
9283 "ag.pr": &z[4009],
9284 "ai.pr": &z[4010],
9285 "alumni.pr": &z[4011],
9286 "at.pr": &z[4012],
9287 "au.pr": &z[4013],
9288 "aw.pr": &z[4014],
9289 "bb.pr": &z[4015],
9290 "biz.pr": &z[4016],
9291 "bm.pr": &z[4017],
9292 "br.pr": &z[4018],
9293 "bs.pr": &z[4019],
9294 "ch.pr": &z[4020],
9295 "cl.pr": &z[4021],
9296 "cn.pr": &z[4022],
9297 "com.pr": &z[4023],
9298 "de.pr": &z[4024],
9299 "dm.pr": &z[4025],
9300 "do.pr": &z[4026],
9301 "edu.pr": &z[4027],
9302 "en.pr": &z[4028],
9303 "es.pr": &z[4029],
9304 "est.pr": &z[4030],
9305 "eu.pr": &z[4031],
9306 "exalumnos.pr": &z[4032],
9307 "fr.pr": &z[4033],
9308 "gd.pr": &z[4034],
9309 "gov.pr": &z[4035],
9310 "gp.pr": &z[4036],
9311 "ht.pr": &z[4037],
9312 "info.pr": &z[4038],
9313 "isla.pr": &z[4039],
9314 "it.pr": &z[4040],
9315 "jm.pr": &z[4041],
9316 "jp.pr": &z[4042],
9317 "ky.pr": &z[4043],
9318 "lc.pr": &z[4044],
9319 "ms.pr": &z[4045],
9320 "mx.pr": &z[4046],
9321 "name.pr": &z[4047],
9322 "net.pr": &z[4048],
9323 "nl.pr": &z[4049],
9324 "nom.pr": &z[4050],
9325 "org.pr": &z[4051],
9326 "pro.pr": &z[4052],
9327 "prof.pr": &z[4053],
9328 "tc.pr": &z[4054],
9329 "tt.pr": &z[4055],
9330 "uk.pr": &z[4056],
9331 "us.pr": &z[4057],
9332 "vg.pr": &z[4058],
9333 "vi.pr": &z[4059],
9334 "aaa.pro": &z[4060],
9335 "aca.pro": &z[4061],
9336 "acct.pro": &z[4062],
9337 "arc.pro": &z[4063],
9338 "avocat.pro": &z[4064],
9339 "bar.pro": &z[4065],
9340 "bus.pro": &z[4066],
9341 "cfp.pro": &z[4067],
9342 "chi.pro": &z[4068],
9343 "chiro.pro": &z[4069],
9344 "cpa.pro": &z[4070],
9345 "dds.pro": &z[4071],
9346 "den.pro": &z[4072],
9347 "dent.pro": &z[4073],
9348 "ed.pro": &z[4074],
9349 "eng.pro": &z[4075],
9350 "jur.pro": &z[4076],
9351 "law.pro": &z[4077],
9352 "med.pro": &z[4078],
9353 "min.pro": &z[4079],
9354 "nitr.pro": &z[4080],
9355 "nur.pro": &z[4081],
9356 "nurse.pro": &z[4082],
9357 "opt.pro": &z[4083],
9358 "pa.pro": &z[4084],
9359 "pha.pro": &z[4085],
9360 "pharma.pro": &z[4086],
9361 "pod.pro": &z[4087],
9362 "pr.pro": &z[4088],
9363 "prof.pro": &z[4089],
9364 "prx.pro": &z[4090],
9365 "pt.pro": &z[4091],
9366 "recht.pro": &z[4092],
9367 "rel.pro": &z[4093],
9368 "teach.pro": &z[4094],
9369 "vet.pro": &z[4095],
9370 "com.ps": &z[4096],
9371 "edu.ps": &z[4097],
9372 "gov.ps": &z[4098],
9373 "mobi.ps": &z[4099],
9374 "mun.ps": &z[4100],
9375 "net.ps": &z[4101],
9376 "org.ps": &z[4102],
9377 "plo.ps": &z[4103],
9378 "sch.ps": &z[4104],
9379 "co.pt": &z[4105],
9380 "com.pt": &z[4106],
9381 "edu.pt": &z[4107],
9382 "gov.pt": &z[4108],
9383 "int.pt": &z[4109],
9384 "net.pt": &z[4110],
9385 "nome.pt": &z[4111],
9386 "org.pt": &z[4112],
9387 "publ.pt": &z[4113],
9388 "belau.pw": &z[4114],
9389 "co.pw": &z[4115],
9390 "com.pw": &z[4116],
9391 "ed.pw": &z[4117],
9392 "edu.pw": &z[4118],
9393 "go.pw": &z[4119],
9394 "gov.pw": &z[4120],
9395 "ne.pw": &z[4121],
9396 "net.pw": &z[4122],
9397 "or.pw": &z[4123],
9398 "org.pw": &z[4124],
9399 "com.py": &z[4125],
9400 "coop.py": &z[4126],
9401 "edu.py": &z[4127],
9402 "gov.py": &z[4128],
9403 "mil.py": &z[4129],
9404 "net.py": &z[4130],
9405 "org.py": &z[4131],
9406 "una.py": &z[4132],
9407 "com.qa": &z[4133],
9408 "edu.qa": &z[4134],
9409 "gov.qa": &z[4135],
9410 "mil.qa": &z[4136],
9411 "name.qa": &z[4137],
9412 "net.qa": &z[4138],
9413 "org.qa": &z[4139],
9414 "sch.qa": &z[4140],
9415 "asso.re": &z[4141],
9416 "com.re": &z[4142],
9417 "nom.re": &z[4143],
9418 "arts.ro": &z[4144],
9419 "co.ro": &z[4145],
9420 "com.ro": &z[4146],
9421 "firm.ro": &z[4147],
9422 "info.ro": &z[4148],
9423 "ne.ro": &z[4149],
9424 "nom.ro": &z[4150],
9425 "nt.ro": &z[4151],
9426 "or.ro": &z[4152],
9427 "org.ro": &z[4153],
9428 "rec.ro": &z[4154],
9429 "ro.ro": &z[4155],
9430 "sa.ro": &z[4156],
9431 "srl.ro": &z[4157],
9432 "store.ro": &z[4158],
9433 "tm.ro": &z[4159],
9434 "www.ro": &z[4160],
9435 "ac.rs": &z[4161],
9436 "co.rs": &z[4162],
9437 "edu.rs": &z[4163],
9438 "gov.rs": &z[4164],
9439 "in.rs": &z[4165],
9440 "org.rs": &z[4166],
9441 "ac.ru": &z[4167],
9442 "adygeya.ru": &z[4168],
9443 "bashkiria.ru": &z[4169],
9444 "bir.ru": &z[4170],
9445 "cbg.ru": &z[4171],
9446 "com.ru": &z[4172],
9447 "dagestan.ru": &z[4173],
9448 "edu.ru": &z[4174],
9449 "gov.ru": &z[4175],
9450 "grozny.ru": &z[4176],
9451 "int.ru": &z[4177],
9452 "kalmykia.ru": &z[4178],
9453 "kustanai.ru": &z[4179],
9454 "marine.ru": &z[4180],
9455 "mil.ru": &z[4181],
9456 "mordovia.ru": &z[4182],
9457 "msk.ru": &z[4183],
9458 "mytis.ru": &z[4184],
9459 "nalchik.ru": &z[4185],
9460 "net.ru": &z[4186],
9461 "nov.ru": &z[4187],
9462 "org.ru": &z[4188],
9463 "pp.ru": &z[4189],
9464 "pyatigorsk.ru": &z[4190],
9465 "relarn.ru": &z[4191],
9466 "spb.ru": &z[4192],
9467 "vladikavkaz.ru": &z[4193],
9468 "vladimir.ru": &z[4194],
9469 "ac.rw": &z[4195],
9470 "co.rw": &z[4196],
9471 "com.rw": &z[4197],
9472 "edu.rw": &z[4198],
9473 "gouv.rw": &z[4199],
9474 "gov.rw": &z[4200],
9475 "int.rw": &z[4201],
9476 "mil.rw": &z[4202],
9477 "net.rw": &z[4203],
9478 "org.rw": &z[4204],
9479 "com.sa": &z[4205],
9480 "edu.sa": &z[4206],
9481 "gov.sa": &z[4207],
9482 "med.sa": &z[4208],
9483 "net.sa": &z[4209],
9484 "org.sa": &z[4210],
9485 "pub.sa": &z[4211],
9486 "sch.sa": &z[4212],
9487 "com.sb": &z[4213],
9488 "edu.sb": &z[4214],
9489 "gov.sb": &z[4215],
9490 "net.sb": &z[4216],
9491 "org.sb": &z[4217],
9492 "com.sc": &z[4218],
9493 "edu.sc": &z[4219],
9494 "gov.sc": &z[4220],
9495 "net.sc": &z[4221],
9496 "org.sc": &z[4222],
9497 "com.sd": &z[4223],
9498 "edu.sd": &z[4224],
9499 "gov.sd": &z[4225],
9500 "info.sd": &z[4226],
9501 "med.sd": &z[4227],
9502 "net.sd": &z[4228],
9503 "org.sd": &z[4229],
9504 "tv.sd": &z[4230],
9505 "a.se": &z[4231],
9506 "ac.se": &z[4232],
9507 "b.se": &z[4233],
9508 "bd.se": &z[4234],
9509 "c.se": &z[4235],
9510 "com.se": &z[4236],
9511 "d.se": &z[4237],
9512 "e.se": &z[4238],
9513 "f.se": &z[4239],
9514 "g.se": &z[4240],
9515 "h.se": &z[4241],
9516 "i.se": &z[4242],
9517 "k.se": &z[4243],
9518 "l.se": &z[4244],
9519 "m.se": &z[4245],
9520 "mil.se": &z[4246],
9521 "n.se": &z[4247],
9522 "o.se": &z[4248],
9523 "org.se": &z[4249],
9524 "p.se": &z[4250],
9525 "parti.se": &z[4251],
9526 "pp.se": &z[4252],
9527 "press.se": &z[4253],
9528 "r.se": &z[4254],
9529 "s.se": &z[4255],
9530 "t.se": &z[4256],
9531 "tm.se": &z[4257],
9532 "u.se": &z[4258],
9533 "w.se": &z[4259],
9534 "x.se": &z[4260],
9535 "y.se": &z[4261],
9536 "z.se": &z[4262],
9537 "com.sg": &z[4263],
9538 "edu.sg": &z[4264],
9539 "gov.sg": &z[4265],
9540 "net.sg": &z[4266],
9541 "org.sg": &z[4267],
9542 "per.sg": &z[4268],
9543 "co.sh": &z[4269],
9544 "com.sh": &z[4270],
9545 "edu.sh": &z[4271],
9546 "gov.sh": &z[4272],
9547 "net.sh": &z[4273],
9548 "nom.sh": &z[4274],
9549 "org.sh": &z[4275],
9550 "ae.si": &z[4276],
9551 "at.si": &z[4277],
9552 "cn.si": &z[4278],
9553 "co.si": &z[4279],
9554 "de.si": &z[4280],
9555 "uk.si": &z[4281],
9556 "us.si": &z[4282],
9557 "com.sl": &z[4283],
9558 "edu.sl": &z[4284],
9559 "gov.sl": &z[4285],
9560 "net.sl": &z[4286],
9561 "org.sl": &z[4287],
9562 "art.sn": &z[4288],
9563 "com.sn": &z[4289],
9564 "edu.sn": &z[4290],
9565 "gouv.sn": &z[4291],
9566 "org.sn": &z[4292],
9567 "perso.sn": &z[4293],
9568 "univ.sn": &z[4294],
9569 "com.so": &z[4295],
9570 "edu.so": &z[4296],
9571 "net.so": &z[4297],
9572 "org.so": &z[4298],
9573 "uber.space": &z[4299],
9574 "biz.ss": &z[4300],
9575 "com.ss": &z[4301],
9576 "edu.ss": &z[4302],
9577 "me.ss": &z[4303],
9578 "net.ss": &z[4304],
9579 "org.ss": &z[4305],
9580 "sch.ss": &z[4306],
9581 "co.st": &z[4307],
9582 "com.st": &z[4308],
9583 "consulado.st": &z[4309],
9584 "edu.st": &z[4310],
9585 "embaixada.st": &z[4311],
9586 "embaizada.st": &z[4312],
9587 "gov.st": &z[4313],
9588 "mil.st": &z[4314],
9589 "net.st": &z[4315],
9590 "org.st": &z[4316],
9591 "principe.st": &z[4317],
9592 "saotome.st": &z[4318],
9593 "store.st": &z[4319],
9594 "abkhazia.su": &z[4320],
9595 "adygeya.su": &z[4321],
9596 "aktyubinsk.su": &z[4322],
9597 "arkhangelsk.su": &z[4323],
9598 "armenia.su": &z[4324],
9599 "ashgabad.su": &z[4325],
9600 "azerbaijan.su": &z[4326],
9601 "balashov.su": &z[4327],
9602 "bashkiria.su": &z[4328],
9603 "bryansk.su": &z[4329],
9604 "bukhara.su": &z[4330],
9605 "chimkent.su": &z[4331],
9606 "dagestan.su": &z[4332],
9607 "east-kazakhstan.su": &z[4333],
9608 "exnet.su": &z[4334],
9609 "georgia.su": &z[4335],
9610 "grozny.su": &z[4336],
9611 "ivanovo.su": &z[4337],
9612 "jambyl.su": &z[4338],
9613 "kalmykia.su": &z[4339],
9614 "kaluga.su": &z[4340],
9615 "karacol.su": &z[4341],
9616 "karaganda.su": &z[4342],
9617 "karelia.su": &z[4343],
9618 "khakassia.su": &z[4344],
9619 "krasnodar.su": &z[4345],
9620 "kurgan.su": &z[4346],
9621 "kustanai.su": &z[4347],
9622 "lenug.su": &z[4348],
9623 "mangyshlak.su": &z[4349],
9624 "mordovia.su": &z[4350],
9625 "msk.su": &z[4351],
9626 "murmansk.su": &z[4352],
9627 "nalchik.su": &z[4353],
9628 "navoi.su": &z[4354],
9629 "north-kazakhstan.su": &z[4355],
9630 "nov.su": &z[4356],
9631 "obninsk.su": &z[4357],
9632 "penza.su": &z[4358],
9633 "pokrovsk.su": &z[4359],
9634 "sochi.su": &z[4360],
9635 "spb.su": &z[4361],
9636 "tashkent.su": &z[4362],
9637 "termez.su": &z[4363],
9638 "togliatti.su": &z[4364],
9639 "troitsk.su": &z[4365],
9640 "tselinograd.su": &z[4366],
9641 "tula.su": &z[4367],
9642 "tuva.su": &z[4368],
9643 "vladikavkaz.su": &z[4369],
9644 "vladimir.su": &z[4370],
9645 "vologda.su": &z[4371],
9646 "com.sv": &z[4372],
9647 "edu.sv": &z[4373],
9648 "gob.sv": &z[4374],
9649 "org.sv": &z[4375],
9650 "red.sv": &z[4376],
9651 "com.sy": &z[4377],
9652 "edu.sy": &z[4378],
9653 "gov.sy": &z[4379],
9654 "mil.sy": &z[4380],
9655 "net.sy": &z[4381],
9656 "org.sy": &z[4382],
9657 "ac.sz": &z[4383],
9658 "co.sz": &z[4384],
9659 "org.sz": &z[4385],
9660 "at.tc": &z[4386],
9661 "au.tc": &z[4387],
9662 "be.tc": &z[4388],
9663 "bg.tc": &z[4389],
9664 "biz.tc": &z[4390],
9665 "br.tc": &z[4391],
9666 "ch.tc": &z[4392],
9667 "com.tc": &z[4393],
9668 "cz.tc": &z[4394],
9669 "de.tc": &z[4395],
9670 "dk.tc": &z[4396],
9671 "edu.tc": &z[4397],
9672 "es.tc": &z[4398],
9673 "eu.tc": &z[4399],
9674 "hk.tc": &z[4400],
9675 "hu.tc": &z[4401],
9676 "ie.tc": &z[4402],
9677 "int.tc": &z[4403],
9678 "it.tc": &z[4404],
9679 "kr.tc": &z[4405],
9680 "mx.tc": &z[4406],
9681 "net.tc": &z[4407],
9682 "no.tc": &z[4408],
9683 "org.tc": &z[4409],
9684 "ph.tc": &z[4410],
9685 "pl.tc": &z[4411],
9686 "pro.tc": &z[4412],
9687 "ru.tc": &z[4413],
9688 "se.tc": &z[4414],
9689 "shop.tc": &z[4415],
9690 "th.tc": &z[4416],
9691 "ua.tc": &z[4417],
9692 "uk.tc": &z[4418],
9693 "us.tc": &z[4419],
9694 "com.td": &z[4420],
9695 "net.td": &z[4421],
9696 "org.td": &z[4422],
9697 "tourism.td": &z[4423],
9698 "at.tf": &z[4424],
9699 "bg.tf": &z[4425],
9700 "ca.tf": &z[4426],
9701 "ch.tf": &z[4427],
9702 "cz.tf": &z[4428],
9703 "de.tf": &z[4429],
9704 "edu.tf": &z[4430],
9705 "eu.tf": &z[4431],
9706 "int.tf": &z[4432],
9707 "net.tf": &z[4433],
9708 "pl.tf": &z[4434],
9709 "ru.tf": &z[4435],
9710 "sg.tf": &z[4436],
9711 "us.tf": &z[4437],
9712 "ac.th": &z[4438],
9713 "co.th": &z[4439],
9714 "go.th": &z[4440],
9715 "in.th": &z[4441],
9716 "mi.th": &z[4442],
9717 "net.th": &z[4443],
9718 "or.th": &z[4444],
9719 "ac.tj": &z[4445],
9720 "aero.tj": &z[4446],
9721 "biz.tj": &z[4447],
9722 "co.tj": &z[4448],
9723 "com.tj": &z[4449],
9724 "coop.tj": &z[4450],
9725 "dyn.tj": &z[4451],
9726 "edu.tj": &z[4452],
9727 "go.tj": &z[4453],
9728 "gov.tj": &z[4454],
9729 "info.tj": &z[4455],
9730 "int.tj": &z[4456],
9731 "mil.tj": &z[4457],
9732 "museum.tj": &z[4458],
9733 "my.tj": &z[4459],
9734 "name.tj": &z[4460],
9735 "net.tj": &z[4461],
9736 "org.tj": &z[4462],
9737 "per.tj": &z[4463],
9738 "pro.tj": &z[4464],
9739 "web.tj": &z[4465],
9740 "24.tl": &z[4466],
9741 "com.tl": &z[4467],
9742 "gov.tl": &z[4468],
9743 "in.tl": &z[4469],
9744 "na.tl": &z[4470],
9745 "net.tl": &z[4471],
9746 "org.tl": &z[4472],
9747 "co.tm": &z[4473],
9748 "com.tm": &z[4474],
9749 "edu.tm": &z[4475],
9750 "gov.tm": &z[4476],
9751 "mil.tm": &z[4477],
9752 "net.tm": &z[4478],
9753 "nom.tm": &z[4479],
9754 "org.tm": &z[4480],
9755 "agrinet.tn": &z[4481],
9756 "com.tn": &z[4482],
9757 "defense.tn": &z[4483],
9758 "edunet.tn": &z[4484],
9759 "ens.tn": &z[4485],
9760 "fin.tn": &z[4486],
9761 "gov.tn": &z[4487],
9762 "ind.tn": &z[4488],
9763 "info.tn": &z[4489],
9764 "intl.tn": &z[4490],
9765 "mincom.tn": &z[4491],
9766 "nat.tn": &z[4492],
9767 "net.tn": &z[4493],
9768 "org.tn": &z[4494],
9769 "perso.tn": &z[4495],
9770 "rnrt.tn": &z[4496],
9771 "rns.tn": &z[4497],
9772 "rnu.tn": &z[4498],
9773 "tourism.tn": &z[4499],
9774 "com.tp": &z[4500],
9775 "or.tp": &z[4501],
9776 "org.tp": &z[4502],
9777 "av.tr": &z[4503],
9778 "bbs.tr": &z[4504],
9779 "bel.tr": &z[4505],
9780 "biz.tr": &z[4506],
9781 "com.tr": &z[4507],
9782 "dr.tr": &z[4508],
9783 "edu.tr": &z[4509],
9784 "gen.tr": &z[4510],
9785 "gov.tr": &z[4511],
9786 "info.tr": &z[4512],
9787 "k12.tr": &z[4513],
9788 "mil.tr": &z[4514],
9789 "name.tr": &z[4515],
9790 "nc.tr": &z[4516],
9791 "net.tr": &z[4517],
9792 "org.tr": &z[4518],
9793 "pol.tr": &z[4519],
9794 "tel.tr": &z[4520],
9795 "tsk.tr": &z[4521],
9796 "tv.tr": &z[4522],
9797 "web.tr": &z[4523],
9798 "aero.tt": &z[4524],
9799 "at.tt": &z[4525],
9800 "au.tt": &z[4526],
9801 "be.tt": &z[4527],
9802 "biz.tt": &z[4528],
9803 "ca.tt": &z[4529],
9804 "cat.tt": &z[4530],
9805 "ch.tt": &z[4531],
9806 "co.tt": &z[4532],
9807 "com.tt": &z[4533],
9808 "coop.tt": &z[4534],
9809 "de.tt": &z[4535],
9810 "edu.tt": &z[4536],
9811 "es.tt": &z[4537],
9812 "eu.tt": &z[4538],
9813 "fr.tt": &z[4539],
9814 "gov.tt": &z[4540],
9815 "info.tt": &z[4541],
9816 "int.tt": &z[4542],
9817 "it.tt": &z[4543],
9818 "jobs.tt": &z[4544],
9819 "mobi.tt": &z[4545],
9820 "museum.tt": &z[4546],
9821 "name.tt": &z[4547],
9822 "net.tt": &z[4548],
9823 "nl.tt": &z[4549],
9824 "org.tt": &z[4550],
9825 "pro.tt": &z[4551],
9826 "tel.tt": &z[4552],
9827 "travel.tt": &z[4553],
9828 "uk.tt": &z[4554],
9829 "us.tt": &z[4555],
9830 "club.tw": &z[4556],
9831 "com.tw": &z[4557],
9832 "ebiz.tw": &z[4558],
9833 "edu.tw": &z[4559],
9834 "game.tw": &z[4560],
9835 "gov.tw": &z[4561],
9836 "idv.tw": &z[4562],
9837 "mil.tw": &z[4563],
9838 "net.tw": &z[4564],
9839 "org.tw": &z[4565],
9840 "xn--czrw28b.tw": &z[4566], // 商業.tw
9841 "xn--uc0atv.tw": &z[4567], // 組織.tw
9842 "xn--zf0ao64a.tw": &z[4568], // 網路.tw
9843 "ac.tz": &z[4569],
9844 "co.tz": &z[4570],
9845 "go.tz": &z[4571],
9846 "hotel.tz": &z[4572],
9847 "info.tz": &z[4573],
9848 "me.tz": &z[4574],
9849 "mil.tz": &z[4575],
9850 "mobi.tz": &z[4576],
9851 "ne.tz": &z[4577],
9852 "or.tz": &z[4578],
9853 "sc.tz": &z[4579],
9854 "tv.tz": &z[4580],
9855 "biz.ua": &z[4581],
9856 "cherkassy.ua": &z[4582],
9857 "cherkasy.ua": &z[4583],
9858 "chernigov.ua": &z[4584],
9859 "chernivtsi.ua": &z[4585],
9860 "chernovtsy.ua": &z[4586],
9861 "ck.ua": &z[4587],
9862 "cn.ua": &z[4588],
9863 "co.ua": &z[4589],
9864 "com.ua": &z[4590],
9865 "crimea.ua": &z[4591],
9866 "cv.ua": &z[4592],
9867 "dn.ua": &z[4593],
9868 "dnepropetrovsk.ua": &z[4594],
9869 "dnipropetrovsk.ua": &z[4595],
9870 "donetsk.ua": &z[4596],
9871 "dp.ua": &z[4597],
9872 "edu.ua": &z[4598],
9873 "gov.ua": &z[4599],
9874 "if.ua": &z[4600],
9875 "in.ua": &z[4601],
9876 "ivano-frankivsk.ua": &z[4602],
9877 "kh.ua": &z[4603],
9878 "kharkiv.ua": &z[4604],
9879 "kharkov.ua": &z[4605],
9880 "kherson.ua": &z[4606],
9881 "khmelnitskiy.ua": &z[4607],
9882 "kiev.ua": &z[4608],
9883 "kirovograd.ua": &z[4609],
9884 "km.ua": &z[4610],
9885 "kr.ua": &z[4611],
9886 "ks.ua": &z[4612],
9887 "kyiv.ua": &z[4613],
9888 "lg.ua": &z[4614],
9889 "lt.ua": &z[4615],
9890 "lugansk.ua": &z[4616],
9891 "lutsk.ua": &z[4617],
9892 "lviv.ua": &z[4618],
9893 "mk.ua": &z[4619],
9894 "net.ua": &z[4620],
9895 "nikolaev.ua": &z[4621],
9896 "od.ua": &z[4622],
9897 "odesa.ua": &z[4623],
9898 "odessa.ua": &z[4624],
9899 "org.ua": &z[4625],
9900 "pl.ua": &z[4626],
9901 "poltava.ua": &z[4627],
9902 "pp.ua": &z[4628],
9903 "rivne.ua": &z[4629],
9904 "rovno.ua": &z[4630],
9905 "rv.ua": &z[4631],
9906 "sebastopol.ua": &z[4632],
9907 "sm.ua": &z[4633],
9908 "sumy.ua": &z[4634],
9909 "te.ua": &z[4635],
9910 "ternopil.ua": &z[4636],
9911 "uz.ua": &z[4637],
9912 "uzhgorod.ua": &z[4638],
9913 "vinnica.ua": &z[4639],
9914 "vn.ua": &z[4640],
9915 "volyn.ua": &z[4641],
9916 "yalta.ua": &z[4642],
9917 "zaporizhzhe.ua": &z[4643],
9918 "zhitomir.ua": &z[4644],
9919 "zp.ua": &z[4645],
9920 "zt.ua": &z[4646],
9921 "ac.ug": &z[4647],
9922 "co.ug": &z[4648],
9923 "com.ug": &z[4649],
9924 "go.ug": &z[4650],
9925 "mil.ug": &z[4651],
9926 "ne.ug": &z[4652],
9927 "or.ug": &z[4653],
9928 "org.ug": &z[4654],
9929 "sc.ug": &z[4655],
9930 "ac.uk": &z[4656],
9931 "co.uk": &z[4657],
9932 "gov.uk": &z[4658],
9933 "ltd.uk": &z[4659],
9934 "me.uk": &z[4660],
9935 "mod.uk": &z[4661],
9936 "net.uk": &z[4662],
9937 "org.uk": &z[4663],
9938 "plc.uk": &z[4664],
9939 "sch.uk": &z[4665],
9940 "ak.us": &z[4666],
9941 "al.us": &z[4667],
9942 "ar.us": &z[4668],
9943 "as.us": &z[4669],
9944 "az.us": &z[4670],
9945 "ca.us": &z[4671],
9946 "co.us": &z[4672],
9947 "ct.us": &z[4673],
9948 "dc.us": &z[4674],
9949 "de.us": &z[4675],
9950 "dni.us": &z[4676],
9951 "fed.us": &z[4677],
9952 "fl.us": &z[4678],
9953 "ga.us": &z[4679],
9954 "gu.us": &z[4680],
9955 "hi.us": &z[4681],
9956 "ia.us": &z[4682],
9957 "id.us": &z[4683],
9958 "il.us": &z[4684],
9959 "in.us": &z[4685],
9960 "isa.us": &z[4686],
9961 "kids.us": &z[4687],
9962 "ks.us": &z[4688],
9963 "ky.us": &z[4689],
9964 "la.us": &z[4690],
9965 "ma.us": &z[4691],
9966 "md.us": &z[4692],
9967 "me.us": &z[4693],
9968 "mi.us": &z[4694],
9969 "mn.us": &z[4695],
9970 "mo.us": &z[4696],
9971 "ms.us": &z[4697],
9972 "mt.us": &z[4698],
9973 "nc.us": &z[4699],
9974 "nd.us": &z[4700],
9975 "ne.us": &z[4701],
9976 "nh.us": &z[4702],
9977 "nj.us": &z[4703],
9978 "nm.us": &z[4704],
9979 "nsn.us": &z[4705],
9980 "nv.us": &z[4706],
9981 "ny.us": &z[4707],
9982 "oh.us": &z[4708],
9983 "ok.us": &z[4709],
9984 "or.us": &z[4710],
9985 "pa.us": &z[4711],
9986 "pr.us": &z[4712],
9987 "ri.us": &z[4713],
9988 "sc.us": &z[4714],
9989 "sd.us": &z[4715],
9990 "tn.us": &z[4716],
9991 "tx.us": &z[4717],
9992 "ut.us": &z[4718],
9993 "va.us": &z[4719],
9994 "vi.us": &z[4720],
9995 "vt.us": &z[4721],
9996 "wa.us": &z[4722],
9997 "wi.us": &z[4723],
9998 "wv.us": &z[4724],
9999 "wy.us": &z[4725],
10000 "com.uy": &z[4726],
10001 "edu.uy": &z[4727],
10002 "gub.uy": &z[4728],
10003 "mil.uy": &z[4729],
10004 "net.uy": &z[4730],
10005 "org.uy": &z[4731],
10006 "ac.uz": &z[4732],
10007 "aero.uz": &z[4733],
10008 "biz.uz": &z[4734],
10009 "co.uz": &z[4735],
10010 "com.uz": &z[4736],
10011 "coop.uz": &z[4737],
10012 "edu.uz": &z[4738],
10013 "info.uz": &z[4739],
10014 "int.uz": &z[4740],
10015 "museum.uz": &z[4741],
10016 "name.uz": &z[4742],
10017 "net.uz": &z[4743],
10018 "org.uz": &z[4744],
10019 "pro.uz": &z[4745],
10020 "com.vc": &z[4746],
10021 "net.vc": &z[4747],
10022 "org.vc": &z[4748],
10023 "co.ve": &z[4749],
10024 "com.ve": &z[4750],
10025 "edu.ve": &z[4751],
10026 "gob.ve": &z[4752],
10027 "info.ve": &z[4753],
10028 "int.ve": &z[4754],
10029 "mil.ve": &z[4755],
10030 "net.ve": &z[4756],
10031 "org.ve": &z[4757],
10032 "tec.ve": &z[4758],
10033 "web.ve": &z[4759],
10034 "pro.vg": &z[4760],
10035 "biz.vi": &z[4761],
10036 "co.vi": &z[4762],
10037 "com.vi": &z[4763],
10038 "k12.vi": &z[4764],
10039 "net.vi": &z[4765],
10040 "org.vi": &z[4766],
10041 "ac.vn": &z[4767],
10042 "biz.vn": &z[4768],
10043 "com.vn": &z[4769],
10044 "edu.vn": &z[4770],
10045 "gov.vn": &z[4771],
10046 "health.vn": &z[4772],
10047 "info.vn": &z[4773],
10048 "int.vn": &z[4774],
10049 "name.vn": &z[4775],
10050 "net.vn": &z[4776],
10051 "org.vn": &z[4777],
10052 "pro.vn": &z[4778],
10053 "co.vu": &z[4779],
10054 "com.vu": &z[4780],
10055 "name.vu": &z[4781],
10056 "net.vu": &z[4782],
10057 "org.vu": &z[4783],
10058 "com.ws": &z[4784],
10059 "edu.ws": &z[4785],
10060 "gov.ws": &z[4786],
10061 "net.ws": &z[4787],
10062 "org.ws": &z[4788],
10063 "co.ye": &z[4789],
10064 "com.ye": &z[4790],
10065 "gov.ye": &z[4791],
10066 "ltd.ye": &z[4792],
10067 "me.ye": &z[4793],
10068 "net.ye": &z[4794],
10069 "org.ye": &z[4795],
10070 "plc.ye": &z[4796],
10071 "ac.yu": &z[4797],
10072 "cg.yu": &z[4798],
10073 "co.yu": &z[4799],
10074 "edu.yu": &z[4800],
10075 "gov.yu": &z[4801],
10076 "org.yu": &z[4802],
10077 "ac.za": &z[4803],
10078 "agric.za": &z[4804],
10079 "alt.za": &z[4805],
10080 "bourse.za": &z[4806],
10081 "city.za": &z[4807],
10082 "co.za": &z[4808],
10083 "cybernet.za": &z[4809],
10084 "db.za": &z[4810],
10085 "edu.za": &z[4811],
10086 "gov.za": &z[4812],
10087 "grondar.za": &z[4813],
10088 "iaccess.za": &z[4814],
10089 "imt.za": &z[4815],
10090 "inca.za": &z[4816],
10091 "landesign.za": &z[4817],
10092 "law.za": &z[4818],
10093 "mil.za": &z[4819],
10094 "net.za": &z[4820],
10095 "ngo.za": &z[4821],
10096 "nis.za": &z[4822],
10097 "nom.za": &z[4823],
10098 "olivetti.za": &z[4824],
10099 "org.za": &z[4825],
10100 "pix.za": &z[4826],
10101 "school.za": &z[4827],
10102 "tm.za": &z[4828],
10103 "web.za": &z[4829],
10104 "ac.zm": &z[4830],
10105 "co.zm": &z[4831],
10106 "com.zm": &z[4832],
10107 "edu.zm": &z[4833],
10108 "gov.zm": &z[4834],
10109 "net.zm": &z[4835],
10110 "org.zm": &z[4836],
10111 "sch.zm": &z[4837],
10112 "ac.zw": &z[4838],
10113 "co.zw": &z[4839],
10114 "com.zw": &z[4840],
10115 "org.zw": &z[4841],
10116 "001.xn--p1acf": &z[4842], // 001.рус
10117 "002.xn--p1acf": &z[4843], // 002.рус
10118 "003.xn--p1acf": &z[4844], // 003.рус
10119 "004.xn--p1acf": &z[4845], // 004.рус
10120 "005.xn--p1acf": &z[4846], // 005.рус
10121 "006.xn--p1acf": &z[4847], // 006.рус
10122 "007.xn--p1acf": &z[4848], // 007.рус
10123 "008.xn--p1acf": &z[4849], // 008.рус
10124 "009.xn--p1acf": &z[4850], // 009.рус
10125 "010.xn--p1acf": &z[4851], // 010.рус
10126 "011.xn--p1acf": &z[4852], // 011.рус
10127 "012.xn--p1acf": &z[4853], // 012.рус
10128 "013.xn--p1acf": &z[4854], // 013.рус
10129 "014.xn--p1acf": &z[4855], // 014.рус
10130 "015.xn--p1acf": &z[4856], // 015.рус
10131 "016.xn--p1acf": &z[4857], // 016.рус
10132 "017.xn--p1acf": &z[4858], // 017.рус
10133 "018.xn--p1acf": &z[4859], // 018.рус
10134 "019.xn--p1acf": &z[4860], // 019.рус
10135 "021.xn--p1acf": &z[4861], // 021.рус
10136 "022.xn--p1acf": &z[4862], // 022.рус
10137 "023.xn--p1acf": &z[4863], // 023.рус
10138 "024.xn--p1acf": &z[4864], // 024.рус
10139 "025.xn--p1acf": &z[4865], // 025.рус
10140 "026.xn--p1acf": &z[4866], // 026.рус
10141 "027.xn--p1acf": &z[4867], // 027.рус
10142 "028.xn--p1acf": &z[4868], // 028.рус
10143 "029.xn--p1acf": &z[4869], // 029.рус
10144 "030.xn--p1acf": &z[4870], // 030.рус
10145 "031.xn--p1acf": &z[4871], // 031.рус
10146 "032.xn--p1acf": &z[4872], // 032.рус
10147 "033.xn--p1acf": &z[4873], // 033.рус
10148 "034.xn--p1acf": &z[4874], // 034.рус
10149 "035.xn--p1acf": &z[4875], // 035.рус
10150 "036.xn--p1acf": &z[4876], // 036.рус
10151 "037.xn--p1acf": &z[4877], // 037.рус
10152 "038.xn--p1acf": &z[4878], // 038.рус
10153 "039.xn--p1acf": &z[4879], // 039.рус
10154 "040.xn--p1acf": &z[4880], // 040.рус
10155 "041.xn--p1acf": &z[4881], // 041.рус
10156 "042.xn--p1acf": &z[4882], // 042.рус
10157 "043.xn--p1acf": &z[4883], // 043.рус
10158 "044.xn--p1acf": &z[4884], // 044.рус
10159 "045.xn--p1acf": &z[4885], // 045.рус
10160 "046.xn--p1acf": &z[4886], // 046.рус
10161 "047.xn--p1acf": &z[4887], // 047.рус
10162 "048.xn--p1acf": &z[4888], // 048.рус
10163 "049.xn--p1acf": &z[4889], // 049.рус
10164 "050.xn--p1acf": &z[4890], // 050.рус
10165 "051.xn--p1acf": &z[4891], // 051.рус
10166 "052.xn--p1acf": &z[4892], // 052.рус
10167 "053.xn--p1acf": &z[4893], // 053.рус
10168 "054.xn--p1acf": &z[4894], // 054.рус
10169 "055.xn--p1acf": &z[4895], // 055.рус
10170 "056.xn--p1acf": &z[4896], // 056.рус
10171 "057.xn--p1acf": &z[4897], // 057.рус
10172 "058.xn--p1acf": &z[4898], // 058.рус
10173 "059.xn--p1acf": &z[4899], // 059.рус
10174 "060.xn--p1acf": &z[4900], // 060.рус
10175 "061.xn--p1acf": &z[4901], // 061.рус
10176 "062.xn--p1acf": &z[4902], // 062.рус
10177 "063.xn--p1acf": &z[4903], // 063.рус
10178 "064.xn--p1acf": &z[4904], // 064.рус
10179 "065.xn--p1acf": &z[4905], // 065.рус
10180 "066.xn--p1acf": &z[4906], // 066.рус
10181 "067.xn--p1acf": &z[4907], // 067.рус
10182 "068.xn--p1acf": &z[4908], // 068.рус
10183 "069.xn--p1acf": &z[4909], // 069.рус
10184 "070.xn--p1acf": &z[4910], // 070.рус
10185 "071.xn--p1acf": &z[4911], // 071.рус
10186 "072.xn--p1acf": &z[4912], // 072.рус
10187 "073.xn--p1acf": &z[4913], // 073.рус
10188 "074.xn--p1acf": &z[4914], // 074.рус
10189 "075.xn--p1acf": &z[4915], // 075.рус
10190 "076.xn--p1acf": &z[4916], // 076.рус
10191 "077.xn--p1acf": &z[4917], // 077.рус
10192 "078.xn--p1acf": &z[4918], // 078.рус
10193 "079.xn--p1acf": &z[4919], // 079.рус
10194 "083.xn--p1acf": &z[4920], // 083.рус
10195 "086.xn--p1acf": &z[4921], // 086.рус
10196 "087.xn--p1acf": &z[4922], // 087.рус
10197 "089.xn--p1acf": &z[4923], // 089.рус
10198 "094.xn--p1acf": &z[4924], // 094.рус
10199 "095.xn--p1acf": &z[4925], // 095.рус
10200 "xn--80aaac0ct.xn--p1acf": &z[4926], // абакан.рус
10201 "xn--80ae0bp.xn--p1acf": &z[4927], // авто.рус
10202 "xn--80awd.xn--p1acf": &z[4928], // алм.рус
10203 "xn--80aa1ag9a.xn--p1acf": &z[4929], // алтай.рус
10204 "xn--80aam8ar9di.xn--p1acf": &z[4930], // анадырь.рус
10205 "xn--80aaa5csg.xn--p1acf": &z[4931], // астана.рус
10206 "xn--80aaa6cmfh0a9d.xn--p1acf": &z[4932], // астрахань.рус
10207 "xn--80ag7c.xn--p1acf": &z[4933], // ахг.рус
10208 "xn--80ab2azb.xn--p1acf": &z[4934], // баку.рус
10209 "xn--80aab6birx.xn--p1acf": &z[4935], // барнаул.рус
10210 "xn--90ais.xn--p1acf": &z[4936], // бел.рус
10211 "xn--90aedc4atap.xn--p1acf": &z[4937], // белгород.рус
10212 "xn--90amc.xn--p1acf": &z[4938], // биз.рус
10213 "xn--80abamkjb7bdt.xn--p1acf": &z[4939], // биробиджан.рус
10214 "xn--90aiiib5f.xn--p1acf": &z[4940], // бишкек.рус
10215 "xn--80abedla9acxg1b7f.xn--p1acf": &z[4941], // благовещенск.рус
10216 "xn--90aayernio.xn--p1acf": &z[4942], // бобруйск.рус
10217 "xn--90ai6aff.xn--p1acf": &z[4943], // брест.рус
10218 "xn--90asilg6f.xn--p1acf": &z[4944], // брянск.рус
10219 "xn--90aoxid7ec.xn--p1acf": &z[4945], // бурятия.рус
10220 "xn--b1aadecsaihi0amca3a.xn--p1acf": &z[4946], // великийновгород.рус
10221 "xn--b1amjiu8dp.xn--p1acf": &z[4947], // вильнюс.рус
10222 "xn--90abjlm5be.xn--p1acf": &z[4948], // витебск.рус
10223 "xn--80adbhunc2aa3al.xn--p1acf": &z[4949], // владивосток.рус
10224 "xn--80aaafckyesce.xn--p1acf": &z[4950], // владикавказ.рус
10225 "xn--80adhqaok7a.xn--p1acf": &z[4951], // владимир.рус
10226 "xn--80add5ao.xn--p1acf": &z[4952], // волга.рус
10227 "xn--80addag2buct.xn--p1acf": &z[4953], // волгоград.рус
10228 "xn--80adde7arb.xn--p1acf": &z[4954], // вологда.рус
10229 "xn--b1agd0aean.xn--p1acf": &z[4955], // воронеж.рус
10230 "xn--c1aescj1g.xn--p1acf": &z[4956], // гомель.рус
10231 "xn--c1ac1acci.xn--p1acf": &z[4957], // гродно.рус
10232 "xn--c1aigpdl4f.xn--p1acf": &z[4958], // грозный.рус
10233 "xn--e1aky.xn--p1acf": &z[4959], // ект.рус
10234 "xn--80adia6bo.xn--p1acf": &z[4960], // ереван.рус
10235 "xn--80adbv1agb.xn--p1acf": &z[4961], // иваново.рус
10236 "xn--b1afchn5b.xn--p1acf": &z[4962], // ижевск.рус
10237 "xn--h1aeawgfg.xn--p1acf": &z[4963], // иркутск.рус
10238 "xn--80aauks4g.xn--p1acf": &z[4964], // казань.рус
10239 "xn--80aaifraljtb8a.xn--p1acf": &z[4965], // калининград.рус
10240 "xn--80aai0ag2c.xn--p1acf": &z[4966], // калуга.рус
10241 "xn--b1afaslnbn.xn--p1acf": &z[4967], // кемерово.рус
10242 "xn--b1afih.xn--p1acf": &z[4968], // киев.рус
10243 "xn--b1alfrj.xn--p1acf": &z[4969], // киров.рус
10244 "xn--b1afiaiu9e.xn--p1acf": &z[4970], // кишинев.рус
10245 "xn--j1aef.xn--p1acf": &z[4971], // ком.рус
10246 "xn--h1adgh.xn--p1acf": &z[4972], // коми.рус
10247 "xn--80atghalgi.xn--p1acf": &z[4973], // кострома.рус
10248 "xn--80aalwqglfe.xn--p1acf": &z[4974], // краснодар.рус
10249 "xn--80atblfjdfd2l.xn--p1acf": &z[4975], // красноярск.рус
10250 "xn--j1ael8b.xn--p1acf": &z[4976], // крым.рус
10251 "xn--80afuomr.xn--p1acf": &z[4977], // курган.рус
10252 "xn--j1aarei.xn--p1acf": &z[4978], // курск.рус
10253 "xn--g1afe6db.xn--p1acf": &z[4979], // кызыл.рус
10254 "xn--e1afhbv7b.xn--p1acf": &z[4980], // липецк.рус
10255 "xn--80aaakg8bm.xn--p1acf": &z[4981], // магадан.рус
10256 "xn--80aai8a2a.xn--p1acf": &z[4982], // магас.рус
10257 "xn--80asdfng.xn--p1acf": &z[4983], // майкоп.рус
10258 "xn--80aqdibz7g.xn--p1acf": &z[4984], // марийэл.рус
10259 "xn--80aqjbv3f.xn--p1acf": &z[4985], // мариэл.рус
10260 "xn--80aaaa2chc7eta.xn--p1acf": &z[4986], // махачкала.рус
10261 "xn--d1abu.xn--p1acf": &z[4987], // мед.рус
10262 "xn--h1aeefu.xn--p1acf": &z[4988], // минск.рус
10263 "xn--h1ahn.xn--p1acf": &z[4989], // мир.рус
10264 "xn--b1abpmcm0l.xn--p1acf": &z[4990], // могилёв.рус
10265 "xn--j1adp.xn--p1acf": &z[4991], // мск.рус
10266 "xn--80aueagpkl.xn--p1acf": &z[4992], // мурманск.рус
10267 "xn--80aqgci6d8a.xn--p1acf": &z[4993], // нальчик.рус
10268 "xn----7sbb1ccbue7h4a.xn--p1acf": &z[4994], // нарьян-мар.рус
10269 "xn--b1avn.xn--p1acf": &z[4995], // нвс.рус
10270 "xn--m1aa.xn--p1acf": &z[4996], // нн.рус
10271 "xn--90absbknhbvge.xn--p1acf": &z[4997], // новосибирск.рус
10272 "xn--j1adfn.xn--p1acf": &z[4998], // омск.рус
10273 "xn--c1avg.xn--p1acf": &z[4999], // орг.рус
10274 "xn--90aee6admdx.xn--p1acf": &z[5000], // оренбург.рус
10275 "xn--k1afg2e.xn--p1acf": &z[5001], // орёл.рус
10276 "xn--80ajgxi.xn--p1acf": &z[5002], // пенза.рус
10277 "xn--e1aohf5d.xn--p1acf": &z[5003], // пермь.рус
10278 "xn--80aegbkvxddlre.xn--p1acf": &z[5004], // петрозаводск.рус
10279 "xn--b1apmck.xn--p1acf": &z[5005], // псков.рус
10280 "xn--c1ajhpcjhd0j.xn--p1acf": &z[5006], // пятигорск.рус
10281 "xn--80afo5a.xn--p1acf": &z[5007], // рига.рус
10282 "xn-----7kcgn5cdbagnnnx.xn--p1acf": &z[5008], // ростов-на-дону.рус
10283 "xn--b1a1ade.xn--p1acf": &z[5009], // рств.рус
10284 "xn--80antj7do.xn--p1acf": &z[5010], // рязань.рус
10285 "xn--80aamc3a6ac9a.xn--p1acf": &z[5011], // салехард.рус
10286 "xn--80aaa0cvac.xn--p1acf": &z[5012], // самара.рус
10287 "xn--80aa4alnee.xn--p1acf": &z[5013], // саранск.рус
10288 "xn--80aag1ciek.xn--p1acf": &z[5014], // саратов.рус
10289 "xn--80adi0aoagldk8i.xn--p1acf": &z[5015], // севастополь.рус
10290 "xn--90anb6ab4e.xn--p1acf": &z[5016], // сибирь.рус
10291 "xn--e1afkclaggf6a2g.xn--p1acf": &z[5017], // симферополь.рус
10292 "xn--e1akbdhdtf.xn--p1acf": &z[5018], // смоленск.рус
10293 "xn--h1aliz.xn--p1acf": &z[5019], // сочи.рус
10294 "xn--90a1af.xn--p1acf": &z[5020], // спб.рус
10295 "xn--80ae1alafffj1i.xn--p1acf": &z[5021], // ставрополь.рус
10296 "xn--80aqialz.xn--p1acf": &z[5022], // таллин.рус
10297 "xn--80acd2blu.xn--p1acf": &z[5023], // тамбов.рус
10298 "xn--80akonve2b.xn--p1acf": &z[5024], // ташкент.рус
10299 "xn--b1ag7af7c.xn--p1acf": &z[5025], // тверь.рус
10300 "xn--j1adfnc.xn--p1acf": &z[5026], // томск.рус
10301 "xn--80avue.xn--p1acf": &z[5027], // тула.рус
10302 "xn--p1add.xn--p1acf": &z[5028], // тур.рус
10303 "xn--e1aner7ci.xn--p1acf": &z[5029], // тюмень.рус
10304 "xn--b1aqbiftj7e1a.xn--p1acf": &z[5030], // ульяновск.рус
10305 "xn--80a1bd.xn--p1acf": &z[5031], // уфа.рус
10306 "xn--80aacf4bwnk3a.xn--p1acf": &z[5032], // хабаровск.рус
10307 "xn--80ablvtof7b4b.xn--p1acf": &z[5033], // чебоксары.рус
10308 "xn--90ahkico2a6b9d.xn--p1acf": &z[5034], // челябинск.рус
10309 "xn--e1aaob1aia6b.xn--p1acf": &z[5035], // черкесск.рус
10310 "xn--80ap4as.xn--p1acf": &z[5036], // чита.рус
10311 "xn--80apizf6d.xn--p1acf": &z[5037], // элиста.рус
10312 "xn--80af3b0c.xn--p1acf": &z[5038], // югра.рус
10313 "xn--41a.xn--p1acf": &z[5039], // я.рус
10314 "xn--j1aaude4e.xn--p1acf": &z[5040], // якутск.рус
10315 "xn--80aezclli6gta.xn--p1acf": &z[5041], // ярославль.рус
10316 "xn--j1aef.xn--p1ai": &z[5042], // ком.рф
10317 "xn--e1apq.xn--p1ai": &z[5043], // нет.рф
10318 "xn--c1avg.xn--p1ai": &z[5044], // орг.рф
10319 "xn--o-btb9b.xn--90a3ac": &z[5045], // oбр.срб
10320 "xn--o-htb.xn--90a3ac": &z[5046], // oд.срб
10321 "xn--80au.xn--90a3ac": &z[5047], // ак.срб
10322 "xn--o1ac.xn--90a3ac": &z[5048], // пр.срб
10323 "xn--o1ach.xn--90a3ac": &z[5049], // упр.срб
10324 "xn--fhbed7t1n.xn--mgbbh1a71e": &z[5050], // كمپنی.بھارت
10325 "xn--i1b1b4ch5i.xn--h2brj9c": &z[5051], // कंपनी.भारत
10326 "xn--p5b2bfp1g0b0b.xn--45brj9c": &z[5052], // কম্পেনি.ভারত
10327 "xn--p5b2bfp5fh3fra.xn--45brj9c": &z[5053], // কোম্পানি.ভারত
10328 "xn--d9b2bf3g1k.xn--s9brj9c": &z[5054], // ਕੰਪਨੀ.ਭਾਰਤ
10329 "xn--hdc1b4ch5i.xn--gecrj9c": &z[5055], // કંપની.ભારત
10330 "xn--vlccpku2dp3h.xn--xkc2dl3a5ee0h": &z[5056], // நிறுவனம்.இந்தியா
10331 "xn--12co0c3b4eva.xn--o3cw4h": &z[5057], // ธุรกิจ.ไทย
10332 "xn--gmqw5a.xn--j6w193g": &z[5058], // 個人.香港
10333 "xn--55qx5d.xn--j6w193g": &z[5059], // 公司.香港
10334 "xn--mxtq1m.xn--j6w193g": &z[5060], // 政府.香港
10335 "xn--wcvs22d.xn--j6w193g": &z[5061], // 教育.香港
10336 "xn--uc0atv.xn--j6w193g": &z[5062], // 組織.香港
10337 "xn--od0alg.xn--j6w193g": &z[5063], // 網絡.香港
10338 "lda.co.ao": &z[5064],
10339 "sa.co.ao": &z[5065],
10340 "esc.edu.ar": &z[5066],
10341 "act.edu.au": &z[5067],
10342 "nsw.edu.au": &z[5068],
10343 "nt.edu.au": &z[5069],
10344 "qld.edu.au": &z[5070],
10345 "sa.edu.au": &z[5071],
10346 "tas.edu.au": &z[5072],
10347 "vic.edu.au": &z[5073],
10348 "wa.edu.au": &z[5074],
10349 "fed.rep.br": &z[5075],
10350 "wireless.keyword.cn": &z[5076],
10351 "ltd.co.im": &z[5077],
10352 "plc.co.im": &z[5078],
10353 "lg.gov.ng": &z[5079],
10354 "co.net.nz": &z[5080],
10355 "al.eu.org": &z[5081],
10356 "asso.eu.org": &z[5082],
10357 "at.eu.org": &z[5083],
10358 "au.eu.org": &z[5084],
10359 "be.eu.org": &z[5085],
10360 "bg.eu.org": &z[5086],
10361 "ca.eu.org": &z[5087],
10362 "cd.eu.org": &z[5088],
10363 "ch.eu.org": &z[5089],
10364 "cn.eu.org": &z[5090],
10365 "cy.eu.org": &z[5091],
10366 "cz.eu.org": &z[5092],
10367 "de.eu.org": &z[5093],
10368 "dk.eu.org": &z[5094],
10369 "edu.eu.org": &z[5095],
10370 "ee.eu.org": &z[5096],
10371 "es.eu.org": &z[5097],
10372 "fi.eu.org": &z[5098],
10373 "fr.eu.org": &z[5099],
10374 "gr.eu.org": &z[5100],
10375 "hr.eu.org": &z[5101],
10376 "hu.eu.org": &z[5102],
10377 "ie.eu.org": &z[5103],
10378 "il.eu.org": &z[5104],
10379 "in.eu.org": &z[5105],
10380 "int.eu.org": &z[5106],
10381 "is.eu.org": &z[5107],
10382 "it.eu.org": &z[5108],
10383 "jp.eu.org": &z[5109],
10384 "kr.eu.org": &z[5110],
10385 "lt.eu.org": &z[5111],
10386 "lu.eu.org": &z[5112],
10387 "lv.eu.org": &z[5113],
10388 "me.eu.org": &z[5114],
10389 "mk.eu.org": &z[5115],
10390 "mt.eu.org": &z[5116],
10391 "my.eu.org": &z[5117],
10392 "net.eu.org": &z[5118],
10393 "ng.eu.org": &z[5119],
10394 "nl.eu.org": &z[5120],
10395 "no.eu.org": &z[5121],
10396 "nz.eu.org": &z[5122],
10397 "pl.eu.org": &z[5123],
10398 "pt.eu.org": &z[5124],
10399 "ro.eu.org": &z[5125],
10400 "ru.eu.org": &z[5126],
10401 "se.eu.org": &z[5127],
10402 "si.eu.org": &z[5128],
10403 "sk.eu.org": &z[5129],
10404 "tr.eu.org": &z[5130],
10405 "uk.eu.org": &z[5131],
10406 "us.eu.org": &z[5132],
10407 "co.at.pn": &z[5133],
10408 "com.au.pn": &z[5134],
10409 "co.uk.pn": &z[5135],
10410 "co.at.tc": &z[5136],
10411 "com.au.tc": &z[5137],
10412 "co.uk.tc": &z[5138],
10413 "me.uk.tc": &z[5139],
10414 "org.uk.tc": &z[5140],
10415 "co.at.tt": &z[5141],
10416 "com.au.tt": &z[5142],
10417 "co.uk.tt": &z[5143],
10418 "me.uk.tt": &z[5144],
10419 "org.uk.tt": &z[5145],
10420 "barking-dagenham.sch.uk": &z[5146],
10421 "barnet.sch.uk": &z[5147],
10422 "barnsley.sch.uk": &z[5148],
10423 "bathnes.sch.uk": &z[5149],
10424 "beds.sch.uk": &z[5150],
10425 "bexley.sch.uk": &z[5151],
10426 "bham.sch.uk": &z[5152],
10427 "blackburn.sch.uk": &z[5153],
10428 "blackpool.sch.uk": &z[5154],
10429 "bolton.sch.uk": &z[5155],
10430 "bournemouth.sch.uk": &z[5156],
10431 "bracknell-forest.sch.uk": &z[5157],
10432 "bradford.sch.uk": &z[5158],
10433 "brent.sch.uk": &z[5159],
10434 "doncaster.sch.uk": &z[5160],
10435 "bg.ac.yu": &z[5161],
10436 "ecape.school.za": &z[5162],
10437 "fs.school.za": &z[5163],
10438 "gp.school.za": &z[5164],
10439 "kzn.school.za": &z[5165],
10440 "lp.school.za": &z[5166],
10441 "mpm.school.za": &z[5167],
10442 "ncape.school.za": &z[5168],
10443 "nw.school.za": &z[5169],
10444 "wcape.school.za": &z[5170],
10445 }
15951595 қаз
15961596 հայ
15971597 טעסט
1598 ישראל
15981599 קום
15991600 آزمایشی
16001601 إختبار
20222023 agr.br
20232024 am.br
20242025 aparecida.br
2026 app.br
20252027 arq.br
20262028 art.br
20272029 ato.br
20282030 b.br
20292031 belem.br
20302032 bhz.br
2033 bib.br
20312034 bio.br
20322035 blog.br
20332036 bmd.br
20402043 cnt.br
20412044 com.br
20422045 coop.br
2046 coz.br
20432047 curitiba.br
2048 des.br
2049 det.br
2050 dev.br
20442051 ecn.br
20452052 eco.br
20462053 edu.br
20472054 emp.br
2055 enf.br
20482056 eng.br
20492057 esp.br
20502058 etc.br
20592067 foz.br
20602068 fst.br
20612069 g12.br
2070 geo.br
20622071 ggf.br
20632072 gov.br
20642073 gru.br
20692078 jor.br
20702079 jus.br
20712080 lel.br
2081 log.br
20722082 macapa.br
20732083 maceio.br
20742084 manaus.br
20972107 rio.br
20982108 salvador.br
20992109 sec3.br
2110 seg.br
21002111 sjc.br
21012112 slg.br
21022113 srv.br
21032114 taxi.br
2115 tec.br
21042116 teo.br
21052117 tmp.br
21062118 trd.br
22692281 sa.com
22702282 se.com
22712283 uk.com
2284 ukots.com
22722285 us.com
22732286 uy.com
22742287 za.com
33313344 gov.ls
33323345 net.ls
33333346 org.ls
3334 parliament.ls
3347 sc.ls
33353348 gov.lt
33363349 asn.lv
33373350 com.lv
43864399 at.tc
43874400 au.tc
43884401 be.tc
4389 bg.tc
43904402 biz.tc
43914403 br.tc
43924404 ch.tc
50475059 ак.срб
50485060 пр.срб
50495061 упр.срб
5062 کمپنی.بارت
50505063 كمپنی.بھارت
5064 ڪمپني.ڀارت
50515065 कंपनी.भारत
5066 संस्था.भारतम्
5067 कोम्पानी.भारोत
50525068 কম্পেনি.ভারত
50535069 কোম্পানি.ভারত
5070 কোম্পানী.ভাৰত
50545071 ਕੰਪਨੀ.ਭਾਰਤ
50555072 કંપની.ભારત
5073 କମ୍ପାନୀ.ଭାରତ
50565074 நிறுவனம்.இந்தியா
5075 కంపెనీ.భారత్
5076 ಕಂಪನಿ.ಭಾರತ
5077 കന്പനി.ഭാരതം
50575078 ธุรกิจ.ไทย
50585079 個人.香港
50595080 公司.香港
0 package zonedb
1
2 import (
3 "fmt"
4 "testing"
5 )
6
7 func TestTLDs(t *testing.T) {
8 t.Logf("%d top-level domains (%s to %s)", len(TLDs), TLDs[0].Domain, TLDs[len(TLDs)-1].Domain)
9 }
10
11 func TestTags(t *testing.T) {
12 if numTags != len(TagStrings) {
13 t.Errorf("numTags (%d) != len(TagStrings) (%d)", numTags, len(TagStrings))
14 }
15 if len(TagStrings) != len(TagValues) {
16 t.Errorf("len(TagStrings) (%d) != len(TagValues) (%d)", len(TagStrings), len(TagValues))
17 }
18 }
19
20 func TestTags_And(t *testing.T) {
21 var tags Tags = TagGeneric | TagCountry
22 if tags.And(TagGeneric) != true {
23 t.Errorf("tags.And(TagGeneric) != true")
24 }
25 if tags.And(TagCountry) != true {
26 t.Errorf("tags.And(TagCountry) != true")
27 }
28 if tags.And(TagAdult) != false {
29 t.Errorf("tags.And(TagAdult) != false")
30 }
31 if tags.And(0) != false {
32 t.Errorf("tags.And(0) != false")
33 }
34 }
35
36 func ExampleTags_And() {
37 z := ZoneMap["bananarepublic"]
38 fmt.Println(z.Tags.And(TagBrand | TagGeo))
39 // Output: true
40 }
41
42 func TestTags_String(t *testing.T) {
43 tests := map[Tags]string{
44 (TagGeneric): "generic",
45 (TagWithdrawn): "withdrawn",
46 (TagCountry | TagGeo): "country geo",
47 (TagCountry | TagGeo | TagSponsored): "country geo sponsored",
48 (TagAdult | TagGeo | TagInfrastructure): "adult geo infrastructure",
49 }
50 for tags, v := range tests {
51 g := tags.String()
52 if g != v {
53 t.Errorf(`Expected tags.String() == %q, got %q`, v, g)
54 }
55 }
56 }
57
58 func ExampleTags_String() {
59 z := ZoneMap["aero"]
60 fmt.Println(z.Tags.String())
61 // Output: generic sponsored
62 }
63
64 func TestZone_WhoisServer(t *testing.T) {
65 tests := map[string]string{
66 "com": ZoneMap["net"].WhoisServer(),
67 "er": "",
68 "uk.com": ZoneMap["us.com"].WhoisServer(),
69 "com.er": "",
70 "ac.uk": ZoneMap["gov.uk"].WhoisServer(),
71 "co.uk": ZoneMap["uk"].WhoisServer(),
72 "org.uk": ZoneMap["uk"].WhoisServer(),
73 }
74 for k, v := range tests {
75 g := ZoneMap[k].WhoisServer()
76 if g != v {
77 t.Errorf(`Expected Zones[%q].WhoisServer() == %q, got %q`, k, v, g)
78 }
79 }
80 }
81
82 func TestZone_WhoisURL(t *testing.T) {
83 tests := map[string]string{
84 "com": "",
85 "net": "",
86 "org": "",
87 "co.az": ZoneMap["az"].WhoisURL(),
88 }
89 for k, v := range tests {
90 g := ZoneMap[k].WhoisURL()
91 if g != v {
92 t.Errorf(`Expected Zones[%q].WhoisURL() == %q, got %q`, k, v, g)
93 }
94 }
95 }
96
97 func TestZonesHaveWhoisServerOrURLButNotBoth(t *testing.T) {
98 for _, z := range Zones {
99 s := z.WhoisServer()
100 u := z.WhoisURL()
101 if s != "" && u != "" {
102 t.Errorf(`Zone %q has both whoisServer (%q) and whoisURL (%q) set`, z.Domain, s, u)
103 }
104 }
105 }
106
107 func TestZone_IsTLD(t *testing.T) {
108 tests := map[string]bool{
109 "com": true,
110 "um": true,
111 "co.uk": false,
112 "org.br": false,
113 }
114 for k, v := range tests {
115 g := ZoneMap[k].IsTLD()
116 if g != v {
117 t.Errorf(`Expected Zones[%q].IsTLD() == %t, got %t`, k, v, g)
118 }
119 }
120 }
121
122 func TestZone_IsDelegated(t *testing.T) {
123 tests := map[string]bool{
124 "com": true,
125 "um": false,
126 "yu": false,
127 "co.uk": true,
128 "org.za": true,
129 "db.za": false,
130 }
131 for k, v := range tests {
132 g := ZoneMap[k].IsDelegated()
133 if g != v {
134 t.Errorf(`Expected Zones[%q].IsDelegated() == %t, got %t`, k, v, g)
135 }
136 }
137 }
138
139 func TestZone_IsInRootZone(t *testing.T) {
140 tests := map[string]bool{
141 "com": true,
142 "net": true,
143 "org": true,
144 "um": false,
145 "yu": false,
146 "co.uk": false,
147 "org.br": false,
148 }
149 for k, v := range tests {
150 g := ZoneMap[k].IsInRootZone()
151 if g != v {
152 t.Errorf(`Expected Zones[%q].IsInRootZone() == %t, got %t`, k, v, g)
153 }
154 }
155 }
156
157 func TestZone_AllowsIDN(t *testing.T) {
158 data := map[string]bool{
159 "com": true,
160 "net": true,
161 "org": true,
162 "aero": false,
163 "co.uk": false,
164 }
165 for k, v := range data {
166 g := ZoneMap[k].AllowsIDN()
167 if g != v {
168 t.Errorf(`Expected Zones[%q].AllowsIDN() == %t, got %t`, k, v, g)
169 }
170 }
171 }
172
173 func TestZone_AllowsRegistration(t *testing.T) {
174 tests := map[string]bool{
175 "com": true,
176 "net": true,
177 "org": true,
178 "ck": false,
179 "yu": false,
180 "arpa": false,
181 "cadillac": false,
182 "amazon": true,
183 "co.uk": true,
184 "in-addr.arpa": false,
185 }
186 for k, v := range tests {
187 g := ZoneMap[k].AllowsRegistration()
188 if g != v {
189 t.Errorf(`Expected Zones[%q].AllowsRegistration() == %t, got %t`, k, v, g)
190 }
191 }
192 }
193
194 func TestIsZone(t *testing.T) {
195 tests := map[string]bool{
196 "com": true,
197 "um": true,
198 "xn--node": true,
199 "co.uk": true,
200 "org.br": true,
201 "hashtag-not-a-zone": false,
202 }
203 for k, v := range tests {
204 g := IsZone(k)
205 if g != v {
206 t.Errorf(`Expected IsZone(%q) == %t, got %t`, k, v, g)
207 }
208 }
209 }
210
211 func TestIsTLD(t *testing.T) {
212 tests := map[string]bool{
213 "com": true,
214 "um": true,
215 "xn--node": true,
216 "co.uk": false,
217 "org.br": false,
218 "hashtag-not-a-zone": false,
219 }
220 for k, v := range tests {
221 g := IsTLD(k)
222 if g != v {
223 t.Errorf(`Expected IsTLD(%q) == %t, got %t`, k, v, g)
224 }
225 }
226 }
227
228 func TestPublicZone(t *testing.T) {
229 tests := map[string]*Zone{
230 "com": ZoneMap["com"],
231 ".com": ZoneMap["com"],
232 "foobar.com": ZoneMap["com"],
233 "acme.co.uk": ZoneMap["co.uk"],
234 "brazil.com.br": ZoneMap["com.br"],
235 "foo.xn--node": ZoneMap["xn--node"],
236 "unknown.": nil,
237 "COM": nil,
238 "bar.გე": nil,
239 }
240 for k, v := range tests {
241 g := PublicZone(k)
242 if g != v {
243 t.Errorf(`Expected List.PublicSuffix(%q) == %v, got %v`, k, v, g)
244 }
245 }
246 }
247
248 func TestList_PublicSuffix(t *testing.T) {
249 tests := map[string]string{
250 "com": "com",
251 ".com": "com",
252 "foobar.com": "com",
253 "foo.xn--node": "xn--node",
254 "acme.co.uk": "co.uk",
255 "brazil.com.br": "com.br",
256 "unknown.": "unknown.",
257 "COM": "COM",
258 "bar.გე": "bar.გე",
259 }
260 for k, v := range tests {
261 g := List.PublicSuffix(k)
262 if g != v {
263 t.Errorf(`Expected List.PublicSuffix(%q) == %q, got %q`, k, v, g)
264 }
265 }
266 }
267
268 func BenchmarkInitAllocs(b *testing.B) {
269 b.ReportAllocs()
270 for i := 0; i < b.N; i++ {
271 initZones()
272 }
273 }