Codebase list zonedb / a1bdc18b-b1ba-452d-8778-2aae8914fcb3/upstream
Import upstream version 1.0.3008 Kali Janitor 3 years ago
393 changed file(s) with 10425 addition(s) and 5167 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 version: 2
1 updates:
2 - package-ecosystem: github-actions
3 directory: "/"
4 schedule:
5 interval: weekly
6 open-pull-requests-limit: 10
7
8 - package-ecosystem: gomod
9 directory: "/"
10 schedule:
11 interval: daily
12 time: "01:00"
13 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
105109
106110 ## License
107111
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.
112 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.
109113
110114 Copyright © 2008–2020 the Public Zone Database authors.
178178 }
179179 }
180180
181 if *updateRubyWhois || *updateAll {
181 if *updateRubyWhois {
182182 err := build.FetchRubyWhoisServers(workZones, addNew)
183183 if err != nil {
184184 errs = append(errs, err)
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.38
66 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0
77 golang.org/x/crypto v0.0.0-20200707235045-ab33eee955e0 // indirect
88 golang.org/x/net v0.0.0-20200707034311-ab3426394381
99 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
10 golang.org/x/text v0.3.3
10 golang.org/x/text v0.3.5
1111 )
1212
1313 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=
0 github.com/PuerkitoBio/goquery v1.6.1 h1:FgjbQZKl5HTmcn4sKBgvx8vv63nhyhIpv7lJpFGCWpk=
1 github.com/PuerkitoBio/goquery v1.6.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc=
22 github.com/andybalholm/cascadia v1.1.0 h1:BuuO6sSfQNFRu1LppgbD25Hr2vLYW25JvxHs5zzsLTo=
33 github.com/andybalholm/cascadia v1.1.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y=
44 github.com/andybalholm/cascadia v1.2.0 h1:vuRCkM5Ozh/BfmsaTm26kbjm0mIOM3yS5Ek/F5h18aE=
55 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=
6 github.com/miekg/dns v1.1.38 h1:MtIY+fmHUVVgv1AXzmKMWcwdCYxTRPG1EDjpqF4RCEw=
7 github.com/miekg/dns v1.1.38/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM=
108 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0 h1:3UeQBvD0TFrlVjOeLOBz+CPAI8dnbqNSVwUwRrkp7vQ=
119 github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0/go.mod h1:IXCdmsXIht47RaVFLEdVnh1t+pgYtTAhQGj73kz+2DM=
1210 golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
3533 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae h1:Ih9Yo4hSPImZOpfGuA4bR/ORKTAbhZo2AbWNRCnevdo=
3634 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
3735 golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
38 golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
39 golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
36 golang.org/x/text v0.3.5 h1:i6eZZ+zk0SOf0xgBpEpPD18qWcJda6q1sxt3S0kzyUQ=
37 golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
4038 golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
4139 golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
4240 golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
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)
7474 // Helper funcs
7575
7676 func cont(s string) string {
77 return strings.Replace(s, "\\\n", "", -1)
77 return strings.ReplaceAll(s, "\\\n", "")
7878 }
7979
8080 func odd(i int) bool {
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
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 }
3636 func (z *Zone) Normalize() {
3737 z.Domain = Normalize(z.Domain)
3838 var tags []string
39 for _, t := range z.Tags {
40 tags = append(tags, t)
41 }
39 tags = append(tags, z.Tags...)
4240 z.Tags = NewSet(tags...).Values()
4341 z.NameServers = NewSet(z.NameServers...).Values()
4442 sort.Strings(z.NameServers)
137135 func (z *Zone) HasMetadata() bool {
138136 j, _ := json.Marshal(z)
139137 j2, _ := json.Marshal(&Zone{Domain: z.Domain})
140 if string(j) == string(j2) {
141 return false
142 }
143 return true
138 return string(j) != string(j2)
144139 }
145140
146141 // ASCII returns the ACE encoded form of the Zone’s label(s).
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/aaa_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ja",
20 "value": "https://www.iana.org/domains/idn-tables/tables/able_ja_3.0.xml"
1921 }
2022 ]
2123 }
00 {
11 "domain": "ac.cd",
22 "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"
3 "ns-root-21.scpt-network.net",
4 "ns-root-22.scpt-network.net",
5 "ns-root-23.scpt-network.net"
106 ]
117 }
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 {
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/accountant_zh_3.0.xml"
100100 }
101101 ]
102102 }
44 "brand",
55 "generic"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
7 "whoisServer": "whois.nic.aco",
88 "nameServers": [
9 "a0.nic.aco",
10 "a2.nic.aco",
11 "b0.nic.aco",
12 "c0.nic.aco"
9 "a.dns.nic.aco",
10 "m.dns.nic.aco",
11 "n.dns.nic.aco"
1312 ],
1413 "policies": [
1514 {
33 "adult"
44 ],
55 "nameServers": [
6 "ns.cocca.fr",
76 "ns1.nic.ht",
87 "ns1.polymtl.ca",
98 "ns3.nic.fr",
66 ],
77 "whoisServer": "whois.aero",
88 "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"
9 "a0.nic.aero",
10 "a2.nic.aero",
11 "b0.nic.aero",
12 "b2.nic.aero",
13 "c0.nic.aero"
1514 ],
1615 "policies": [
1716 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/aetna_es_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "pt",
25 "value": "https://www.iana.org/domains/idn-tables/tables/aetna_pt_3.0.xml"
1926 }
2027 ]
2128 }
77 "whoisServer": "whois.nic.af",
88 "nameServers": [
99 "ns.anycast.nic.af",
10 "ns.cocca.fr"
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
1112 ],
1213 "policies": [
1314 {
66 ],
77 "whoisServer": "whois.nic.ai",
88 "nameServers": [
9 "ns.cocca.fr",
9 "anycastdns1-cz.nic.ai",
10 "anycastdns2-cz.nic.ai",
1011 "pch.whois.ai"
1112 ],
1213 "policies": [
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/aig_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/americanexpress_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/amex_es_3.0.xml"
1921 }
2022 ]
2123 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/analytics_es_3.0.xml"
1820 }
1921 ]
2022 }
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 }
44 ],
55 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
7 "ns69.domaincontrol.com",
8 "ns70.domaincontrol.com"
7 "pdns07.domaincontrol.com",
8 "pdns08.domaincontrol.com"
99 ]
1010 }
55 "geo"
66 ],
77 "whoisServer": "whois.nic.ar",
8 "whoisURL": "http://www.nic.ar/",
98 "nameServers": [
109 "a.dns.ar",
1110 "ar.cctld.authdns.ripe.net",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/aramco_ar_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "es",
25 "value": "https://www.iana.org/domains/idn-tables/tables/aramco_es_3.0.xml"
1926 }
2027 ]
2128 }
00 {
11 "domain": "art.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
1212 "ns3.asnic.org",
1313 "ns4.asnic.uk",
1414 "ns5.asnic.us",
15 "ns99.dns.net.nz",
1615 "pch.nic.as"
1716 ],
1817 "policies": [
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": "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 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/athleta_es_3.0.xml"
1921 }
2022 ]
2123 }
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"
33 "tags": [
44 "generic"
55 ],
6 "whoisServer": "whois.uniregistry.net",
6 "whoisServer": "whois.nic.auto",
77 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
8 "a.nic.auto",
9 "b.nic.auto",
10 "c.nic.auto",
11 "d.nic.auto"
1212 ],
1313 "policies": [
1414 {
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1717 {
1818 "type": "idn-table",
1919 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/axa_da_1.0.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/axa_da_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/axa_de_1.0.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/axa_de_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/axa_es_1.0.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/axa_es_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/axa_fi_1.0.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/axa_fi_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
4242 {
4343 "type": "idn-table",
4444 "key": "hu",
45 "value": "https://www.iana.org/domains/idn-tables/tables/axa_hu_1.0.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/axa_hu_3.0.xml"
4646 },
4747 {
4848 "type": "idn-table",
4949 "key": "is",
50 "value": "https://www.iana.org/domains/idn-tables/tables/axa_is_1.0.txt"
50 "value": "https://www.iana.org/domains/idn-tables/tables/axa_is_3.0.xml"
5151 },
5252 {
5353 "type": "idn-table",
5454 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ja_1.0.txt"
55 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ja_3.0.xml"
5656 },
5757 {
5858 "type": "idn-table",
5959 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ko_1.0.txt"
60 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ko_3.0.xml"
6161 },
6262 {
6363 "type": "idn-table",
6464 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lt_1.0.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lt_3.0.xml"
6666 },
6767 {
6868 "type": "idn-table",
6969 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lv_1.0.txt"
70 "value": "https://www.iana.org/domains/idn-tables/tables/axa_lv_3.0.xml"
7171 },
7272 {
7373 "type": "idn-table",
7474 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/axa_no_1.0.txt"
75 "value": "https://www.iana.org/domains/idn-tables/tables/axa_no_3.0.xml"
7676 },
7777 {
7878 "type": "idn-table",
7979 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pl_1.0.txt"
80 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pl_3.0.xml"
8181 },
8282 {
8383 "type": "idn-table",
8484 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pt_1.0.txt"
85 "value": "https://www.iana.org/domains/idn-tables/tables/axa_pt_3.0.xml"
8686 },
8787 {
8888 "type": "idn-table",
8989 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ru_1.0.txt"
90 "value": "https://www.iana.org/domains/idn-tables/tables/axa_ru_3.0.xml"
9191 },
9292 {
9393 "type": "idn-table",
9494 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/axa_sv_1.0.txt"
95 "value": "https://www.iana.org/domains/idn-tables/tables/axa_sv_3.0.xml"
9696 },
9797 {
9898 "type": "idn-table",
9999 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/axa_zh_1.0.txt"
100 "value": "https://www.iana.org/domains/idn-tables/tables/axa_zh_3.0.xml"
101101 }
102102 ]
103103 }
44 "country",
55 "geo"
66 ],
7 "whoisURL": "http://www.nic.az/",
87 "nameServers": [
98 "az.hostmaster.ua",
109 "rip.psg.com"
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ar_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_da_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_de_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_es_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_fi_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "fr",
45 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_fr_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "hu",
50 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_hu_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "is",
55 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_is_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "ja",
60 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ja_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "ko",
65 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ko_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "lt",
70 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_lt_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "lv",
75 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_lv_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "no",
80 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_no_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "pl",
85 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_pl_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "pt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_pt_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "ru",
95 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_ru_3.0.xml"
96 },
97 {
98 "type": "idn-table",
99 "key": "sv",
100 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_sv_3.0.xml"
101 },
102 {
103 "type": "idn-table",
104 "key": "zh",
105 "value": "https://www.iana.org/domains/idn-tables/tables/banamex_zh_3.0.xml"
19106 }
20107 ]
21108 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/bananarepublic_es_3.0.xml"
1921 }
2022 ]
2123 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/baseball_es_3.0.xml"
1820 }
1921 ]
2022 }
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
44 "lns22.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 "retired"
44 ],
55 "nameServers": [
6 "dnsm1.nic.tc",
7 "dnsm2.nic.tc",
8 "dnsm3.nic.tc",
9 "dnsm4.nic.tc"
6 "ns1.beyazgundem.com",
7 "ns2.beyazgundem.com"
108 ],
119 "policies": [
1210 {
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 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/bible_da_3.0.xml"
20 },
21 {
22 "type": "idn-table",
23 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/bible_de_3.0.xml"
25 },
26 {
27 "type": "idn-table",
28 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/bible_es_3.0.xml"
30 },
31 {
32 "type": "idn-table",
33 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/bible_fi_3.0.xml"
35 },
36 {
37 "type": "idn-table",
38 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/bible_fr_3.0.xml"
40 },
41 {
42 "type": "idn-table",
43 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/bible_hu_3.0.xml"
45 },
46 {
47 "type": "idn-table",
48 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/bible_is_3.0.xml"
50 },
51 {
52 "type": "idn-table",
53 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/bible_ja_3.0.xml"
55 },
56 {
57 "type": "idn-table",
58 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/bible_ko_3.0.xml"
60 },
61 {
62 "type": "idn-table",
63 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/bible_lt_3.0.xml"
65 },
66 {
67 "type": "idn-table",
68 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/bible_lv_3.0.xml"
70 },
71 {
72 "type": "idn-table",
73 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/bible_no_3.0.xml"
75 },
76 {
77 "type": "idn-table",
78 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/bible_pl_3.0.xml"
80 },
81 {
82 "type": "idn-table",
83 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/bible_pt_3.0.xml"
85 },
86 {
87 "type": "idn-table",
88 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/bible_ru_3.0.xml"
90 },
91 {
92 "type": "idn-table",
93 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/bible_sv_3.0.xml"
95 },
96 {
97 "type": "idn-table",
98 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/bible_zh_3.0.xml"
18100 }
19101 ]
20102 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/bid_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/bid_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/bid_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/bid_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/bid_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/bid_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/bid_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/bid_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/bid_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/bid_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/bid_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/bid_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/bid_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/bid_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/bid_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/bid_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/bid_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/bid_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/bid_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/bid_zh_3.0.xml"
100100 }
101101 ]
102102 }
1515 {
1616 "type": "idn-table",
1717 "key": "da",
18 "value": "https://www.iana.org/domains/idn-tables/tables/biz_da_1.0.html"
18 "value": "https://www.iana.org/domains/idn-tables/tables/biz_da_3.0.xml"
1919 },
2020 {
2121 "type": "idn-table",
2222 "key": "de",
23 "value": "https://www.iana.org/domains/idn-tables/tables/biz_de_1.0.html"
23 "value": "https://www.iana.org/domains/idn-tables/tables/biz_de_3.0.xml"
2424 },
2525 {
2626 "type": "idn-table",
2727 "key": "es",
28 "value": "https://www.iana.org/domains/idn-tables/tables/biz_es_1.0.html"
28 "value": "https://www.iana.org/domains/idn-tables/tables/biz_es_3.0.xml"
2929 },
3030 {
3131 "type": "idn-table",
3232 "key": "fi",
33 "value": "https://www.iana.org/domains/idn-tables/tables/biz_fi_1.0.html"
33 "value": "https://www.iana.org/domains/idn-tables/tables/biz_fi_3.0.xml"
3434 },
3535 {
3636 "type": "idn-table",
3737 "key": "hu",
38 "value": "https://www.iana.org/domains/idn-tables/tables/biz_hu_1.0.html"
38 "value": "https://www.iana.org/domains/idn-tables/tables/biz_hu_3.0.xml"
3939 },
4040 {
4141 "type": "idn-table",
4242 "key": "is",
43 "value": "https://www.iana.org/domains/idn-tables/tables/biz_is_1.0.html"
43 "value": "https://www.iana.org/domains/idn-tables/tables/biz_is_3.0.xml"
4444 },
4545 {
4646 "type": "idn-table",
4747 "key": "ja",
48 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ja_1.0.html"
48 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ja_3.0.xml"
4949 },
5050 {
5151 "type": "idn-table",
5252 "key": "ko",
53 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ko_1.0.html"
53 "value": "https://www.iana.org/domains/idn-tables/tables/biz_ko_3.0.xml"
5454 },
5555 {
5656 "type": "idn-table",
5757 "key": "lt",
58 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lt_1.0.html"
58 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lt_3.0.xml"
5959 },
6060 {
6161 "type": "idn-table",
6262 "key": "lv",
63 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lv_1.0.html"
63 "value": "https://www.iana.org/domains/idn-tables/tables/biz_lv_3.0.xml"
6464 },
6565 {
6666 "type": "idn-table",
6767 "key": "no",
68 "value": "https://www.iana.org/domains/idn-tables/tables/biz_no_1.0.html"
68 "value": "https://www.iana.org/domains/idn-tables/tables/biz_no_3.0.xml"
6969 },
7070 {
7171 "type": "idn-table",
7272 "key": "pl",
73 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pl_1.0.html"
73 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pl_3.0.xml"
7474 },
7575 {
7676 "type": "idn-table",
7777 "key": "pt",
78 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pt_1.0.html"
78 "value": "https://www.iana.org/domains/idn-tables/tables/biz_pt_3.0.xml"
7979 },
8080 {
8181 "type": "idn-table",
8282 "key": "sv",
83 "value": "https://www.iana.org/domains/idn-tables/tables/biz_sv_1.0.html"
83 "value": "https://www.iana.org/domains/idn-tables/tables/biz_sv_3.0.xml"
8484 },
8585 {
8686 "type": "idn-table",
8787 "key": "zh",
88 "value": "https://www.iana.org/domains/idn-tables/tables/biz_zh_1.0.html"
88 "value": "https://www.iana.org/domains/idn-tables/tables/biz_zh_3.0.xml"
8989 }
9090 ]
9191 }
11 "domain": "biz.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
54 "pch.nic.ss"
65 ]
76 }
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/black_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/black_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/black_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/black_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/black_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/black_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/black_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/black_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/black_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/black_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/black_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/black_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/black_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/black_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/black_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/black_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/black_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/black_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/black_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/black_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/black_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/black_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/black_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/black_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/black_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/black_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "ar",
18 "value": "https://www.iana.org/domains/idn-tables/tables/blue_ar_1.txt"
19 },
20 {
21 "type": "idn-table",
22 "key": "be",
23 "value": "https://www.iana.org/domains/idn-tables/tables/blue_be_1.txt"
24 },
25 {
26 "type": "idn-table",
27 "key": "bg",
28 "value": "https://www.iana.org/domains/idn-tables/tables/blue_bg_1.txt"
29 },
30 {
31 "type": "idn-table",
32 "key": "bs",
33 "value": "https://www.iana.org/domains/idn-tables/tables/blue_bs_1.txt"
34 },
35 {
36 "type": "idn-table",
37 "key": "da",
38 "value": "https://www.iana.org/domains/idn-tables/tables/blue_da_1.txt"
39 },
40 {
41 "type": "idn-table",
42 "key": "de",
43 "value": "https://www.iana.org/domains/idn-tables/tables/blue_de_1.txt"
44 },
45 {
46 "type": "idn-table",
47 "key": "es",
48 "value": "https://www.iana.org/domains/idn-tables/tables/blue_es_1.txt"
49 },
50 {
51 "type": "idn-table",
52 "key": "fi",
53 "value": "https://www.iana.org/domains/idn-tables/tables/blue_fi_1.txt"
54 },
55 {
56 "type": "idn-table",
57 "key": "fr",
58 "value": "https://www.iana.org/domains/idn-tables/tables/blue_fr_1.txt"
59 },
60 {
61 "type": "idn-table",
62 "key": "hi",
63 "value": "https://www.iana.org/domains/idn-tables/tables/blue_hi_1.txt"
64 },
65 {
66 "type": "idn-table",
67 "key": "hu",
68 "value": "https://www.iana.org/domains/idn-tables/tables/blue_hu_1.txt"
69 },
70 {
71 "type": "idn-table",
72 "key": "is",
73 "value": "https://www.iana.org/domains/idn-tables/tables/blue_is_1.txt"
74 },
75 {
76 "type": "idn-table",
77 "key": "it",
78 "value": "https://www.iana.org/domains/idn-tables/tables/blue_it_1.txt"
79 },
80 {
81 "type": "idn-table",
82 "key": "ko",
83 "value": "https://www.iana.org/domains/idn-tables/tables/blue_ko_1.txt"
84 },
85 {
86 "type": "idn-table",
87 "key": "lt",
88 "value": "https://www.iana.org/domains/idn-tables/tables/blue_lt_1.txt"
89 },
90 {
91 "type": "idn-table",
92 "key": "lv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/blue_lv_1.txt"
94 },
95 {
96 "type": "idn-table",
97 "key": "mk",
98 "value": "https://www.iana.org/domains/idn-tables/tables/blue_mk_1.txt"
99 },
100 {
101 "type": "idn-table",
102 "key": "pl",
103 "value": "https://www.iana.org/domains/idn-tables/tables/blue_pl_1.txt"
104 },
105 {
106 "type": "idn-table",
107 "key": "pt",
108 "value": "https://www.iana.org/domains/idn-tables/tables/blue_pt_1.txt"
109 },
110 {
111 "type": "idn-table",
112 "key": "ru",
113 "value": "https://www.iana.org/domains/idn-tables/tables/blue_ru_1.txt"
114 },
115 {
116 "type": "idn-table",
117 "key": "sr",
118 "value": "https://www.iana.org/domains/idn-tables/tables/blue_sr_1.txt"
119 },
120 {
121 "type": "idn-table",
122 "key": "sr-ME",
123 "value": "https://www.iana.org/domains/idn-tables/tables/blue_sr-me_1.txt"
124 },
125 {
126 "type": "idn-table",
127 "key": "sv",
128 "value": "https://www.iana.org/domains/idn-tables/tables/blue_sv_1.txt"
129 },
130 {
131 "type": "idn-table",
132 "key": "uk",
133 "value": "https://www.iana.org/domains/idn-tables/tables/blue_uk_1.txt"
134 },
135 {
136 "type": "idn-table",
137 "key": "zh-CN",
138 "value": "https://www.iana.org/domains/idn-tables/tables/blue_zh-cn_4.0.txt"
139 },
140 {
141 "type": "idn-table",
142 "key": "zh-TW",
143 "value": "https://www.iana.org/domains/idn-tables/tables/blue_zh-tw_4.0.txt"
17144 }
18145 ]
19146 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/booking_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/booking_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/booking_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/booking_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/booking_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/booking_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/booking_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/booking_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/booking_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/booking_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/booking_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/booking_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/booking_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/booking_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/booking_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/booking_zh_3.0.xml"
1996 }
2097 ]
2198 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "zh",
17 "value": "https://www.iana.org/domains/idn-tables/tables/box_zh_3.0.xml"
1618 }
1719 ]
1820 }
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"
55 ],
66 "whoisServer": "whois.nic.broker",
77 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
8 "a.nic.broker",
9 "b.nic.broker",
10 "c.nic.broker",
11 "d.nic.broker"
1212 ],
1313 "policies": [
1414 {
1111 ],
1212 "whoisServer": "whois.nic.brussels",
1313 "nameServers": [
14 "a.nic.brussels",
15 "b.nic.brussels",
16 "c.ns.dns.be",
17 "d.ns.dns.be",
18 "y.ns.dns.be",
14 "a.nsset.brussels",
15 "b.nsset.brussels",
16 "c.nsset.brussels",
17 "d.nsset.brussels",
18 "y.nsset.brussels",
1919 "z.nsset.brussels"
2020 ],
2121 "policies": [
1515 {
1616 "type": "idn-table",
1717 "key": "es",
18 "value": "https://www.iana.org/domains/idn-tables/tables/buzz_es_1.0.txt"
18 "value": "https://www.iana.org/domains/idn-tables/tables/buzz_es_3.0.xml"
1919 }
2020 ]
2121 }
66 "whoisServer": "whois.nic.net.bw",
77 "nameServers": [
88 "dns1.nic.net.bw",
9 "dns2.nic.net.bw",
10 "master.btc.net.bw",
119 "ns-bw.afrinic.net",
1210 "pch.nic.net.bw"
1311 ],
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/calvinklein_es_3.0.xml"
1921 }
2022 ]
2123 }
33 "tags": [
44 "generic"
55 ],
6 "whoisServer": "whois.uniregistry.net",
6 "whoisServer": "whois.nic.car",
77 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
8 "a.nic.car",
9 "b.nic.car",
10 "c.nic.car",
11 "d.nic.car"
1212 ],
1313 "policies": [
1414 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "zh",
20 "value": "https://www.iana.org/domains/idn-tables/tables/caravan_zh_3.0.xml"
1921 }
2022 ]
2123 }
33 "tags": [
44 "generic"
55 ],
6 "whoisServer": "whois.uniregistry.net",
6 "whoisServer": "whois.nic.cars",
77 "nameServers": [
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
8 "a.nic.cars",
9 "b.nic.cars",
10 "c.nic.cars",
11 "d.nic.cars"
1212 ],
1313 "policies": [
1414 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "zh",
20 "value": "https://www.iana.org/domains/idn-tables/tables/cbn_zh_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/cbre_es_3.0.xml"
1921 }
2022 ]
2123 }
77 ],
88 "whoisServer": "whois.cd",
99 "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"
10 "ns-root-21.scpt-network.net",
11 "ns-root-22.scpt-network.net",
12 "ns-root-23.scpt-network.net"
1613 ],
1714 "policies": [
1815 {
55 "generic"
66 ],
77 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.ceb",
10 "a2.nic.ceb",
11 "b0.nic.ceb",
12 "c0.nic.ceb"
13 ],
148 "policies": [
159 {
1610 "type": "idn-disallowed"
55 ],
66 "whoisServer": "whois.nic.cfd",
77 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
8 "a.nic.cfd",
9 "b.nic.cfd",
10 "c.nic.cfd",
11 "d.nic.cfd"
1212 ],
1313 "policies": [
1414 {
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 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/chase_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/chase_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/chase_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/chase_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/chase_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/chase_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/chase_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/chase_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/chase_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/chase_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/chase_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/chase_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/chase_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/chase_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/chase_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/chase_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ja",
20 "value": "https://www.iana.org/domains/idn-tables/tables/chintai_ja_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ar_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/citi_da_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/citi_de_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/citi_es_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/citi_fi_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "fr",
45 "value": "https://www.iana.org/domains/idn-tables/tables/citi_fr_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "hu",
50 "value": "https://www.iana.org/domains/idn-tables/tables/citi_hu_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "is",
55 "value": "https://www.iana.org/domains/idn-tables/tables/citi_is_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "ja",
60 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ja_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "ko",
65 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ko_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "lt",
70 "value": "https://www.iana.org/domains/idn-tables/tables/citi_lt_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "lv",
75 "value": "https://www.iana.org/domains/idn-tables/tables/citi_lv_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "no",
80 "value": "https://www.iana.org/domains/idn-tables/tables/citi_no_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "pl",
85 "value": "https://www.iana.org/domains/idn-tables/tables/citi_pl_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "pt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/citi_pt_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "ru",
95 "value": "https://www.iana.org/domains/idn-tables/tables/citi_ru_3.0.xml"
96 },
97 {
98 "type": "idn-table",
99 "key": "sv",
100 "value": "https://www.iana.org/domains/idn-tables/tables/citi_sv_3.0.xml"
101 },
102 {
103 "type": "idn-table",
104 "key": "zh",
105 "value": "https://www.iana.org/domains/idn-tables/tables/citi_zh_3.0.xml"
19106 }
20107 ]
21108 }
1414 "policies": [
1515 {
1616 "type": "idn-table",
17 "key": "ar",
18 "value": "https://www.iana.org/domains/idn-tables/tables/club_ar_3.0.xml"
19 },
20 {
21 "type": "idn-table",
22 "key": "da",
23 "value": "https://www.iana.org/domains/idn-tables/tables/club_da_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "de",
28 "value": "https://www.iana.org/domains/idn-tables/tables/club_de_3.0.xml"
29 },
30 {
31 "type": "idn-table",
1732 "key": "es",
18 "value": "https://www.iana.org/domains/idn-tables/tables/club_es_1.0.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/club_es_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "fi",
38 "value": "https://www.iana.org/domains/idn-tables/tables/club_fi_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "fr",
43 "value": "https://www.iana.org/domains/idn-tables/tables/club_fr_3.0.xml"
44 },
45 {
46 "type": "idn-table",
47 "key": "hu",
48 "value": "https://www.iana.org/domains/idn-tables/tables/club_hu_3.0.xml"
49 },
50 {
51 "type": "idn-table",
52 "key": "is",
53 "value": "https://www.iana.org/domains/idn-tables/tables/club_is_3.0.xml"
54 },
55 {
56 "type": "idn-table",
57 "key": "it",
58 "value": "https://www.iana.org/domains/idn-tables/tables/club_it_3.0.xml"
59 },
60 {
61 "type": "idn-table",
62 "key": "ja",
63 "value": "https://www.iana.org/domains/idn-tables/tables/club_ja_3.0.xml"
64 },
65 {
66 "type": "idn-table",
67 "key": "ko",
68 "value": "https://www.iana.org/domains/idn-tables/tables/club_ko_3.0.xml"
69 },
70 {
71 "type": "idn-table",
72 "key": "lt",
73 "value": "https://www.iana.org/domains/idn-tables/tables/club_lt_3.0.xml"
74 },
75 {
76 "type": "idn-table",
77 "key": "lv",
78 "value": "https://www.iana.org/domains/idn-tables/tables/club_lv_3.0.xml"
79 },
80 {
81 "type": "idn-table",
82 "key": "no",
83 "value": "https://www.iana.org/domains/idn-tables/tables/club_no_3.0.xml"
84 },
85 {
86 "type": "idn-table",
87 "key": "pl",
88 "value": "https://www.iana.org/domains/idn-tables/tables/club_pl_3.0.xml"
89 },
90 {
91 "type": "idn-table",
92 "key": "pt",
93 "value": "https://www.iana.org/domains/idn-tables/tables/club_pt_3.0.xml"
94 },
95 {
96 "type": "idn-table",
97 "key": "ru",
98 "value": "https://www.iana.org/domains/idn-tables/tables/club_ru_3.0.xml"
99 },
100 {
101 "type": "idn-table",
102 "key": "sv",
103 "value": "https://www.iana.org/domains/idn-tables/tables/club_sv_3.0.xml"
104 },
105 {
106 "type": "idn-table",
107 "key": "zh",
108 "value": "https://www.iana.org/domains/idn-tables/tables/club_zh_3.0.xml"
19109 }
20110 ]
21111 }
00 {
11 "domain": "cm",
2 "infoURL": "https://antic.cm",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.netcom.cm",
7 "whoisURL": "http://antic.cm",
88 "nameServers": [
99 "auth02.ns.uu.net",
1010 "kim.camnet.cm",
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.fo",
22 "nameServers": [
3 "ns1-07.azure-dns.com",
4 "ns2-07.azure-dns.net"
3 "a.v4ns.xyz",
4 "b.v4ns.net",
5 "c.v4ns.org",
6 "d.v4ns.dev",
7 "f.v4ns.biz"
58 ],
69 "policies": [
710 {
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 {
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.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.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.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",
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": [
00 {
11 "domain": "com.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",
5 "ns-root-23.scpt-network.net"
96 ]
107 }
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.fo",
22 "nameServers": [
3 "ns1-03.azure-dns.com",
4 "ns2-03.azure-dns.net"
3 "a.v4ns.xyz",
4 "b.v4ns.net",
5 "c.v4ns.org",
6 "d.v4ns.dev",
7 "f.v4ns.biz"
58 ],
69 "policies": [
710 {
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",
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.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 {
11 "domain": "com.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
54 "pch.nic.ss"
65 ]
76 }
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.uy",
2 "whoisURL": "https://nic.anteldata.com.uy/dns/consultaWhois/whois.action",
32 "nameServers": [
43 "ns1.anteldata.com.uy",
54 "ns2.anteldata.com.uy",
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": "coop.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
1616 {
1717 "type": "idn-table",
1818 "key": "ar",
19 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ar_2.1.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ar_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "da",
24 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_da_2.1.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_da_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "de",
29 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_de_2.1.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_de_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "es",
34 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_es_2.1.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_es_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fi",
39 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fi_2.1.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fi_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "fr",
44 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fr_2.1.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_fr_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "hu",
49 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_hu_2.1.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_hu_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "is",
54 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_is_2.1.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_is_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ja",
59 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ja_2.1.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ja_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "ko",
64 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ko_2.1.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ko_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lt",
69 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lt_2.1.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lt_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "lv",
74 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lv_2.1.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_lv_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "no",
79 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_no_2.1.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_no_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pl",
84 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pl_2.1.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pl_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "pt",
89 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pt_2.1.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_pt_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "ru",
94 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ru_2.1.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_ru_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "sv",
99 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_sv_2.1.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_sv_3.0.xml"
100100 },
101101 {
102102 "type": "idn-table",
103103 "key": "zh",
104 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_zh_2.1.txt"
104 "value": "https://www.iana.org/domains/idn-tables/tables/coupon_zh_3.0.xml"
105105 }
106106 ]
107107 }
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 }
1212 ],
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 "infoURL": "https://www.nic.cr/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.cr",
7 "whoisURL": "http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do",
88 "nameServers": [
99 "a.lactld.org",
1010 "ca1.nic.cr",
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/cricket_zh_3.0.xml"
100100 }
101101 ]
102102 }
66 "whoisServer": "whois.nic.cx",
77 "nameServers": [
88 "ns.anycast.nic.cx",
9 "ns.cocca.fr"
9 "ns1.anycastdns.cz",
10 "ns2.anycastdns.cz"
1011 ],
1112 "policies": [
1213 {
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/date_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/date_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/date_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/date_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/date_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/date_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/date_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/date_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/date_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/date_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/date_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/date_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/date_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/date_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/date_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/date_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/date_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/date_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/date_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/date_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/date_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/date_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/date_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/date_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/date_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/date_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/date_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/date_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/date_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/date_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/date_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/date_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/date_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/date_zh_3.0.xml"
100100 }
101101 ]
102102 }
00 {
11 "domain": "de.pn",
2 "nameServers": [
3 "ns1.idnscan.net",
4 "ns2.idnscan.net"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/dell_es_3.0.xml"
1921 }
2022 ]
2123 }
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 }
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 }
55 "geo"
66 ],
77 "whoisServer": "whois.nic.do",
8 "whoisURL": "http://www.nic.do/whois-h.php3",
98 "nameServers": [
109 "a.lactld.org",
1110 "ns.nic.do",
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/download_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/download_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/download_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/download_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/download_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/download_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/download_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/download_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/download_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/download_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/download_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/download_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/download_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/download_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/download_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/download_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/download_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/download_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/download_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/download_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/download_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/download_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/download_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/download_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/download_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/download_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/download_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/download_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/download_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/download_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/download_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/download_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/download_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/download_zh_3.0.xml"
100100 }
101101 ]
102102 }
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/dupont_zh_3.0.xml"
1996 }
2097 ]
2198 }
88 "ns3.lacnic.net",
99 "ns4.apnic.net",
1010 "pri.authdns.ripe.net",
11 "tinnie.arin.net"
11 "rirns.arin.net"
1212 ],
1313 "policies": [
1414 {
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "ja",
19 "value": "https://www.iana.org/domains/idn-tables/tables/earth_ja_3.0.xml"
20 },
21 {
22 "type": "idn-table",
23 "key": "ko",
24 "value": "https://www.iana.org/domains/idn-tables/tables/earth_ko_3.0.xml"
25 },
26 {
27 "type": "idn-table",
28 "key": "zh",
29 "value": "https://www.iana.org/domains/idn-tables/tables/earth_zh_3.0.xml"
1830 }
1931 ]
2032 }
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.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",
5 "ns-root-23.scpt-network.net"
96 ]
107 }
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 }
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 ],
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.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 {
11 "domain": "edu.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "ssnic.anycastdns.cz"
4 "pch.nic.ss"
65 ]
76 }
44 "lns22.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
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 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/faith_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/faith_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/faith_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/faith_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/faith_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/faith_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/faith_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/faith_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/faith_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/faith_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/faith_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/faith_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/faith_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/faith_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/faith_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/faith_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/faith_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/faith_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/faith_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/faith_zh_3.0.xml"
100100 }
101101 ]
102102 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/farmers_zh_3.0.xml"
1996 }
2097 ]
2198 }
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 }
1717 {
1818 "type": "idn-table",
1919 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_da_1.0.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_da_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_de_1.0.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_de_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_es_1.0.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_es_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_fi_1.0.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_fi_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
3939 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_hu_1.0.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_hu_3.0.xml"
4141 },
4242 {
4343 "type": "idn-table",
4444 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_is_1.0.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_is_3.0.xml"
4646 },
4747 {
4848 "type": "idn-table",
4949 "key": "it",
50 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_it_1.0.txt"
50 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_it_3.0.xml"
5151 },
5252 {
5353 "type": "idn-table",
5454 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ja_1.0.txt"
55 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ja_3.0.xml"
5656 },
5757 {
5858 "type": "idn-table",
5959 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ko_1.0.txt"
60 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ko_3.0.xml"
6161 },
6262 {
6363 "type": "idn-table",
6464 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lt_1.0.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lt_3.0.xml"
6666 },
6767 {
6868 "type": "idn-table",
6969 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lv_1.0.txt"
70 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_lv_3.0.xml"
7171 },
7272 {
7373 "type": "idn-table",
7474 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_no_1.0.txt"
75 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_no_3.0.xml"
7676 },
7777 {
7878 "type": "idn-table",
7979 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pl_1.0.txt"
80 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pl_3.0.xml"
8181 },
8282 {
8383 "type": "idn-table",
8484 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pt_1.0.txt"
85 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_pt_3.0.xml"
8686 },
8787 {
8888 "type": "idn-table",
8989 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ru_1.0.txt"
90 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_ru_3.0.xml"
9191 },
9292 {
9393 "type": "idn-table",
9494 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_sv_1.0.txt"
95 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_sv_3.0.xml"
9696 },
9797 {
9898 "type": "idn-table",
9999 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_zh_1.0.txt"
100 "value": "https://www.iana.org/domains/idn-tables/tables/ferrero_zh_3.0.xml"
101101 }
102102 ]
103103 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/film_ar_3.0.xml"
18 },
19 {
20 "type": "idn-table",
21 "key": "da",
22 "value": "https://www.iana.org/domains/idn-tables/tables/film_da_3.0.xml"
23 },
24 {
25 "type": "idn-table",
26 "key": "de",
27 "value": "https://www.iana.org/domains/idn-tables/tables/film_de_3.0.xml"
28 },
29 {
30 "type": "idn-table",
31 "key": "es",
32 "value": "https://www.iana.org/domains/idn-tables/tables/film_es_3.0.xml"
33 },
34 {
35 "type": "idn-table",
36 "key": "fi",
37 "value": "https://www.iana.org/domains/idn-tables/tables/film_fi_3.0.xml"
38 },
39 {
40 "type": "idn-table",
41 "key": "fr",
42 "value": "https://www.iana.org/domains/idn-tables/tables/film_fr_3.0.xml"
43 },
44 {
45 "type": "idn-table",
46 "key": "he",
47 "value": "https://www.iana.org/domains/idn-tables/tables/film_he_3.0.xml"
48 },
49 {
50 "type": "idn-table",
51 "key": "hi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/film_hi_3.0.xml"
53 },
54 {
55 "type": "idn-table",
56 "key": "hu",
57 "value": "https://www.iana.org/domains/idn-tables/tables/film_hu_3.0.xml"
58 },
59 {
60 "type": "idn-table",
61 "key": "is",
62 "value": "https://www.iana.org/domains/idn-tables/tables/film_is_3.0.xml"
63 },
64 {
65 "type": "idn-table",
66 "key": "it",
67 "value": "https://www.iana.org/domains/idn-tables/tables/film_it_3.0.xml"
68 },
69 {
70 "type": "idn-table",
71 "key": "ja",
72 "value": "https://www.iana.org/domains/idn-tables/tables/film_ja_3.0.xml"
73 },
74 {
75 "type": "idn-table",
76 "key": "ko",
77 "value": "https://www.iana.org/domains/idn-tables/tables/film_ko_3.0.xml"
78 },
79 {
80 "type": "idn-table",
81 "key": "lt",
82 "value": "https://www.iana.org/domains/idn-tables/tables/film_lt_3.0.xml"
83 },
84 {
85 "type": "idn-table",
86 "key": "lv",
87 "value": "https://www.iana.org/domains/idn-tables/tables/film_lv_3.0.xml"
88 },
89 {
90 "type": "idn-table",
91 "key": "nl",
92 "value": "https://www.iana.org/domains/idn-tables/tables/film_nl_3.0.xml"
93 },
94 {
95 "type": "idn-table",
96 "key": "no",
97 "value": "https://www.iana.org/domains/idn-tables/tables/film_no_3.0.xml"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/film_pl_3.0.xml"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/film_pt_3.0.xml"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/film_ru_3.0.xml"
113 },
114 {
115 "type": "idn-table",
116 "key": "sv",
117 "value": "https://www.iana.org/domains/idn-tables/tables/film_sv_3.0.xml"
118 },
119 {
120 "type": "idn-table",
121 "key": "zh",
122 "value": "https://www.iana.org/domains/idn-tables/tables/film_zh_3.0.xml"
16123 }
17124 ]
18125 }
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": "fj",
2 "infoURL": "http://domains.fj",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.usp.ac.fj",
7 "whoisURL": "http://domains.fj",
88 "nameServers": [
9 "adns1.berkeley.edu",
10 "adns2.berkeley.edu",
119 "auth00.ns.uu.net",
12 "manu.usp.ac.fj",
1310 "rip.psg.com",
1411 "teri.usp.ac.fj"
1512 ],
1717 {
1818 "type": "idn-table",
1919 "key": "de",
20 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_de_1.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_de_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "es",
25 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_es_1.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_es_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "ja",
30 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ja_1.0.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ja_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "ko",
35 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ko_1.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ko_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
3939 "key": "ru",
40 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ru_1.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_ru_3.0.xml"
4141 },
4242 {
4343 "type": "idn-table",
4444 "key": "zh",
45 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_zh_1.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/flickr_zh_3.0.xml"
4646 }
4747 ]
4848 }
00 {
11 "domain": "fm",
2 "infoURL": "https://dot.fm/",
23 "tags": [
34 "country",
45 "generic",
56 "geo"
67 ],
78 "whoisServer": "whois.nic.fm",
8 "whoisURL": "http://dot.fm/whois.html",
99 "nameServers": [
1010 "tld1.ultradns.net",
1111 "tld2.ultradns.net",
1313 "tld4.ultradns.org",
1414 "tld5.ultradns.info",
1515 "tld6.ultradns.co.uk"
16 ],
17 "wildcards": [
18 "198.74.54.240"
1916 ],
2017 "policies": [
2118 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/ford_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "fr",
25 "value": "https://www.iana.org/domains/idn-tables/tables/ford_fr_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "pl",
30 "value": "https://www.iana.org/domains/idn-tables/tables/ford_pl_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "ru",
35 "value": "https://www.iana.org/domains/idn-tables/tables/ford_ru_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "sv",
40 "value": "https://www.iana.org/domains/idn-tables/tables/ford_sv_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "zh",
45 "value": "https://www.iana.org/domains/idn-tables/tables/ford_zh_3.0.xml"
1946 }
2047 ]
2148 }
55 ],
66 "whoisServer": "whois.nic.forex",
77 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
8 "a.nic.forex",
9 "b.nic.forex",
10 "c.nic.forex",
11 "d.nic.forex"
1212 ],
1313 "policies": [
1414 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/fox_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/fox_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/fox_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/fox_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/fox_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/fox_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/fox_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/fox_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/fox_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/fox_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/fox_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/fox_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/fox_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/fox_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/fox_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/fox_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/gap_es_3.0.xml"
1921 }
2022 ]
2123 }
44 ],
55 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
7 "ns71.domaincontrol.com",
8 "ns72.domaincontrol.com"
7 "ns-cloud-a1.googledomains.com",
8 "ns-cloud-a2.googledomains.com",
9 "ns-cloud-a3.googledomains.com",
10 "ns-cloud-a4.googledomains.com"
911 ]
1012 }
55 "geo"
66 ],
77 "whoisServer": "whois.nic.ge",
8 "whoisURL": "http://www.registration.ge/",
98 "nameServers": [
109 "ge.hostmaster.ua",
1110 "ns.nic.ge",
44 "brand",
55 "generic"
66 ],
7 "whoisServer": "whois.afilias-srs.net",
7 "whoisServer": "whois.nic.gea",
88 "nameServers": [
9 "a0.nic.gea",
10 "a2.nic.gea",
11 "b0.nic.gea",
12 "c0.nic.gea"
9 "a.dns.nic.gea",
10 "m.dns.nic.gea",
11 "n.dns.nic.gea"
1312 ],
1413 "policies": [
1514 {
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
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": "gf",
2 "infoURL": "https://www.dom-enic.com/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.mediaserv.net",
7 "whoisURL": "https://www.dom-enic.com/whois.html",
88 "nameServers": [
99 "ns1-gp.mediaserv.net",
1010 "ns1-mq.mediaserv.net"
77 "nameServers": [
88 "c.ci-servers.org",
99 "dns1.nominetdns.uk",
10 "e.ci-servers.gg",
11 "f.ci-servers.je",
12 "ns0.ja.net",
13 "ns99.dns.net.nz"
10 "dns2.nominetdns.uk",
11 "dns3.nominetdns.uk",
12 "dns4.nominetdns.uk",
13 "e.ci-servers.net"
1414 ],
1515 "policies": [
1616 {
77 "nameServers": [
88 "a.nuuk.nic.gl",
99 "d.nic.gl",
10 "ns.cocca.fr"
10 "ns1.anycastdns.cz",
11 "ns2.anycastdns.cz"
1112 ]
1213 }
00 {
11 "domain": "gouv.cd",
22 "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"
3 "ns-root-21.scpt-network.net",
4 "ns-root-22.scpt-network.net",
5 "ns-root-23.scpt-network.net"
96 ]
107 }
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 {
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 {
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"
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.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 {
44 "lns22.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": "gp",
2 "infoURL": "https://www.nic.gp/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.gp",
7 "whoisURL": "https://www.dom-enic.com/whois.html",
88 "nameServers": [
99 "a.lactld.org",
1010 "gp.cctld.authdns.ripe.net",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/grainger_es_3.0.xml"
1921 }
2022 ]
2123 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/green_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/green_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/green_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/green_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/green_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/green_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/green_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/green_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/green_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/green_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/green_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/green_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/green_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/green_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/green_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/green_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/green_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/green_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/green_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/green_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/green_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/green_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/green_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/green_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/green_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/green_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
66 "whoisServer": "whois.nic.gs",
77 "nameServers": [
88 "ns.anycast.nic.gs",
9 "ns.cocca.fr"
9 "ns1.anycastdns.cz",
10 "ns2.anycastdns.cz"
1011 ],
1112 "policies": [
1213 {
66 ],
77 "whoisServer": "whois.nic.gucci",
88 "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"
9 "dns1.nic.gucci",
10 "dns2.nic.gucci",
11 "dns3.nic.gucci",
12 "dns4.nic.gucci",
13 "dnsa.nic.gucci",
14 "dnsb.nic.gucci",
15 "dnsc.nic.gucci",
16 "dnsd.nic.gucci"
1517 ],
1618 "policies": [
19 {
20 "type": "idn-table",
21 "key": "ar",
22 "value": "https://www.iana.org/domains/idn-tables/tables/gucci_ar_1.0.txt"
23 },
1724 {
1825 "type": "idn-table",
1926 "key": "da",
4350 "type": "idn-table",
4451 "key": "is",
4552 "value": "https://www.iana.org/domains/idn-tables/tables/gucci_is_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "it",
57 "value": "https://www.iana.org/domains/idn-tables/tables/gucci_it_1.txt"
4658 },
4759 {
4860 "type": "idn-table",
66 "whoisServer": "whois.registry.gy",
77 "nameServers": [
88 "a.lactld.org",
9 "gy-ns.anycast.pch.net",
10 "ns.cocca.fr"
9 "gy-ns.anycast.pch.net"
1110 ],
1211 "policies": [
1312 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/hbo_zh_3.0.xml"
1996 }
2097 ]
2198 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/health_es_3.0.xml"
1820 }
1921 ]
2022 }
3333 {
3434 "type": "idn-table",
3535 "key": "lo",
36 "value": "https://www.iana.org/domains/idn-tables/tables/host_lo_1.1.txt"
36 "value": "https://www.iana.org/domains/idn-tables/tables/host_lo_2.0.txt"
3737 },
3838 {
3939 "type": "idn-table",
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/hoteles_es_3.0.xml"
1820 }
1921 ]
2022 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_da_3.0.xml"
20 },
21 {
22 "type": "idn-table",
23 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_de_3.0.xml"
25 },
26 {
27 "type": "idn-table",
28 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_es_3.0.xml"
30 },
31 {
32 "type": "idn-table",
33 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_fi_3.0.xml"
35 },
36 {
37 "type": "idn-table",
38 "key": "hu",
39 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_hu_3.0.xml"
40 },
41 {
42 "type": "idn-table",
43 "key": "is",
44 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_is_3.0.xml"
45 },
46 {
47 "type": "idn-table",
48 "key": "ja",
49 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_ja_3.0.xml"
50 },
51 {
52 "type": "idn-table",
53 "key": "ko",
54 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_ko_3.0.xml"
55 },
56 {
57 "type": "idn-table",
58 "key": "lt",
59 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_lt_3.0.xml"
60 },
61 {
62 "type": "idn-table",
63 "key": "lv",
64 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_lv_3.0.xml"
65 },
66 {
67 "type": "idn-table",
68 "key": "no",
69 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_no_3.0.xml"
70 },
71 {
72 "type": "idn-table",
73 "key": "pl",
74 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_pl_3.0.xml"
75 },
76 {
77 "type": "idn-table",
78 "key": "pt",
79 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_pt_3.0.xml"
80 },
81 {
82 "type": "idn-table",
83 "key": "ru",
84 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_ru_3.0.xml"
85 },
86 {
87 "type": "idn-table",
88 "key": "sv",
89 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_sv_3.0.xml"
90 },
91 {
92 "type": "idn-table",
93 "key": "zh",
94 "value": "https://www.iana.org/domains/idn-tables/tables/hotels_zh_3.0.xml"
1895 }
1996 ]
2097 }
1717 {
1818 "type": "idn-table",
1919 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_da_1.0.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_da_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_de_1.0.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_de_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_es_1.0.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_es_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_fi_1.0.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_fi_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
3939 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_hu_1.0.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_hu_3.0.xml"
4141 },
4242 {
4343 "type": "idn-table",
4444 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_is_1.0.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_is_3.0.xml"
4646 },
4747 {
4848 "type": "idn-table",
4949 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ja_1.0.txt"
50 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ja_3.0.xml"
5151 },
5252 {
5353 "type": "idn-table",
5454 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ko_1.0.txt"
55 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ko_3.0.xml"
5656 },
5757 {
5858 "type": "idn-table",
5959 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lt_1.0.txt"
60 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lt_3.0.xml"
6161 },
6262 {
6363 "type": "idn-table",
6464 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lv_1.0.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_lv_3.0.xml"
6666 },
6767 {
6868 "type": "idn-table",
6969 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_no_1.0.txt"
70 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_no_3.0.xml"
7171 },
7272 {
7373 "type": "idn-table",
7474 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pl_1.0.txt"
75 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pl_3.0.xml"
7676 },
7777 {
7878 "type": "idn-table",
7979 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pt_1.0.txt"
80 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_pt_3.0.xml"
8181 },
8282 {
8383 "type": "idn-table",
8484 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ru_1.0.txt"
85 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_ru_3.0.xml"
8686 },
8787 {
8888 "type": "idn-table",
8989 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_sv_1.0.txt"
90 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_sv_3.0.xml"
9191 },
9292 {
9393 "type": "idn-table",
9494 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_zh_1.0.txt"
95 "value": "https://www.iana.org/domains/idn-tables/tables/hsbc_zh_3.0.xml"
9696 }
9797 ]
9898 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/hyatt_es_3.0.xml"
1921 }
2022 ]
2123 }
44 "country",
55 "geo"
66 ],
7 "whoisServer": "whois.iedr.ie",
7 "whoisServer": "whois.weare.ie",
88 "nameServers": [
99 "b.ns.ie",
1010 "c.ns.ie",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/ieee_es_3.0.xml"
1921 }
2022 ]
2123 }
00 {
11 "domain": "info.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/intuit_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/ipiranga_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/itau_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/itau_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/itau_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/itau_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/itau_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/itau_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/itau_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/itau_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/itau_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/itau_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/itau_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/itau_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/itau_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/itau_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/itau_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/itau_zh_3.0.xml"
1996 }
2097 ]
2198 }
55 "generic"
66 ],
77 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.jcp",
10 "a2.nic.jcp",
11 "b0.nic.jcp",
12 "c0.nic.jcp"
13 ],
148 "policies": [
159 {
1610 "type": "idn-disallowed"
77 "nameServers": [
88 "c.ci-servers.org",
99 "dns1.nominetdns.uk",
10 "e.ci-servers.gg",
11 "f.ci-servers.je",
12 "ns0.ja.net",
13 "ns99.dns.net.nz"
10 "dns2.nominetdns.uk",
11 "dns3.nominetdns.uk",
12 "dns4.nominetdns.uk",
13 "e.ci-servers.net"
1414 ],
1515 "policies": [
1616 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/jmp_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/jnj_es_3.0.xml"
1921 }
2022 ]
2123 }
+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 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/jpmorgan_zh_3.0.xml"
1996 }
2097 ]
2198 }
22 "nameServers": [
33 "miles.ns.cloudflare.com",
44 "pam.ns.cloudflare.com"
5 ],
6 "wildcards": [
7 "2a01:4f8:211:1443:31::b4a6"
58 ]
69 }
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/kim_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/kim_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/kim_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/kim_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/kim_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/kim_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/kim_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/kim_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/kim_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/kim_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/kim_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/kim_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/kim_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/kim_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/kim_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/kim_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/kim_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/kim_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/kim_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/kim_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/kim_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/kim_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/kim_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/kim_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/kim_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/kim_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_da_1.0.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_de_1.0.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_es_1.0.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_fi_1.0.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "hu",
39 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_hu_1.0.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_hu_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "is",
44 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_is_1.0.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_is_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "it",
49 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_it_1.0.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_it_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ja_1.0.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ko_1.0.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lt_1.0.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lv_1.0.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_no_1.0.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pl_1.0.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pt_1.0.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ru_1.0.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_sv_1.0.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_zh_1.0.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/kinder_zh_3.0.xml"
100100 }
101101 ]
102102 }
00 {
11 "domain": "kn",
2 "infoURL": "http://www.nic.kn/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.kn",
7 "whoisURL": "http://www.nic.kn/",
88 "nameServers": [
9 "ns.cocca.fr",
10 "ns.coccaregistry.org",
9 "ns1.anycastdns.cz",
10 "ns2.anycastdns.cz",
1111 "pch.nic.kn"
1212 ],
1313 "policies": [
1717 {
1818 "type": "idn-table",
1919 "key": "de",
20 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_de_2.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_de_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "es",
25 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_es_2.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_es_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "ja",
30 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ja_2.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ja_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "ko",
35 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ko_2.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_ko_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
3939 "key": "zh",
40 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_zh_2.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/kpmg_zh_3.0.xml"
4141 }
4242 ]
4343 }
44 ],
55 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
7 "ns1.dns.com",
8 "ns2.dns.com"
7 "jm1.dns.com",
8 "jm2.dns.com"
99 ]
1010 }
00 {
11 "domain": "ky",
2 "infoURL": "https://kyregistry.ky/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.kyregistry.ky",
7 "whoisURL": "http://kynseweb.messagesecure.com/kywebadmin/",
88 "nameServers": [
99 "ns1.uniregistry.net",
1010 "ns2.uniregistry.info",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/lanxess_zh_3.0.xml"
1996 }
2097 ]
2198 }
00 {
11 "domain": "lc",
2 "infoURL": "http://www.nic.lc",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.afilias-grs.info",
7 "whoisURL": "http://www.nic.lc",
88 "nameServers": [
99 "a0.cctld.afilias-nst.info",
1010 "a2.cctld.afilias-nst.info",
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/lgbt_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/lifeinsurance_es_3.0.xml"
1820 }
1921 ]
2022 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/lilly_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "fr",
25 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_fr_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "pl",
30 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_pl_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "ru",
35 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_ru_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "sv",
40 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_sv_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "zh",
45 "value": "https://www.iana.org/domains/idn-tables/tables/lincoln_zh_3.0.xml"
1946 }
2047 ]
2148 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/loan_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/loan_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/loan_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/loan_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/loan_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/loan_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/loan_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/loan_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/loan_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/loan_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/loan_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/loan_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/loan_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/loan_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/loan_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/loan_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/loan_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/loan_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/loan_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/loan_zh_3.0.xml"
100100 }
101101 ]
102102 }
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 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/lotto_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
00 {
11 "domain": "ls",
2 "infoURL": "http://www.co.ls/",
2 "infoURL": "http://www.nic.ls/",
33 "tags": [
4 "closed",
54 "country",
65 "geo"
76 ],
87 "whoisServer": "whois.nic.ls",
9 "whoisURL": "http://www.co.ls/co.asp",
108 "nameServers": [
119 "ls-ns.anycast.pch.net",
1210 "ns-ls.afrinic.net",
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"
55 ],
66 "whoisServer": "whois.nic.markets",
77 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
8 "a.nic.markets",
9 "b.nic.markets",
10 "c.nic.markets",
11 "d.nic.markets"
1212 ],
1313 "policies": [
1414 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/mattel_es_3.0.xml"
1921 }
2022 ]
2123 }
11 "domain": "me.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
5 "root.nic.ss",
6 "ssnic.anycastdns.cz"
4 "pch.nic.ss"
75 ]
86 }
00 {
11 "domain": "med.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/mint_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/mint_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/mint_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/mint_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/mint_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/mint_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/mint_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/mint_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/mint_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/mint_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/mint_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/mint_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/mint_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/mint_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/mint_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/mint_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/mlb_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 {
1616 "type": "idn-table",
1717 "key": "ja",
18 "value": "https://www.iana.org/domains/idn-tables/tables/moe_ja_1.0.txt"
18 "value": "https://www.iana.org/domains/idn-tables/tables/moe_ja_3.0.xml"
1919 }
2020 ]
2121 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/moto_da_3.0.xml"
20 },
21 {
22 "type": "idn-table",
23 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/moto_de_3.0.xml"
25 },
26 {
27 "type": "idn-table",
28 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/moto_es_3.0.xml"
30 },
31 {
32 "type": "idn-table",
33 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/moto_fi_3.0.xml"
35 },
36 {
37 "type": "idn-table",
38 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/moto_fr_3.0.xml"
40 },
41 {
42 "type": "idn-table",
43 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/moto_hu_3.0.xml"
45 },
46 {
47 "type": "idn-table",
48 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/moto_is_3.0.xml"
50 },
51 {
52 "type": "idn-table",
53 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/moto_ja_3.0.xml"
55 },
56 {
57 "type": "idn-table",
58 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/moto_ko_3.0.xml"
60 },
61 {
62 "type": "idn-table",
63 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/moto_lt_3.0.xml"
65 },
66 {
67 "type": "idn-table",
68 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/moto_lv_3.0.xml"
70 },
71 {
72 "type": "idn-table",
73 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/moto_no_3.0.xml"
75 },
76 {
77 "type": "idn-table",
78 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/moto_pl_3.0.xml"
80 },
81 {
82 "type": "idn-table",
83 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/moto_pt_3.0.xml"
85 },
86 {
87 "type": "idn-table",
88 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/moto_ru_3.0.xml"
90 },
91 {
92 "type": "idn-table",
93 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/moto_sv_3.0.xml"
95 },
96 {
97 "type": "idn-table",
98 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/moto_zh_3.0.xml"
18100 }
19101 ]
20102 }
00 {
11 "domain": "mq",
2 "infoURL": "https://www.dom-enic.com/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.mediaserv.net",
7 "whoisURL": "https://www.dom-enic.com/whois.html",
88 "nameServers": [
9 "ns1-fr.mediaserv.net",
109 "ns1-gp.mediaserv.net",
1110 "ns1-mq.mediaserv.net"
1211 ],
66 ],
77 "whoisServer": "whois.nic.mtn",
88 "nameServers": [
9 "a.nic.mtn",
10 "b.nic.mtn",
11 "c.nic.mtn",
12 "d.nic.mtn"
9 "dns1.nic.mtn",
10 "dns2.nic.mtn",
11 "dns3.nic.mtn",
12 "dns4.nic.mtn",
13 "dnsa.nic.mtn",
14 "dnsb.nic.mtn",
15 "dnsc.nic.mtn",
16 "dnsd.nic.mtn"
1317 ],
1418 "policies": [
1519 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/mutual_es_3.0.xml"
1921 }
2022 ]
2123 }
00 {
11 "domain": "mw",
2 "infoURL": "http://nic.mw/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.mw",
7 "whoisURL": "http://www.registrar.mw/",
88 "nameServers": [
99 "chambo.sdnp.org.mw",
1010 "d.ext.nic.cz",
44 "noah.ns.cloudflare.com"
55 ],
66 "wildcards": [
7 "104.27.156.189",
8 "104.27.157.189",
7 "104.21.75.127",
98 "172.67.175.218",
10 "2606:4700:3031::681b:9cbd",
11 "2606:4700:3034::681b:9dbd",
9 "2606:4700:3036::6815:4b7f",
1210 "2606:4700:3036::ac43:afda"
1311 ],
1412 "policies": [
00 {
11 "domain": "mz",
2 "infoURL": "https://www.domains.co.mz",
23 "tags": [
34 "closed",
45 "country",
56 "geo"
67 ],
78 "whoisServer": "whois.nic.mz",
8 "whoisURL": "http://www.domains.co.mz",
99 "nameServers": [
1010 "anyns.uem.mz",
1111 "dzowo.uem.mz",
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/nba_es_3.0.xml"
1921 }
2022 ]
2123 }
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 }
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.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",
5 "ns-root-23.scpt-network.net"
96 ],
107 "policies": [
118 {
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.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 {
0 {
1 "domain": "net.ms",
2 "nameServers": [
3 "ns1.idnscan.net",
4 "ns6.idnscan.net"
5 ]
6 }
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": [
11 "domain": "net.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
54 "pch.nic.ss"
65 ]
76 }
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 {
44 "lns22.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
1717 {
1818 "type": "idn-table",
1919 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/neustar_es_1.0.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/neustar_es_3.0.xml"
2121 }
2222 ]
2323 }
66 "whoisServer": "whois.nic.nf",
77 "nameServers": [
88 "ns.anycast.nic.nf",
9 "ns.cocca.fr"
9 "ns1.anycastdns.cz",
10 "ns2.anycastdns.cz"
1011 ],
1112 "policies": [
1213 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/nfl_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/nike_es_3.0.xml"
1921 }
2022 ]
2123 }
44 ],
55 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
7 "ns29.domaincontrol.com",
8 "ns30.domaincontrol.com"
7 "pdns07.domaincontrol.com",
8 "pdns08.domaincontrol.com"
99 ]
1010 }
44 "ns2.hostnetbv.com",
55 "ns3.hostnetbv.nl"
66 ],
7 "wildcards": [
8 "136.144.154.12"
9 ],
107 "policies": [
118 {
129 "type": "idn-disallowed"
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/northwesternmutual_es_3.0.xml"
1921 }
2022 ]
2123 }
1111 "nameServers": [
1212 "a.ns.nic.nowruz",
1313 "b.ns.nic.nowruz",
14 "ns.cocca.fr"
14 "ns1.anycastdns.cz",
15 "ns2.anycastdns.cz"
1516 ],
1617 "policies": [
1718 {
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",
7 "54.81.12.134",
108 "54.87.195.23"
119 ],
1210 "policies": [
2020 {
2121 "type": "idn-table",
2222 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/nyc_es_1.1.txt"
23 "value": "https://www.iana.org/domains/idn-tables/tables/nyc_es_3.0.xml"
2424 }
2525 ]
2626 }
00 {
11 "domain": "off.ai",
22 "nameServers": [
3 "ns.cocca.fr",
43 "pch.whois.ai"
54 ],
65 "policies": [
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/office_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/office_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/office_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/office_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/office_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/office_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/office_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/office_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/office_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/office_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/office_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/office_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/office_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/office_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/office_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/office_zh_3.0.xml"
1996 }
2097 ]
2198 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "ar",
18 "value": "https://www.iana.org/domains/idn-tables/tables/olayan_ar_3.0.xml"
1719 }
1820 ]
1921 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "ar",
18 "value": "https://www.iana.org/domains/idn-tables/tables/olayangroup_ar_3.0.xml"
1719 }
1820 ]
1921 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/oldnavy_es_3.0.xml"
1921 }
2022 ]
2123 }
3434 {
3535 "type": "idn-table",
3636 "key": "lo",
37 "value": "https://www.iana.org/domains/idn-tables/tables/online_lo_1.1.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/online_lo_2.0.txt"
3838 },
3939 {
4040 "type": "idn-table",
4141 "key": "mul-Cyrl",
42 "value": "https://www.iana.org/domains/idn-tables/tables/online_cyrl_1.0.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/online_cyrl_1.1.txt"
4343 },
4444 {
4545 "type": "idn-table",
5454 {
5555 "type": "idn-table",
5656 "key": "th",
57 "value": "https://www.iana.org/domains/idn-tables/tables/online_th_1.1.txt"
57 "value": "https://www.iana.org/domains/idn-tables/tables/online_th_2.0.txt"
5858 },
5959 {
6060 "type": "idn-table",
6161 "key": "zh",
62 "value": "https://www.iana.org/domains/idn-tables/tables/online_zh_1.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/online_zh_1.0.txt"
6363 }
6464 ]
6565 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/open_es_3.0.xml"
1921 }
2022 ]
2123 }
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.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",
5 "ns-root-23.scpt-network.net"
96 ],
107 "policies": [
118 {
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.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.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 {
4646 {
4747 "type": "idn-table",
4848 "key": "hu",
49 "value": "https://www.iana.org/domains/idn-tables/tables/org_hu_1.0.html"
49 "value": "https://www.iana.org/domains/idn-tables/tables/org_hu_1.txt"
5050 },
5151 {
5252 "type": "idn-table",
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.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 {
11 "domain": "org.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
54 "pch.nic.ss"
65 ]
76 }
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 {
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/organic_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/organic_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/organic_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/organic_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/organic_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/organic_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/organic_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/organic_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/organic_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/organic_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/organic_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/organic_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/organic_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/organic_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/organic_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/organic_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/organic_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/organic_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/organic_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/organic_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/organic_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/organic_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/organic_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/organic_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/organic_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/organic_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
2020 ],
2121 "policies": [
2222 {
23 "type": "idn-disallowed"
23 "type": "idn-table",
24 "key": "ja",
25 "value": "https://www.iana.org/domains/idn-tables/tables/osaka_ja_3.0.xml"
2426 }
2527 ]
2628 }
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 {
+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 }
1010 "nameServers": [
1111 "a.ns.nic.pars",
1212 "b.ns.nic.pars",
13 "ns.cocca.fr"
13 "ns1.anycastdns.cz",
14 "ns2.anycastdns.cz"
1415 ],
1516 "policies": [
1617 {
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/party_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/party_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/party_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/party_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/party_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/party_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/party_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/party_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/party_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/party_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/party_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/party_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/party_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/party_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/party_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/party_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/party_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/party_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/party_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/party_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/party_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/party_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/party_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/party_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/party_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/party_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/party_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/party_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/party_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/party_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/party_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/party_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/party_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/party_zh_3.0.xml"
100100 }
101101 ]
102102 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/passagens_es_3.0.xml"
1921 }
2022 ]
2123 }
66 ],
77 "whoisServer": "kero.yachay.pe",
88 "nameServers": [
9 "a.lactld.org",
910 "pch.rcp.pe",
1011 "pe1.dnsnode.net",
1112 "quipu.rcp.net.pe"
00 {
11 "domain": "perso.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/pet_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/pet_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/pet_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/pet_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/pet_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/pet_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/pet_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/pet_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/pet_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/pet_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/pet_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/pet_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/pet_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/pet_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/pet_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/pet_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/pet_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/pet_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/pet_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/pet_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/pet_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/pet_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/pet_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/pet_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/pet_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/pet_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/pfizer_es_3.0.xml"
1921 }
2022 ]
2123 }
44 "ns2.sedoparking.com"
55 ],
66 "wildcards": [
7 "91.195.241.136"
7 "91.195.241.137"
88 ],
99 "policies": [
1010 {
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/pharmacy_es_3.0.xml"
1820 }
1921 ]
2022 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "ar",
18 "value": "https://www.iana.org/domains/idn-tables/tables/pink_ar_1.txt"
19 },
20 {
21 "type": "idn-table",
22 "key": "be",
23 "value": "https://www.iana.org/domains/idn-tables/tables/pink_be_1.txt"
24 },
25 {
26 "type": "idn-table",
27 "key": "bg",
28 "value": "https://www.iana.org/domains/idn-tables/tables/pink_bg_1.txt"
29 },
30 {
31 "type": "idn-table",
32 "key": "bs",
33 "value": "https://www.iana.org/domains/idn-tables/tables/pink_bs_1.txt"
34 },
35 {
36 "type": "idn-table",
37 "key": "da",
38 "value": "https://www.iana.org/domains/idn-tables/tables/pink_da_1.txt"
39 },
40 {
41 "type": "idn-table",
42 "key": "de",
43 "value": "https://www.iana.org/domains/idn-tables/tables/pink_de_1.txt"
44 },
45 {
46 "type": "idn-table",
47 "key": "es",
48 "value": "https://www.iana.org/domains/idn-tables/tables/pink_es_1.txt"
49 },
50 {
51 "type": "idn-table",
52 "key": "fi",
53 "value": "https://www.iana.org/domains/idn-tables/tables/pink_fi_1.txt"
54 },
55 {
56 "type": "idn-table",
57 "key": "fr",
58 "value": "https://www.iana.org/domains/idn-tables/tables/pink_fr_1.txt"
59 },
60 {
61 "type": "idn-table",
62 "key": "hi",
63 "value": "https://www.iana.org/domains/idn-tables/tables/pink_hi_1.txt"
64 },
65 {
66 "type": "idn-table",
67 "key": "hu",
68 "value": "https://www.iana.org/domains/idn-tables/tables/pink_hu_1.txt"
69 },
70 {
71 "type": "idn-table",
72 "key": "is",
73 "value": "https://www.iana.org/domains/idn-tables/tables/pink_is_1.txt"
74 },
75 {
76 "type": "idn-table",
77 "key": "it",
78 "value": "https://www.iana.org/domains/idn-tables/tables/pink_it_1.txt"
79 },
80 {
81 "type": "idn-table",
82 "key": "ko",
83 "value": "https://www.iana.org/domains/idn-tables/tables/pink_ko_1.txt"
84 },
85 {
86 "type": "idn-table",
87 "key": "lt",
88 "value": "https://www.iana.org/domains/idn-tables/tables/pink_lt_1.txt"
89 },
90 {
91 "type": "idn-table",
92 "key": "lv",
93 "value": "https://www.iana.org/domains/idn-tables/tables/pink_lv_1.txt"
94 },
95 {
96 "type": "idn-table",
97 "key": "mk",
98 "value": "https://www.iana.org/domains/idn-tables/tables/pink_mk_1.txt"
99 },
100 {
101 "type": "idn-table",
102 "key": "pl",
103 "value": "https://www.iana.org/domains/idn-tables/tables/pink_pl_1.txt"
104 },
105 {
106 "type": "idn-table",
107 "key": "pt",
108 "value": "https://www.iana.org/domains/idn-tables/tables/pink_pt_1.txt"
109 },
110 {
111 "type": "idn-table",
112 "key": "ru",
113 "value": "https://www.iana.org/domains/idn-tables/tables/pink_ru_1.txt"
114 },
115 {
116 "type": "idn-table",
117 "key": "sr",
118 "value": "https://www.iana.org/domains/idn-tables/tables/pink_sr_1.txt"
119 },
120 {
121 "type": "idn-table",
122 "key": "sr-ME",
123 "value": "https://www.iana.org/domains/idn-tables/tables/pink_sr-me_1.txt"
124 },
125 {
126 "type": "idn-table",
127 "key": "sv",
128 "value": "https://www.iana.org/domains/idn-tables/tables/pink_sv_1.txt"
129 },
130 {
131 "type": "idn-table",
132 "key": "uk",
133 "value": "https://www.iana.org/domains/idn-tables/tables/pink_uk_1.txt"
134 },
135 {
136 "type": "idn-table",
137 "key": "zh-CN",
138 "value": "https://www.iana.org/domains/idn-tables/tables/pink_zh-cn_4.0.txt"
139 },
140 {
141 "type": "idn-table",
142 "key": "zh-TW",
143 "value": "https://www.iana.org/domains/idn-tables/tables/pink_zh-tw_4.0.txt"
17144 }
18145 ]
19146 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/poker_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/poker_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/poker_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/poker_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/poker_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/poker_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/poker_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/poker_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/poker_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/poker_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/poker_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/poker_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/poker_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/poker_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/poker_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/poker_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/poker_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/poker_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/poker_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/poker_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/poker_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/poker_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/poker_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/poker_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/poker_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/poker_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
00 {
11 "domain": "pol.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
44 "lns22.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/pramerica_zh_3.0.xml"
1996 }
2097 ]
2198 }
3333 {
3434 "type": "idn-table",
3535 "key": "lo",
36 "value": "https://www.iana.org/domains/idn-tables/tables/press_lo_1.1.txt"
36 "value": "https://www.iana.org/domains/idn-tables/tables/press_lo_2.0.txt"
3737 },
3838 {
3939 "type": "idn-table",
5858 {
5959 "type": "idn-table",
6060 "key": "zh",
61 "value": "https://www.iana.org/domains/idn-tables/tables/press_zh_1.2.txt"
61 "value": "https://www.iana.org/domains/idn-tables/tables/press_zh_1.0.txt"
6262 }
6363 ]
6464 }
00 {
11 "domain": "presse.ml",
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 "policies": [
87 {
00 {
11 "domain": "pro.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "ar",
19 "value": "https://www.iana.org/domains/idn-tables/tables/pro_ar_1.txt"
20 },
21 {
22 "type": "idn-table",
23 "key": "be",
24 "value": "https://www.iana.org/domains/idn-tables/tables/pro_be_1.txt"
25 },
26 {
27 "type": "idn-table",
28 "key": "bg",
29 "value": "https://www.iana.org/domains/idn-tables/tables/pro_bg_1.txt"
30 },
31 {
32 "type": "idn-table",
33 "key": "bs",
34 "value": "https://www.iana.org/domains/idn-tables/tables/pro_bs_1.txt"
35 },
36 {
37 "type": "idn-table",
38 "key": "da",
39 "value": "https://www.iana.org/domains/idn-tables/tables/pro_da_1.txt"
40 },
41 {
42 "type": "idn-table",
43 "key": "de",
44 "value": "https://www.iana.org/domains/idn-tables/tables/pro_de_1.txt"
45 },
46 {
47 "type": "idn-table",
48 "key": "es",
49 "value": "https://www.iana.org/domains/idn-tables/tables/pro_es_1.txt"
50 },
51 {
52 "type": "idn-table",
53 "key": "fi",
54 "value": "https://www.iana.org/domains/idn-tables/tables/pro_fi_1.txt"
55 },
56 {
57 "type": "idn-table",
58 "key": "fr",
59 "value": "https://www.iana.org/domains/idn-tables/tables/pro_fr_1.txt"
60 },
61 {
62 "type": "idn-table",
63 "key": "hi",
64 "value": "https://www.iana.org/domains/idn-tables/tables/pro_hi_1.txt"
65 },
66 {
67 "type": "idn-table",
68 "key": "hu",
69 "value": "https://www.iana.org/domains/idn-tables/tables/pro_hu_1.txt"
70 },
71 {
72 "type": "idn-table",
73 "key": "is",
74 "value": "https://www.iana.org/domains/idn-tables/tables/pro_is_1.txt"
75 },
76 {
77 "type": "idn-table",
78 "key": "it",
79 "value": "https://www.iana.org/domains/idn-tables/tables/pro_it_1.txt"
80 },
81 {
82 "type": "idn-table",
83 "key": "ko",
84 "value": "https://www.iana.org/domains/idn-tables/tables/pro_ko_1.txt"
85 },
86 {
87 "type": "idn-table",
88 "key": "lt",
89 "value": "https://www.iana.org/domains/idn-tables/tables/pro_lt_1.txt"
90 },
91 {
92 "type": "idn-table",
93 "key": "lv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/pro_lv_1.txt"
95 },
96 {
97 "type": "idn-table",
98 "key": "mk",
99 "value": "https://www.iana.org/domains/idn-tables/tables/pro_mk_1.txt"
100 },
101 {
102 "type": "idn-table",
103 "key": "pl",
104 "value": "https://www.iana.org/domains/idn-tables/tables/pro_pl_1.txt"
105 },
106 {
107 "type": "idn-table",
108 "key": "pt",
109 "value": "https://www.iana.org/domains/idn-tables/tables/pro_pt_1.txt"
110 },
111 {
112 "type": "idn-table",
113 "key": "ru",
114 "value": "https://www.iana.org/domains/idn-tables/tables/pro_ru_1.txt"
115 },
116 {
117 "type": "idn-table",
118 "key": "sr",
119 "value": "https://www.iana.org/domains/idn-tables/tables/pro_sr_1.txt"
120 },
121 {
122 "type": "idn-table",
123 "key": "sr-ME",
124 "value": "https://www.iana.org/domains/idn-tables/tables/pro_sr-me_1.txt"
125 },
126 {
127 "type": "idn-table",
128 "key": "sv",
129 "value": "https://www.iana.org/domains/idn-tables/tables/pro_sv_1.txt"
130 },
131 {
132 "type": "idn-table",
133 "key": "uk",
134 "value": "https://www.iana.org/domains/idn-tables/tables/pro_uk_1.txt"
135 },
136 {
137 "type": "idn-table",
138 "key": "zh-CN",
139 "value": "https://www.iana.org/domains/idn-tables/tables/pro_zh-cn_4.0.txt"
140 },
141 {
142 "type": "idn-table",
143 "key": "zh-TW",
144 "value": "https://www.iana.org/domains/idn-tables/tables/pro_zh-tw_4.0.txt"
18145 }
19146 ]
20147 }
55 "nameServers": [
66 "ns1.subdomain.com",
77 "ns2.subdomain.com"
8 ],
9 "wildcards": [
10 "144.76.162.245",
11 "pro.vg"
128 ]
139 }
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/promo_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/promo_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/promo_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/promo_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/promo_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/promo_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/promo_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/promo_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/promo_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/promo_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/promo_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/promo_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/promo_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/promo_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/promo_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/promo_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/promo_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/promo_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/promo_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/promo_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/promo_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/promo_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/promo_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/promo_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/promo_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/promo_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/pru_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/pru_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/pru_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/pru_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/pru_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/pru_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/pru_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/pru_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/pru_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/pru_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/pru_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/pru_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/pru_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/pru_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/pru_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/pru_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/prudential_zh_3.0.xml"
1996 }
2097 ]
2198 }
1010 "c.dns.pt",
1111 "d.dns.pt",
1212 "e.dns.pt",
13 "f.dns.pt",
1413 "g.dns.pt",
1514 "h.dns.pt",
1615 "ns.dns.br",
44 "private"
55 ],
66 "nameServers": [
7 "ns1.metaregistrar.nl",
8 "ns2.metaregistrar.nl"
7 "nsn1.mijndomein.nl",
8 "nsn2.mijndomein.nl",
9 "nsn3.mijndomein.nl"
910 ],
1011 "wildcards": [
1112 "2a05:d018:964:c0a:a58f:6b32:e401:3d8a",
33 "private"
44 ],
55 "nameServers": [
6 "f1g1ns1.dnspod.net",
7 "f1g1ns2.dnspod.net"
6 "betty.ns.cloudflare.com",
7 "scott.ns.cloudflare.com"
88 ],
99 "policies": [
1010 {
44 ],
55 "whoisServer": "whois.centralnic.com",
66 "nameServers": [
7 "ns71.domaincontrol.com",
8 "ns72.domaincontrol.com"
7 "pdns07.domaincontrol.com",
8 "pdns08.domaincontrol.com"
99 ]
1010 }
44 ],
55 "whoisServer": "whois.nic.qpon",
66 "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"
7 "a.nic.qpon",
8 "b.nic.qpon",
9 "c.nic.qpon",
10 "d.nic.qpon"
1311 ]
1412 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/racing_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/racing_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/racing_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/racing_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/racing_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/racing_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/racing_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/racing_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/racing_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/racing_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/racing_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/racing_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/racing_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/racing_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/racing_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/racing_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/racing_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/racing_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/racing_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/racing_zh_3.0.xml"
100100 }
101101 ]
102102 }
11 "domain": "radio.am",
22 "nameServers": [
33 "a.nic.fm",
4 "b.nic.fm"
4 "b.nic.fm",
5 "c.nic.fm",
6 "d.nic.fm"
57 ],
68 "policies": [
79 {
1212 ],
1313 "policies": [
1414 {
15 "type": "idn-disallowed"
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/red_ar_1.txt"
18 },
19 {
20 "type": "idn-table",
21 "key": "be",
22 "value": "https://www.iana.org/domains/idn-tables/tables/red_be_1.txt"
23 },
24 {
25 "type": "idn-table",
26 "key": "bg",
27 "value": "https://www.iana.org/domains/idn-tables/tables/red_bg_1.txt"
28 },
29 {
30 "type": "idn-table",
31 "key": "bs",
32 "value": "https://www.iana.org/domains/idn-tables/tables/red_bs_1.txt"
33 },
34 {
35 "type": "idn-table",
36 "key": "da",
37 "value": "https://www.iana.org/domains/idn-tables/tables/red_da_1.txt"
38 },
39 {
40 "type": "idn-table",
41 "key": "de",
42 "value": "https://www.iana.org/domains/idn-tables/tables/red_de_1.txt"
43 },
44 {
45 "type": "idn-table",
46 "key": "es",
47 "value": "https://www.iana.org/domains/idn-tables/tables/red_es_1.txt"
48 },
49 {
50 "type": "idn-table",
51 "key": "fi",
52 "value": "https://www.iana.org/domains/idn-tables/tables/red_fi_1.txt"
53 },
54 {
55 "type": "idn-table",
56 "key": "fr",
57 "value": "https://www.iana.org/domains/idn-tables/tables/red_fr_1.txt"
58 },
59 {
60 "type": "idn-table",
61 "key": "hi",
62 "value": "https://www.iana.org/domains/idn-tables/tables/red_hi_1.txt"
63 },
64 {
65 "type": "idn-table",
66 "key": "hu",
67 "value": "https://www.iana.org/domains/idn-tables/tables/red_hu_1.txt"
68 },
69 {
70 "type": "idn-table",
71 "key": "is",
72 "value": "https://www.iana.org/domains/idn-tables/tables/red_is_1.txt"
73 },
74 {
75 "type": "idn-table",
76 "key": "it",
77 "value": "https://www.iana.org/domains/idn-tables/tables/red_it_1.txt"
78 },
79 {
80 "type": "idn-table",
81 "key": "ko",
82 "value": "https://www.iana.org/domains/idn-tables/tables/red_ko_1.txt"
83 },
84 {
85 "type": "idn-table",
86 "key": "lt",
87 "value": "https://www.iana.org/domains/idn-tables/tables/red_lt_1.txt"
88 },
89 {
90 "type": "idn-table",
91 "key": "lv",
92 "value": "https://www.iana.org/domains/idn-tables/tables/red_lv_1.txt"
93 },
94 {
95 "type": "idn-table",
96 "key": "mk",
97 "value": "https://www.iana.org/domains/idn-tables/tables/red_mk_1.txt"
98 },
99 {
100 "type": "idn-table",
101 "key": "pl",
102 "value": "https://www.iana.org/domains/idn-tables/tables/red_pl_1.txt"
103 },
104 {
105 "type": "idn-table",
106 "key": "pt",
107 "value": "https://www.iana.org/domains/idn-tables/tables/red_pt_1.txt"
108 },
109 {
110 "type": "idn-table",
111 "key": "ru",
112 "value": "https://www.iana.org/domains/idn-tables/tables/red_ru_1.txt"
113 },
114 {
115 "type": "idn-table",
116 "key": "sr",
117 "value": "https://www.iana.org/domains/idn-tables/tables/red_sr_1.txt"
118 },
119 {
120 "type": "idn-table",
121 "key": "sr-ME",
122 "value": "https://www.iana.org/domains/idn-tables/tables/red_sr-me_1.txt"
123 },
124 {
125 "type": "idn-table",
126 "key": "sv",
127 "value": "https://www.iana.org/domains/idn-tables/tables/red_sv_1.txt"
128 },
129 {
130 "type": "idn-table",
131 "key": "uk",
132 "value": "https://www.iana.org/domains/idn-tables/tables/red_uk_1.txt"
133 },
134 {
135 "type": "idn-table",
136 "key": "zh-CN",
137 "value": "https://www.iana.org/domains/idn-tables/tables/red_zh-cn_4.0.txt"
138 },
139 {
140 "type": "idn-table",
141 "key": "zh-TW",
142 "value": "https://www.iana.org/domains/idn-tables/tables/red_zh-tw_4.0.txt"
16143 }
17144 ]
18145 }
6464 {
6565 "type": "idn-table",
6666 "key": "mul-Latn",
67 "value": "https://www.iana.org/domains/idn-tables/tables/reise_latn_1.txt"
67 "value": "https://www.iana.org/domains/idn-tables/tables/academy_latn_1.0.txt"
6868 },
6969 {
7070 "type": "idn-table",
00 {
11 "domain": "rel.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/review_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/review_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/review_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/review_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/review_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/review_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/review_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/review_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/review_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/review_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/review_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/review_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/review_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/review_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/review_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/review_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/review_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/review_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/review_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/review_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/review_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/review_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/review_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/review_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/review_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/review_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/review_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/review_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/review_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/review_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/review_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/review_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/review_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/review_zh_3.0.xml"
100100 }
101101 ]
102102 }
1717 {
1818 "type": "idn-table",
1919 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_da_1.0.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_da_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_de_1.0.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_de_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_es_1.0.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_es_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_fi_1.0.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_fi_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
3939 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_hu_1.0.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_hu_3.0.xml"
4141 },
4242 {
4343 "type": "idn-table",
4444 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_is_1.0.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_is_3.0.xml"
4646 },
4747 {
4848 "type": "idn-table",
4949 "key": "it",
50 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_it_1.0.txt"
50 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_it_3.0.xml"
5151 },
5252 {
5353 "type": "idn-table",
5454 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ja_1.0.txt"
55 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ja_3.0.xml"
5656 },
5757 {
5858 "type": "idn-table",
5959 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ko_1.0.txt"
60 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ko_3.0.xml"
6161 },
6262 {
6363 "type": "idn-table",
6464 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lt_1.0.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lt_3.0.xml"
6666 },
6767 {
6868 "type": "idn-table",
6969 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lv_1.0.txt"
70 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_lv_3.0.xml"
7171 },
7272 {
7373 "type": "idn-table",
7474 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_no_1.0.txt"
75 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_no_3.0.xml"
7676 },
7777 {
7878 "type": "idn-table",
7979 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pl_1.0.txt"
80 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pl_3.0.xml"
8181 },
8282 {
8383 "type": "idn-table",
8484 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pt_1.0.txt"
85 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_pt_3.0.xml"
8686 },
8787 {
8888 "type": "idn-table",
8989 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ru_1.0.txt"
90 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_ru_3.0.xml"
9191 },
9292 {
9393 "type": "idn-table",
9494 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_sv_1.0.txt"
95 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_sv_3.0.xml"
9696 },
9797 {
9898 "type": "idn-table",
9999 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_zh_1.0.txt"
100 "value": "https://www.iana.org/domains/idn-tables/tables/rocher_zh_3.0.xml"
101101 }
102102 ]
103103 }
00 {
11 "domain": "ru.tc",
22 "nameServers": [
3 "ns17.above.com",
4 "ns18.above.com"
5 ],
6 "wildcards": [
7 "103.224.182.250"
3 "suspended.nic.tc"
84 ],
95 "policies": [
106 {
00 {
11 "domain": "rw",
2 "infoURL": "https://ricta.org.rw",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.ricta.org.rw",
7 "whoisURL": "http://whois.ricta.org.rw",
88 "nameServers": [
99 "fork.sth.dnsnode.net",
1010 "ns-rw.afrinic.net",
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/safety_es_3.0.xml"
1820 }
1921 ]
2022 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "da",
18 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_da_3.0.xml"
19 },
20 {
21 "type": "idn-table",
22 "key": "fr",
23 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_fr_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "pl",
28 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_pl_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "ru",
33 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_ru_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "sv",
38 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_sv_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "zh",
43 "value": "https://www.iana.org/domains/idn-tables/tables/sandvik_zh_3.0.xml"
1744 }
1845 ]
1946 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "da",
18 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_da_3.0.xml"
19 },
20 {
21 "type": "idn-table",
22 "key": "fr",
23 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_fr_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "pl",
28 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_pl_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "ru",
33 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_ru_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "sv",
38 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_sv_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "zh",
43 "value": "https://www.iana.org/domains/idn-tables/tables/sandvikcoromant_zh_3.0.xml"
1744 }
1845 ]
1946 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/sas_es_3.0.xml"
1921 }
2022 ]
2123 }
55 ],
66 "whoisServer": "whois.nic.net.sb",
77 "nameServers": [
8 "ns.cocca.fr",
8 "ns1.anycastdns.cz",
9 "ns2.anycastdns.cz",
910 "pch.nic.sb"
1011 ],
1112 "policies": [
66 ],
77 "whoisServer": "whois.nic.sbs",
88 "nameServers": [
9 "ac1.nstld.com",
10 "ac2.nstld.com",
11 "ac3.nstld.com",
12 "ac4.nstld.com"
9 "a.nic.sbs",
10 "b.nic.sbs",
11 "c.nic.sbs",
12 "d.nic.sbs"
1313 ],
1414 "policies": [
1515 {
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 }
1212 "ac4.nstld.com"
1313 ],
1414 "policies": [
15 {
16 "type": "idn-table",
17 "key": "ar",
18 "value": "https://www.iana.org/domains/idn-tables/tables/sca_ar_2.5.txt"
19 },
1520 {
1621 "type": "idn-table",
1722 "key": "mul-Arab",
11 "domain": "sch.ss",
22 "nameServers": [
33 "b.ns.tznic.or.tz",
4 "ns-ss.afrinic.net",
54 "ssnic.anycastdns.cz"
65 ]
76 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/science_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/science_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/science_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/science_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/science_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/science_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/science_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/science_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/science_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/science_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/science_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/science_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/science_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/science_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/science_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/science_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/science_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/science_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/science_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/science_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/science_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/science_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/science_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/science_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/science_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/science_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/science_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/science_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/science_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/science_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/science_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/science_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/science_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/science_zh_3.0.xml"
100100 }
101101 ]
102102 }
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 }
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 }
1010 "nameServers": [
1111 "a.ns.nic.shia",
1212 "b.ns.nic.shia",
13 "ns.cocca.fr"
13 "ns1.anycastdns.cz",
14 "ns2.anycastdns.cz"
1415 ],
1516 "policies": [
1617 {
00 {
11 "domain": "shop.ht",
22 "nameServers": [
3 "ns.cocca.fr",
43 "ns1.nic.ht",
54 "ns1.polymtl.ca",
65 "ns3.nic.fr",
55 "generic"
66 ],
77 "whoisServer": "whois.afilias-srs.net",
8 "nameServers": [
9 "a0.nic.shriram",
10 "a2.nic.shriram",
11 "b0.nic.shriram",
12 "c0.nic.shriram"
13 ],
148 "policies": [
159 {
1610 "type": "idn-disallowed"
5959 {
6060 "type": "idn-table",
6161 "key": "zh",
62 "value": "https://www.iana.org/domains/idn-tables/tables/site_zh_1.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/site_zh_1.0.txt"
6363 }
6464 ]
6565 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/skype_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/skype_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/skype_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/skype_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/skype_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/skype_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/skype_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/skype_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/skype_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/skype_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/skype_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/skype_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/skype_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/skype_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/skype_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/skype_zh_3.0.xml"
1996 }
2097 ]
2198 }
00 {
11 "domain": "sl",
2 "infoURL": "https://www.nic.sl",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.sl",
7 "whoisURL": "http://www.nic.sl",
88 "nameServers": [
99 "ns1.neoip.com",
1010 "ns2.neoip.com"
1717 {
1818 "type": "idn-table",
1919 "key": "ar",
20 "value": "https://www.iana.org/domains/idn-tables/tables/song_ar_2.1.txt"
20 "value": "https://www.iana.org/domains/idn-tables/tables/song_ar_3.0.xml"
2121 },
2222 {
2323 "type": "idn-table",
2424 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/song_da_2.1.txt"
25 "value": "https://www.iana.org/domains/idn-tables/tables/song_da_3.0.xml"
2626 },
2727 {
2828 "type": "idn-table",
2929 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/song_de_2.1.txt"
30 "value": "https://www.iana.org/domains/idn-tables/tables/song_de_3.0.xml"
3131 },
3232 {
3333 "type": "idn-table",
3434 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/song_es_2.1.txt"
35 "value": "https://www.iana.org/domains/idn-tables/tables/song_es_3.0.xml"
3636 },
3737 {
3838 "type": "idn-table",
3939 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/song_fi_2.1.txt"
40 "value": "https://www.iana.org/domains/idn-tables/tables/song_fi_3.0.xml"
4141 },
4242 {
4343 "type": "idn-table",
4444 "key": "fr",
45 "value": "https://www.iana.org/domains/idn-tables/tables/song_fr_2.1.txt"
45 "value": "https://www.iana.org/domains/idn-tables/tables/song_fr_3.0.xml"
4646 },
4747 {
4848 "type": "idn-table",
4949 "key": "hu",
50 "value": "https://www.iana.org/domains/idn-tables/tables/song_hu_2.1.txt"
50 "value": "https://www.iana.org/domains/idn-tables/tables/song_hu_3.0.xml"
5151 },
5252 {
5353 "type": "idn-table",
5454 "key": "is",
55 "value": "https://www.iana.org/domains/idn-tables/tables/song_is_2.1.txt"
55 "value": "https://www.iana.org/domains/idn-tables/tables/song_is_3.0.xml"
5656 },
5757 {
5858 "type": "idn-table",
5959 "key": "ja",
60 "value": "https://www.iana.org/domains/idn-tables/tables/song_ja_2.1.txt"
60 "value": "https://www.iana.org/domains/idn-tables/tables/song_ja_3.0.xml"
6161 },
6262 {
6363 "type": "idn-table",
6464 "key": "ko",
65 "value": "https://www.iana.org/domains/idn-tables/tables/song_ko_2.1.txt"
65 "value": "https://www.iana.org/domains/idn-tables/tables/song_ko_3.0.xml"
6666 },
6767 {
6868 "type": "idn-table",
6969 "key": "lt",
70 "value": "https://www.iana.org/domains/idn-tables/tables/song_lt_2.1.txt"
70 "value": "https://www.iana.org/domains/idn-tables/tables/song_lt_3.0.xml"
7171 },
7272 {
7373 "type": "idn-table",
7474 "key": "lv",
75 "value": "https://www.iana.org/domains/idn-tables/tables/song_lv_2.1.txt"
75 "value": "https://www.iana.org/domains/idn-tables/tables/song_lv_3.0.xml"
7676 },
7777 {
7878 "type": "idn-table",
7979 "key": "no",
80 "value": "https://www.iana.org/domains/idn-tables/tables/song_no_2.1.txt"
80 "value": "https://www.iana.org/domains/idn-tables/tables/song_no_3.0.xml"
8181 },
8282 {
8383 "type": "idn-table",
8484 "key": "pl",
85 "value": "https://www.iana.org/domains/idn-tables/tables/song_pl_2.1.txt"
85 "value": "https://www.iana.org/domains/idn-tables/tables/song_pl_3.0.xml"
8686 },
8787 {
8888 "type": "idn-table",
8989 "key": "pt",
90 "value": "https://www.iana.org/domains/idn-tables/tables/song_pt_2.1.txt"
90 "value": "https://www.iana.org/domains/idn-tables/tables/song_pt_3.0.xml"
9191 },
9292 {
9393 "type": "idn-table",
9494 "key": "ru",
95 "value": "https://www.iana.org/domains/idn-tables/tables/song_ru_2.1.txt"
95 "value": "https://www.iana.org/domains/idn-tables/tables/song_ru_3.0.xml"
9696 },
9797 {
9898 "type": "idn-table",
9999 "key": "sv",
100 "value": "https://www.iana.org/domains/idn-tables/tables/song_sv_2.1.txt"
100 "value": "https://www.iana.org/domains/idn-tables/tables/song_sv_3.0.xml"
101101 },
102102 {
103103 "type": "idn-table",
104104 "key": "zh",
105 "value": "https://www.iana.org/domains/idn-tables/tables/song_zh_2.1.txt"
105 "value": "https://www.iana.org/domains/idn-tables/tables/song_zh_3.0.xml"
106106 }
107107 ]
108108 }
22 "infoURL": "https://newgtlds.icann.org/",
33 "tags": [
44 "generic"
5 ],
6 "whoisServer": "whois.afilias-srs.net",
7 "nameServers": [
8 "a0.nic.spa",
9 "a2.nic.spa",
10 "b0.nic.spa",
11 "c0.nic.spa"
512 ],
613 "policies": [
714 {
3434 {
3535 "type": "idn-table",
3636 "key": "lo",
37 "value": "https://www.iana.org/domains/idn-tables/tables/space_lo_1.1.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/space_lo_2.0.txt"
3838 },
3939 {
4040 "type": "idn-table",
4141 "key": "mul-Cyrl",
42 "value": "https://www.iana.org/domains/idn-tables/tables/space_cyrl_1.0.txt"
42 "value": "https://www.iana.org/domains/idn-tables/tables/space_cyrl_1.1.txt"
4343 },
4444 {
4545 "type": "idn-table",
5959 {
6060 "type": "idn-table",
6161 "key": "zh",
62 "value": "https://www.iana.org/domains/idn-tables/tables/space_zh_1.2.txt"
62 "value": "https://www.iana.org/domains/idn-tables/tables/space_zh_1.0.txt"
6363 }
6464 ]
6565 }
55 ],
66 "whoisServer": "whois.nic.spreadbetting",
77 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
8 "a.nic.spreadbetting",
9 "b.nic.spreadbetting",
10 "c.nic.spreadbetting",
11 "d.nic.spreadbetting"
1212 ],
1313 "policies": [
1414 {
44 "ns2.eunoc.net",
55 "ns3.eunoc.net"
66 ],
7 "wildcards": [
8 "185.27.255.9",
9 "now.co.ro"
10 ],
117 "policies": [
128 {
139 "type": "idn-disallowed"
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/staples_es_3.0.xml"
1921 }
2022 ]
2123 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/statefarm_zh_3.0.xml"
1996 }
2097 ]
2198 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/stream_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/stream_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/stream_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/stream_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "no",
29 "value": "https://www.iana.org/domains/idn-tables/tables/stream_no_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/stream_no_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "sv",
34 "value": "https://www.iana.org/domains/idn-tables/tables/stream_sv_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/stream_sv_3.0.xml"
3535 }
3636 ]
3737 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/swiftcover_zh_3.0.xml"
1996 }
2097 ]
2198 }
2020 ],
2121 "policies": [
2222 {
23 "type": "idn-disallowed"
23 "type": "idn-table",
24 "key": "da",
25 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_da_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "de",
30 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_de_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "es",
35 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_es_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "fi",
40 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_fi_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "hu",
45 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_hu_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "is",
50 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_is_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ja",
55 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_ja_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "ko",
60 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_ko_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lt",
65 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_lt_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "lv",
70 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_lv_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "no",
75 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_no_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pl",
80 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_pl_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "pt",
85 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_pt_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "ru",
90 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_ru_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "sv",
95 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_sv_3.0.xml"
96 },
97 {
98 "type": "idn-table",
99 "key": "zh",
100 "value": "https://www.iana.org/domains/idn-tables/tables/taipei_zh_3.0.xml"
24101 }
25102 ]
26103 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/taobao_zh_3.0.xml"
1996 }
2097 ]
2198 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "es",
20 "value": "https://www.iana.org/domains/idn-tables/tables/target_es_3.0.xml"
1921 }
2022 ]
2123 }
88 "nameServers": [
99 "a.ns.nic.tci",
1010 "b.ns.nic.tci",
11 "ns.cocca.fr"
11 "ns1.anycastdns.cz",
12 "ns2.anycastdns.cz"
1213 ],
1314 "policies": [
1415 {
00 {
11 "domain": "td",
2 "infoURL": "http://nic.td/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.td",
7 "whoisURL": "http://www.nic.td/",
88 "nameServers": [
99 "ns-td.afrinic.net",
1010 "ns.cocca.fr",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "ja",
20 "value": "https://www.iana.org/domains/idn-tables/tables/tdk_ja_3.0.xml"
1921 }
2022 ]
2123 }
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 {
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 }
3434 {
3535 "type": "idn-table",
3636 "key": "lo",
37 "value": "https://www.iana.org/domains/idn-tables/tables/tech_lo_1.1.txt"
37 "value": "https://www.iana.org/domains/idn-tables/tables/tech_lo_2.0.txt"
3838 },
3939 {
4040 "type": "idn-table",
1818 {
1919 "type": "idn-table",
2020 "key": "da",
21 "value": "https://www.iana.org/domains/idn-tables/tables/tel_da_1.0.txt"
21 "value": "https://www.iana.org/domains/idn-tables/tables/tel_da_3.0.xml"
2222 },
2323 {
2424 "type": "idn-table",
2525 "key": "de",
26 "value": "https://www.iana.org/domains/idn-tables/tables/tel_de_1.0.txt"
26 "value": "https://www.iana.org/domains/idn-tables/tables/tel_de_3.0.xml"
2727 },
2828 {
2929 "type": "idn-table",
3030 "key": "es",
31 "value": "https://www.iana.org/domains/idn-tables/tables/tel_es_1.0.txt"
31 "value": "https://www.iana.org/domains/idn-tables/tables/tel_es_3.0.xml"
3232 },
3333 {
3434 "type": "idn-table",
3535 "key": "fi",
36 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fi_1.0.txt"
36 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fi_3.0.xml"
3737 },
3838 {
3939 "type": "idn-table",
4040 "key": "fr",
41 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fr_1.0.txt"
41 "value": "https://www.iana.org/domains/idn-tables/tables/tel_fr_3.0.xml"
4242 },
4343 {
4444 "type": "idn-table",
4545 "key": "hu",
46 "value": "https://www.iana.org/domains/idn-tables/tables/tel_hu_1.0.txt"
46 "value": "https://www.iana.org/domains/idn-tables/tables/tel_hu_3.0.xml"
47 },
48 {
49 "type": "idn-table",
50 "key": "is",
51 "value": "https://www.iana.org/domains/idn-tables/tables/tel_is_3.0.xml"
4752 },
4853 {
4954 "type": "idn-table",
5055 "key": "ja",
51 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ja_1.0.txt"
56 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ja_3.0.xml"
5257 },
5358 {
5459 "type": "idn-table",
5560 "key": "ko",
56 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ko_1.0.txt"
61 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ko_3.0.xml"
5762 },
5863 {
5964 "type": "idn-table",
6065 "key": "lt",
61 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lt_1.0.txt"
66 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lt_3.0.xml"
6267 },
6368 {
6469 "type": "idn-table",
6570 "key": "lv",
66 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lv_1.0.txt"
71 "value": "https://www.iana.org/domains/idn-tables/tables/tel_lv_3.0.xml"
6772 },
6873 {
6974 "type": "idn-table",
7075 "key": "no",
71 "value": "https://www.iana.org/domains/idn-tables/tables/tel_no_1.0.txt"
76 "value": "https://www.iana.org/domains/idn-tables/tables/tel_no_3.0.xml"
7277 },
7378 {
7479 "type": "idn-table",
7580 "key": "pl",
76 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pl_1.0.txt"
81 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pl_3.0.xml"
7782 },
7883 {
7984 "type": "idn-table",
8085 "key": "pt",
81 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pt_1.0.txt"
86 "value": "https://www.iana.org/domains/idn-tables/tables/tel_pt_3.0.xml"
8287 },
8388 {
8489 "type": "idn-table",
8590 "key": "ru",
86 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ru_1.0.txt"
91 "value": "https://www.iana.org/domains/idn-tables/tables/tel_ru_3.0.xml"
8792 },
8893 {
8994 "type": "idn-table",
9095 "key": "sv",
91 "value": "https://www.iana.org/domains/idn-tables/tables/tel_sv_1.0.txt"
96 "value": "https://www.iana.org/domains/idn-tables/tables/tel_sv_3.0.xml"
9297 },
9398 {
9499 "type": "idn-table",
95100 "key": "zh",
96 "value": "https://www.iana.org/domains/idn-tables/tables/tel_zh_1.0.txt"
101 "value": "https://www.iana.org/domains/idn-tables/tables/tel_zh_3.0.xml"
97102 }
98103 ]
99104 }
44 "lns22.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/teva_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/teva_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/teva_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/teva_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/teva_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/teva_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/teva_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/teva_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/teva_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/teva_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/teva_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/teva_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/teva_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/teva_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/teva_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/teva_zh_3.0.xml"
1996 }
2097 ]
2198 }
00 {
11 "domain": "tg",
2 "infoURL": "http://www.nic.tg/",
23 "tags": [
34 "country",
45 "geo"
56 ],
67 "whoisServer": "whois.nic.tg",
7 "whoisURL": "http://www.nic.tg/",
88 "nameServers": [
99 "ns1.admin.net",
1010 "ns1.nic.tg",
66 "whoisServer": "whois.nic.tl",
77 "nameServers": [
88 "ns.anycast.nic.tl",
9 "ns.cocca.fr"
9 "ns1.anycastdns.cz",
10 "ns2.anycastdns.cz"
1011 ],
1112 "policies": [
1213 {
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/tmall_zh_3.0.xml"
1996 }
2097 ]
2198 }
00 {
11 "domain": "tourism.td",
2 "nameServers": [
3 "ns.cocca.fr",
4 "nsa.nic.td"
5 ],
62 "policies": [
73 {
84 "type": "idn-disallowed"
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/trade_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/trade_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/trade_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/trade_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/trade_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/trade_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/trade_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/trade_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/trade_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/trade_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/trade_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/trade_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/trade_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/trade_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/trade_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/trade_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/trade_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/trade_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/trade_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/trade_zh_3.0.xml"
100100 }
101101 ]
102102 }
55 ],
66 "whoisServer": "whois.nic.trading",
77 "nameServers": [
8 "ac1.nstld.com",
9 "ac2.nstld.com",
10 "ac3.nstld.com",
11 "ac4.nstld.com"
8 "a.nic.trading",
9 "b.nic.trading",
10 "c.nic.trading",
11 "d.nic.trading"
1212 ],
1313 "policies": [
1414 {
66 ],
77 "whoisServer": "whois.nic.travel",
88 "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"
9 "demand.alpha.aridns.net.au",
10 "demand.beta.aridns.net.au",
11 "demand.delta.aridns.net.au",
12 "demand.gamma.aridns.net.au"
1513 ],
1614 "policies": [
1715 {
55 ],
66 "whoisServer": "whois.nic.trust",
77 "nameServers": [
8 "a.nic.trust",
9 "b.nic.trust",
10 "c.nic.trust",
11 "d.nic.trust"
8 "ns1.uniregistry.net",
9 "ns2.uniregistry.info",
10 "ns3.uniregistry.net",
11 "ns4.uniregistry.info"
1212 ],
1313 "policies": [
1414 {
44 "lns22.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": "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 {
44 "lns22.nic.tr",
55 "lns41.nic.tr",
66 "lns42.nic.tr",
7 "lns5.nic.tr"
7 "lns5.nic.tr",
8 "lns71.nic.tr"
89 ]
910 }
0 {
1 "domain": "ukots.com",
2 "nameServers": [
3 "cdns1.main-hosting.eu",
4 "cdns2.main-hosting.eu"
5 ]
6 }
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 {
66 "whoisServer": "whois.cctld.uz",
77 "nameServers": [
88 "ns.uz",
9 "ns1.uz",
910 "ns2.uz",
1011 "ns3.uz",
1112 "ns4.uz",
1515 ],
1616 "policies": [
1717 {
18 "type": "idn-disallowed"
18 "type": "idn-table",
19 "key": "da",
20 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_da_3.0.xml"
21 },
22 {
23 "type": "idn-table",
24 "key": "de",
25 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_de_3.0.xml"
26 },
27 {
28 "type": "idn-table",
29 "key": "es",
30 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_es_3.0.xml"
31 },
32 {
33 "type": "idn-table",
34 "key": "fi",
35 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_fi_3.0.xml"
36 },
37 {
38 "type": "idn-table",
39 "key": "hu",
40 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_hu_3.0.xml"
41 },
42 {
43 "type": "idn-table",
44 "key": "is",
45 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_is_3.0.xml"
46 },
47 {
48 "type": "idn-table",
49 "key": "ja",
50 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_ja_3.0.xml"
51 },
52 {
53 "type": "idn-table",
54 "key": "ko",
55 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_ko_3.0.xml"
56 },
57 {
58 "type": "idn-table",
59 "key": "lt",
60 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_lt_3.0.xml"
61 },
62 {
63 "type": "idn-table",
64 "key": "lv",
65 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_lv_3.0.xml"
66 },
67 {
68 "type": "idn-table",
69 "key": "no",
70 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_no_3.0.xml"
71 },
72 {
73 "type": "idn-table",
74 "key": "pl",
75 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_pl_3.0.xml"
76 },
77 {
78 "type": "idn-table",
79 "key": "pt",
80 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_pt_3.0.xml"
81 },
82 {
83 "type": "idn-table",
84 "key": "ru",
85 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_ru_3.0.xml"
86 },
87 {
88 "type": "idn-table",
89 "key": "sv",
90 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_sv_3.0.xml"
91 },
92 {
93 "type": "idn-table",
94 "key": "zh",
95 "value": "https://www.iana.org/domains/idn-tables/tables/vivo_zh_3.0.xml"
1996 }
2097 ]
2198 }
99 ],
1010 "whoisServer": "whois.nic.vlaanderen",
1111 "nameServers": [
12 "a.nic.vlaanderen",
13 "b.nic.vlaanderen",
12 "a.nsset.vlaanderen",
13 "b.nsset.vlaanderen",
1414 "c.ns.dns.be",
1515 "d.ns.dns.be",
1616 "y.ns.dns.be",
1313 {
1414 "type": "idn-table",
1515 "key": "mul-Cyrl",
16 "value": "https://www.iana.org/domains/idn-tables/tables/voting_cyrl_1.txt"
16 "value": "https://www.iana.org/domains/idn-tables/tables/voting_cyrl_3.0.xml"
1717 },
1818 {
1919 "type": "idn-table",
2020 "key": "mul-Latn",
21 "value": "https://www.iana.org/domains/idn-tables/tables/voting_latn_1.txt"
21 "value": "https://www.iana.org/domains/idn-tables/tables/voting_latn_3.0.xml"
2222 }
2323 ]
2424 }
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "es",
19 "value": "https://www.iana.org/domains/idn-tables/tables/vuelos_es_3.0.xml"
1820 }
1921 ]
2022 }
1313 ],
1414 "policies": [
1515 {
16 "type": "idn-disallowed"
16 "type": "idn-table",
17 "key": "da",
18 "value": "https://www.iana.org/domains/idn-tables/tables/walter_da_3.0.xml"
19 },
20 {
21 "type": "idn-table",
22 "key": "fr",
23 "value": "https://www.iana.org/domains/idn-tables/tables/walter_fr_3.0.xml"
24 },
25 {
26 "type": "idn-table",
27 "key": "pl",
28 "value": "https://www.iana.org/domains/idn-tables/tables/walter_pl_3.0.xml"
29 },
30 {
31 "type": "idn-table",
32 "key": "ru",
33 "value": "https://www.iana.org/domains/idn-tables/tables/walter_ru_3.0.xml"
34 },
35 {
36 "type": "idn-table",
37 "key": "sv",
38 "value": "https://www.iana.org/domains/idn-tables/tables/walter_sv_3.0.xml"
39 },
40 {
41 "type": "idn-table",
42 "key": "zh",
43 "value": "https://www.iana.org/domains/idn-tables/tables/walter_zh_3.0.xml"
1744 }
1845 ]
1946 }
55 ],
66 "whoisServer": "whois.nic.watches",
77 "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"
8 "a0.nic.watches",
9 "a2.nic.watches",
10 "b0.nic.watches",
11 "c0.nic.watches"
1412 ],
1513 "policies": [
1614 {
1414 ],
1515 "policies": [
1616 {
17 "type": "idn-disallowed"
17 "type": "idn-table",
18 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/weather_da_3.0.xml"
20 },
21 {
22 "type": "idn-table",
23 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/weather_de_3.0.xml"
25 },
26 {
27 "type": "idn-table",
28 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/weather_es_3.0.xml"
30 },
31 {
32 "type": "idn-table",
33 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/weather_fi_3.0.xml"
35 },
36 {
37 "type": "idn-table",
38 "key": "hu",
39 "value": "https://www.iana.org/domains/idn-tables/tables/weather_hu_3.0.xml"
40 },
41 {
42 "type": "idn-table",
43 "key": "is",
44 "value": "https://www.iana.org/domains/idn-tables/tables/weather_is_3.0.xml"
45 },
46 {
47 "type": "idn-table",
48 "key": "ja",
49 "value": "https://www.iana.org/domains/idn-tables/tables/weather_ja_3.0.xml"
50 },
51 {
52 "type": "idn-table",
53 "key": "ko",
54 "value": "https://www.iana.org/domains/idn-tables/tables/weather_ko_3.0.xml"
55 },
56 {
57 "type": "idn-table",
58 "key": "lt",
59 "value": "https://www.iana.org/domains/idn-tables/tables/weather_lt_3.0.xml"
60 },
61 {
62 "type": "idn-table",
63 "key": "lv",
64 "value": "https://www.iana.org/domains/idn-tables/tables/weather_lv_3.0.xml"
65 },
66 {
67 "type": "idn-table",
68 "key": "no",
69 "value": "https://www.iana.org/domains/idn-tables/tables/weather_no_3.0.xml"
70 },
71 {
72 "type": "idn-table",
73 "key": "pl",
74 "value": "https://www.iana.org/domains/idn-tables/tables/weather_pl_3.0.xml"
75 },
76 {
77 "type": "idn-table",
78 "key": "pt",
79 "value": "https://www.iana.org/domains/idn-tables/tables/weather_pt_3.0.xml"
80 },
81 {
82 "type": "idn-table",
83 "key": "ru",
84 "value": "https://www.iana.org/domains/idn-tables/tables/weather_ru_3.0.xml"
85 },
86 {
87 "type": "idn-table",
88 "key": "sv",
89 "value": "https://www.iana.org/domains/idn-tables/tables/weather_sv_3.0.xml"
90 },
91 {
92 "type": "idn-table",
93 "key": "zh",
94 "value": "https://www.iana.org/domains/idn-tables/tables/weather_zh_3.0.xml"
1895 }
1996 ]
2097 }
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"
88 "lns41.nic.tr",
99 "lns42.nic.tr",
1010 "lns5.nic.tr",
11 "lns61.nic.tr"
11 "lns61.nic.tr",
12 "lns71.nic.tr"
1213 ]
1314 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/webcam_zh_3.0.xml"
100100 }
101101 ]
102102 }
5858 {
5959 "type": "idn-table",
6060 "key": "zh",
61 "value": "https://www.iana.org/domains/idn-tables/tables/website_zh_1.2.txt"
61 "value": "https://www.iana.org/domains/idn-tables/tables/website_zh_1.0.txt"
6262 }
6363 ]
6464 }
1616 {
1717 "type": "idn-table",
1818 "key": "da",
19 "value": "https://www.iana.org/domains/idn-tables/tables/win_da_2.2.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/win_da_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "de",
24 "value": "https://www.iana.org/domains/idn-tables/tables/win_de_2.2.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/win_de_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "es",
29 "value": "https://www.iana.org/domains/idn-tables/tables/win_es_2.2.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/win_es_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "fi",
34 "value": "https://www.iana.org/domains/idn-tables/tables/win_fi_2.2.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/win_fi_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fr",
39 "value": "https://www.iana.org/domains/idn-tables/tables/win_fr_2.2.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/win_fr_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "hu",
44 "value": "https://www.iana.org/domains/idn-tables/tables/win_hu_2.2.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/win_hu_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "is",
49 "value": "https://www.iana.org/domains/idn-tables/tables/win_is_2.2.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/win_is_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "ja",
54 "value": "https://www.iana.org/domains/idn-tables/tables/win_ja_2.2.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/win_ja_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ko",
59 "value": "https://www.iana.org/domains/idn-tables/tables/win_ko_2.2.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/win_ko_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "lt",
64 "value": "https://www.iana.org/domains/idn-tables/tables/win_lt_2.2.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/win_lt_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lv",
69 "value": "https://www.iana.org/domains/idn-tables/tables/win_lv_2.2.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/win_lv_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "no",
74 "value": "https://www.iana.org/domains/idn-tables/tables/win_no_2.2.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/win_no_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "pl",
79 "value": "https://www.iana.org/domains/idn-tables/tables/win_pl_2.2.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/win_pl_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pt",
84 "value": "https://www.iana.org/domains/idn-tables/tables/win_pt_2.2.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/win_pt_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "ru",
89 "value": "https://www.iana.org/domains/idn-tables/tables/win_ru_2.2.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/win_ru_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "sv",
94 "value": "https://www.iana.org/domains/idn-tables/tables/win_sv_2.2.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/win_sv_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "zh",
99 "value": "https://www.iana.org/domains/idn-tables/tables/win_zh_2.2.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/win_zh_3.0.xml"
100100 }
101101 ]
102102 }
99 "b.nic.飞利浦",
1010 "c.nic.飞利浦",
1111 "d.nic.飞利浦"
12 ],
13 "policies": [
14 {
15 "type": "idn-table",
16 "key": "zh",
17 "value": "https://www.iana.org/domains/idn-tables/tables/xn--kcrx77d1x4a_zh_3.0.xml"
18 }
1219 ]
1320 }
1111 "ns4.dns.nic.ارامكو",
1212 "ns5.dns.nic.ارامكو",
1313 "ns6.dns.nic.ارامكو"
14 ],
15 "policies": [
16 {
17 "type": "idn-table",
18 "key": "ar",
19 "value": "https://www.iana.org/domains/idn-tables/tables/xn--mgba3a3ejt_ar_3.0.xml"
20 },
21 {
22 "type": "idn-table",
23 "key": "es",
24 "value": "https://www.iana.org/domains/idn-tables/tables/xn--mgba3a3ejt_es_3.0.xml"
25 }
1426 ]
1527 }
99 "b.nic.العليان",
1010 "c.nic.العليان",
1111 "d.nic.العليان"
12 ],
13 "policies": [
14 {
15 "type": "idn-table",
16 "key": "ar",
17 "value": "https://www.iana.org/domains/idn-tables/tables/xn--mgba7c0bbn0a_ar_3.0.xml"
18 }
1219 ]
1320 }
1010 "nameServers": [
1111 "a.ns.nic.همراه",
1212 "b.ns.nic.همراه",
13 "ns.cocca.fr"
13 "ns1.anycastdns.cz",
14 "ns2.anycastdns.cz"
1415 ]
1516 }
55 ],
66 "whoisServer": "whois.nic.рус",
77 "nameServers": [
8 "ns.cocca.fr",
8 "ns1.anycastdns.cz",
99 "ns1.nic.рус",
10 "ns2.anycastdns.cz",
1011 "ns2.nic.рус"
1112 ]
1213 }
1414 "policies": [
1515 {
1616 "type": "idn-table",
17 "key": "az",
18 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_az_2.5.txt"
19 },
20 {
21 "type": "idn-table",
22 "key": "be",
23 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_be_2.5.txt"
24 },
25 {
26 "type": "idn-table",
27 "key": "bg",
28 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bg_2.5.txt"
29 },
30 {
31 "type": "idn-table",
1732 "key": "de",
18 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_de_1.txt"
33 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_de_2.5.txt"
34 },
35 {
36 "type": "idn-table",
37 "key": "el",
38 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_el_2.5.txt"
1939 },
2040 {
2141 "type": "idn-table",
2242 "key": "es",
23 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_es_1.txt"
43 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_es_2.5.txt"
44 },
45 {
46 "type": "idn-table",
47 "key": "fr",
48 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_fr_2.5.txt"
49 },
50 {
51 "type": "idn-table",
52 "key": "hr",
53 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hr_2.5.txt"
2454 },
2555 {
2656 "type": "idn-table",
2757 "key": "ja",
28 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ja_1.0.txt"
58 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ja_2.5.txt"
2959 },
3060 {
3161 "type": "idn-table",
3262 "key": "ko",
33 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ko_1.txt"
63 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ko_2.5.txt"
64 },
65 {
66 "type": "idn-table",
67 "key": "ku",
68 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ku_2.5.txt"
69 },
70 {
71 "type": "idn-table",
72 "key": "mk",
73 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mk_2.5.txt"
74 },
75 {
76 "type": "idn-table",
77 "key": "mul-Armi",
78 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_armi_2.5.txt"
79 },
80 {
81 "type": "idn-table",
82 "key": "mul-Armn",
83 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_armn_2.5.txt"
84 },
85 {
86 "type": "idn-table",
87 "key": "mul-Avst",
88 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_avst_2.5.txt"
89 },
90 {
91 "type": "idn-table",
92 "key": "mul-Bali",
93 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bali_2.5.txt"
94 },
95 {
96 "type": "idn-table",
97 "key": "mul-Bamu",
98 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bamu_2.5.txt"
99 },
100 {
101 "type": "idn-table",
102 "key": "mul-Batk",
103 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_batk_2.5.txt"
104 },
105 {
106 "type": "idn-table",
107 "key": "mul-Beng",
108 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_beng_2.5.txt"
109 },
110 {
111 "type": "idn-table",
112 "key": "mul-Bopo",
113 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bopo_2.5.txt"
114 },
115 {
116 "type": "idn-table",
117 "key": "mul-Brah",
118 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_brah_2.5.txt"
119 },
120 {
121 "type": "idn-table",
122 "key": "mul-Bugi",
123 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_bugi_2.5.txt"
124 },
125 {
126 "type": "idn-table",
127 "key": "mul-Buhd",
128 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_buhd_2.5.txt"
129 },
130 {
131 "type": "idn-table",
132 "key": "mul-Cans",
133 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cans_2.5.txt"
134 },
135 {
136 "type": "idn-table",
137 "key": "mul-Cari",
138 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cari_2.5.txt"
139 },
140 {
141 "type": "idn-table",
142 "key": "mul-Cham",
143 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cham_2.5.txt"
144 },
145 {
146 "type": "idn-table",
147 "key": "mul-Cher",
148 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cher_2.5.txt"
149 },
150 {
151 "type": "idn-table",
152 "key": "mul-Copt",
153 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_copt_2.5.txt"
154 },
155 {
156 "type": "idn-table",
157 "key": "mul-Cyrl",
158 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_cyrl_2.5.txt"
159 },
160 {
161 "type": "idn-table",
162 "key": "mul-Deva",
163 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_deva_2.5.txt"
164 },
165 {
166 "type": "idn-table",
167 "key": "mul-Egyp",
168 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_egyp_2.5.txt"
169 },
170 {
171 "type": "idn-table",
172 "key": "mul-Ethi",
173 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ethi_2.5.txt"
174 },
175 {
176 "type": "idn-table",
177 "key": "mul-Geor",
178 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_geor_2.5.txt"
179 },
180 {
181 "type": "idn-table",
182 "key": "mul-Glag",
183 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_glag_2.5.txt"
184 },
185 {
186 "type": "idn-table",
187 "key": "mul-Grek",
188 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_grek_2.5.txt"
189 },
190 {
191 "type": "idn-table",
192 "key": "mul-Gujr",
193 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_gujr_2.5.txt"
194 },
195 {
196 "type": "idn-table",
197 "key": "mul-Guru",
198 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_guru_2.5.txt"
199 },
200 {
201 "type": "idn-table",
202 "key": "mul-Hang",
203 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hang_2.5.txt"
204 },
205 {
206 "type": "idn-table",
207 "key": "mul-Hani",
208 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hani_2.5.txt"
209 },
210 {
211 "type": "idn-table",
212 "key": "mul-Hano",
213 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hano_2.5.txt"
214 },
215 {
216 "type": "idn-table",
217 "key": "mul-Hebr",
218 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hebr_2.5.txt"
219 },
220 {
221 "type": "idn-table",
222 "key": "mul-Hira",
223 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_hira_2.5.txt"
224 },
225 {
226 "type": "idn-table",
227 "key": "mul-Java",
228 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_java_2.5.txt"
229 },
230 {
231 "type": "idn-table",
232 "key": "mul-Kali",
233 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_kali_2.5.txt"
234 },
235 {
236 "type": "idn-table",
237 "key": "mul-Kana",
238 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_kana_2.5.txt"
239 },
240 {
241 "type": "idn-table",
242 "key": "mul-Khar",
243 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_khar_2.5.txt"
244 },
245 {
246 "type": "idn-table",
247 "key": "mul-Khmr",
248 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_khmr_2.5.txt"
249 },
250 {
251 "type": "idn-table",
252 "key": "mul-Knda",
253 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_knda_2.5.txt"
254 },
255 {
256 "type": "idn-table",
257 "key": "mul-Kthi",
258 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_kthi_2.5.txt"
259 },
260 {
261 "type": "idn-table",
262 "key": "mul-Lana",
263 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lana_2.5.txt"
264 },
265 {
266 "type": "idn-table",
267 "key": "mul-Laoo",
268 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_laoo_2.5.txt"
269 },
270 {
271 "type": "idn-table",
272 "key": "mul-Latn",
273 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_latn_2.5.txt"
274 },
275 {
276 "type": "idn-table",
277 "key": "mul-Lepc",
278 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lepc_2.5.txt"
279 },
280 {
281 "type": "idn-table",
282 "key": "mul-Limb",
283 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_limb_2.5.txt"
284 },
285 {
286 "type": "idn-table",
287 "key": "mul-Lisu",
288 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lisu_2.5.txt"
289 },
290 {
291 "type": "idn-table",
292 "key": "mul-Lyci",
293 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lyci_2.5.txt"
294 },
295 {
296 "type": "idn-table",
297 "key": "mul-Lydi",
298 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_lydi_2.5.txt"
299 },
300 {
301 "type": "idn-table",
302 "key": "mul-Mand",
303 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mand_2.5.txt"
304 },
305 {
306 "type": "idn-table",
307 "key": "mul-Mlym",
308 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mlym_2.5.txt"
309 },
310 {
311 "type": "idn-table",
312 "key": "mul-Mong",
313 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mong_2.5.txt"
314 },
315 {
316 "type": "idn-table",
317 "key": "mul-Mtei",
318 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mtei_2.5.txt"
319 },
320 {
321 "type": "idn-table",
322 "key": "mul-Mymr",
323 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_mymr_2.5.txt"
324 },
325 {
326 "type": "idn-table",
327 "key": "mul-Nkoo",
328 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_nkoo_2.5.txt"
329 },
330 {
331 "type": "idn-table",
332 "key": "mul-Ogam",
333 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ogam_2.5.txt"
334 },
335 {
336 "type": "idn-table",
337 "key": "mul-Olck",
338 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_olck_2.5.txt"
339 },
340 {
341 "type": "idn-table",
342 "key": "mul-Orkh",
343 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_orkh_2.5.txt"
344 },
345 {
346 "type": "idn-table",
347 "key": "mul-Orya",
348 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_orya_2.5.txt"
349 },
350 {
351 "type": "idn-table",
352 "key": "mul-Phag",
353 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_phag_2.5.txt"
354 },
355 {
356 "type": "idn-table",
357 "key": "mul-Phli",
358 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_phli_2.5.txt"
359 },
360 {
361 "type": "idn-table",
362 "key": "mul-Phnx",
363 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_phnx_2.5.txt"
364 },
365 {
366 "type": "idn-table",
367 "key": "mul-Prti",
368 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_prti_2.5.txt"
369 },
370 {
371 "type": "idn-table",
372 "key": "mul-Rjng",
373 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_rjng_2.5.txt"
374 },
375 {
376 "type": "idn-table",
377 "key": "mul-Runr",
378 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_runr_2.5.txt"
379 },
380 {
381 "type": "idn-table",
382 "key": "mul-Samr",
383 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_samr_2.5.txt"
384 },
385 {
386 "type": "idn-table",
387 "key": "mul-Sarb",
388 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sarb_2.5.txt"
389 },
390 {
391 "type": "idn-table",
392 "key": "mul-Saur",
393 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_saur_2.5.txt"
394 },
395 {
396 "type": "idn-table",
397 "key": "mul-Sinh",
398 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sinh_2.5.txt"
399 },
400 {
401 "type": "idn-table",
402 "key": "mul-Sund",
403 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sund_2.5.txt"
404 },
405 {
406 "type": "idn-table",
407 "key": "mul-Sylo",
408 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sylo_2.5.txt"
409 },
410 {
411 "type": "idn-table",
412 "key": "mul-Syrc",
413 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_syrc_2.5.txt"
414 },
415 {
416 "type": "idn-table",
417 "key": "mul-Tagb",
418 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tagb_2.5.txt"
419 },
420 {
421 "type": "idn-table",
422 "key": "mul-Tale",
423 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tale_2.5.txt"
424 },
425 {
426 "type": "idn-table",
427 "key": "mul-Talu",
428 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_talu_2.5.txt"
429 },
430 {
431 "type": "idn-table",
432 "key": "mul-Taml",
433 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_taml_2.5.txt"
434 },
435 {
436 "type": "idn-table",
437 "key": "mul-Tavt",
438 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tavt_2.5.txt"
439 },
440 {
441 "type": "idn-table",
442 "key": "mul-Telu",
443 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_telu_2.5.txt"
444 },
445 {
446 "type": "idn-table",
447 "key": "mul-Tfng",
448 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tfng_2.5.txt"
449 },
450 {
451 "type": "idn-table",
452 "key": "mul-Tglg",
453 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tglg_2.5.txt"
454 },
455 {
456 "type": "idn-table",
457 "key": "mul-Thaa",
458 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_thaa_2.5.txt"
459 },
460 {
461 "type": "idn-table",
462 "key": "mul-Thai",
463 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_thai_2.5.txt"
464 },
465 {
466 "type": "idn-table",
467 "key": "mul-Tibt",
468 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_tibt_2.5.txt"
469 },
470 {
471 "type": "idn-table",
472 "key": "mul-Vaii",
473 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_vaii_2.5.txt"
474 },
475 {
476 "type": "idn-table",
477 "key": "mul-Xpeo",
478 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_xpeo_2.5.txt"
479 },
480 {
481 "type": "idn-table",
482 "key": "mul-Xsux",
483 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_xsux_2.5.txt"
484 },
485 {
486 "type": "idn-table",
487 "key": "mul-Yiii",
488 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_yiii_2.5.txt"
489 },
490 {
491 "type": "idn-table",
492 "key": "pl",
493 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_pl_2.5.txt"
494 },
495 {
496 "type": "idn-table",
497 "key": "ro",
498 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ro_2.5.txt"
34499 },
35500 {
36501 "type": "idn-table",
37502 "key": "ru",
38 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ru_1.txt"
503 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_ru_2.5.txt"
504 },
505 {
506 "type": "idn-table",
507 "key": "sr",
508 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sr_2.5.txt"
509 },
510 {
511 "type": "idn-table",
512 "key": "sv",
513 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_sv_2.5.txt"
514 },
515 {
516 "type": "idn-table",
517 "key": "uk",
518 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_uk_2.5.txt"
39519 },
40520 {
41521 "type": "idn-table",
42522 "key": "zh",
43 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_zh_1.txt"
523 "value": "https://www.iana.org/domains/idn-tables/tables/yahoo_zh_2.5.txt"
44524 }
45525 ]
46526 }
1616 {
1717 "type": "idn-table",
1818 "key": "ar",
19 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ar_2.1.txt"
19 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ar_3.0.xml"
2020 },
2121 {
2222 "type": "idn-table",
2323 "key": "da",
24 "value": "https://www.iana.org/domains/idn-tables/tables/zero_da_2.1.txt"
24 "value": "https://www.iana.org/domains/idn-tables/tables/zero_da_3.0.xml"
2525 },
2626 {
2727 "type": "idn-table",
2828 "key": "de",
29 "value": "https://www.iana.org/domains/idn-tables/tables/zero_de_2.1.txt"
29 "value": "https://www.iana.org/domains/idn-tables/tables/zero_de_3.0.xml"
3030 },
3131 {
3232 "type": "idn-table",
3333 "key": "es",
34 "value": "https://www.iana.org/domains/idn-tables/tables/zero_es_2.1.txt"
34 "value": "https://www.iana.org/domains/idn-tables/tables/zero_es_3.0.xml"
3535 },
3636 {
3737 "type": "idn-table",
3838 "key": "fi",
39 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fi_2.1.txt"
39 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fi_3.0.xml"
4040 },
4141 {
4242 "type": "idn-table",
4343 "key": "fr",
44 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fr_2.1.txt"
44 "value": "https://www.iana.org/domains/idn-tables/tables/zero_fr_3.0.xml"
4545 },
4646 {
4747 "type": "idn-table",
4848 "key": "hu",
49 "value": "https://www.iana.org/domains/idn-tables/tables/zero_hu_2.1.txt"
49 "value": "https://www.iana.org/domains/idn-tables/tables/zero_hu_3.0.xml"
5050 },
5151 {
5252 "type": "idn-table",
5353 "key": "is",
54 "value": "https://www.iana.org/domains/idn-tables/tables/zero_is_2.1.txt"
54 "value": "https://www.iana.org/domains/idn-tables/tables/zero_is_3.0.xml"
5555 },
5656 {
5757 "type": "idn-table",
5858 "key": "ja",
59 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ja_2.1.txt"
59 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ja_3.0.xml"
6060 },
6161 {
6262 "type": "idn-table",
6363 "key": "ko",
64 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ko_2.1.txt"
64 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ko_3.0.xml"
6565 },
6666 {
6767 "type": "idn-table",
6868 "key": "lt",
69 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lt_2.1.txt"
69 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lt_3.0.xml"
7070 },
7171 {
7272 "type": "idn-table",
7373 "key": "lv",
74 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lv_2.1.txt"
74 "value": "https://www.iana.org/domains/idn-tables/tables/zero_lv_3.0.xml"
7575 },
7676 {
7777 "type": "idn-table",
7878 "key": "no",
79 "value": "https://www.iana.org/domains/idn-tables/tables/zero_no_2.1.txt"
79 "value": "https://www.iana.org/domains/idn-tables/tables/zero_no_3.0.xml"
8080 },
8181 {
8282 "type": "idn-table",
8383 "key": "pl",
84 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pl_2.1.txt"
84 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pl_3.0.xml"
8585 },
8686 {
8787 "type": "idn-table",
8888 "key": "pt",
89 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pt_2.1.txt"
89 "value": "https://www.iana.org/domains/idn-tables/tables/zero_pt_3.0.xml"
9090 },
9191 {
9292 "type": "idn-table",
9393 "key": "ru",
94 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ru_2.1.txt"
94 "value": "https://www.iana.org/domains/idn-tables/tables/zero_ru_3.0.xml"
9595 },
9696 {
9797 "type": "idn-table",
9898 "key": "sv",
99 "value": "https://www.iana.org/domains/idn-tables/tables/zero_sv_2.1.txt"
99 "value": "https://www.iana.org/domains/idn-tables/tables/zero_sv_3.0.xml"
100100 },
101101 {
102102 "type": "idn-table",
103103 "key": "zh",
104 "value": "https://www.iana.org/domains/idn-tables/tables/zero_zh_2.1.txt"
104 "value": "https://www.iana.org/domains/idn-tables/tables/zero_zh_3.0.xml"
105105 }
106106 ]
107107 }
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.
00 package zonedb
11
22 import (
3 "fmt"
43 "testing"
54 "unsafe"
65
1716 var z Zone
1817 t.Logf("sizeof Zone = %d", unsafe.Sizeof(z))
1918 }
20
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 }
24
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))
31 }
32 }
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 }
+3770
-3746
zones.go less more
9292
9393 // z is a static array of Zones.
9494 // Other global variables have pointers into this array.
95 var z [5171]Zone
95 var z [5183]Zone
9696
9797 // 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},
98 var y = [5183]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, t},
100100 {"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},
101101 {"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},
102102 {"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},
103103 {"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},
104104 {"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},
105105 {"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},
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, t},
107107 {"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},
108108 {"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},
109109 {"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},
112112 {"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},
113113 {"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},
114114 {"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},
115 {"aco", r, x, s{"a.dns.nic.aco", "m.dns.nic.aco", "n.dns.nic.aco"}, n, n, "whois.nic.aco", e, "https://newgtlds.icann.org/", 0x42, t},
116116 {"active", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
117117 {"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},
118118 {"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},
121121 {"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},
122122 {"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},
123123 {"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},
124 {"aero", r, z[1768:1771], s{"a0.nic.aero", "a2.nic.aero", "b0.nic.aero", "b2.nic.aero", "c0.nic.aero"}, 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, t},
126 {"af", r, z[1771:1781], s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, "whois.nic.af", e, "http://www.nic.af/", 0xa0, f},
127127 {"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},
128128 {"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},
129129 {"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},
131131 {"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},
132132 {"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},
133133 {"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},
134 {"ai", r, z[1787:1791], s{"anycastdns1-cz.nic.ai", "anycastdns2-cz.nic.ai", "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, t},
136136 {"aigo", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
137137 {"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},
138138 {"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},
152152 {"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},
153153 {"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},
154154 {"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},
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, t},
156156 {"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},
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, t},
158158 {"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},
159159 {"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},
160160 {"amp", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
161161 {"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},
162162 {"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},
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, t},
164164 {"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},
165165 {"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},
166166 {"ansons", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
175175 {"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},
176176 {"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},
177177 {"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},
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", e, "http://www.nic.ar/", 0xa0, t},
179179 {"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},
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, t},
181181 {"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},
182182 {"architect", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
183183 {"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},
184184 {"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},
185185 {"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},
186186 {"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},
187 {"as", r, x, s{"ns1.asnic.biz", "ns2.asnic.info", "ns3.asnic.org", "ns4.asnic.uk", "ns5.asnic.us", "pch.nic.as"}, n, n, "whois.nic.as", e, "http://nic.as/", 0xe0, t},
188188 {"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},
189189 {"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},
190190 {"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},
191191 {"astrium", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
192192 {"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},
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, t},
194194 {"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},
195195 {"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},
196196 {"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},
199199 {"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},
200200 {"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},
201201 {"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},
202 {"auto", r, x, s{"a.nic.auto", "b.nic.auto", "c.nic.auto", "d.nic.auto"}, n, n, "whois.nic.auto", e, "http://nic.auto/", 0x40, t},
203203 {"autoinsurance", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
204204 {"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},
205205 {"avery", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
209209 {"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},
210210 {"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},
211211 {"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},
212 {"az", r, z[1860:1881], s{"az.hostmaster.ua", "rip.psg.com"}, n, n, e, e, "http://www.nic.az/", 0xa0, f},
213213 {"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},
214214 {"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},
215215 {"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},
216216 {"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},
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, t},
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, t},
219219 {"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},
220220 {"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},
221221 {"banque", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
225225 {"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},
226226 {"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},
227227 {"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},
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, t},
229229 {"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},
230230 {"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},
231231 {"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},
252252 {"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},
253253 {"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},
254254 {"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},
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, t},
256256 {"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},
257257 {"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},
258258 {"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},
260260 {"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},
261261 {"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},
262262 {"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},
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, t},
264264 {"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},
265265 {"blanco", r, x, n, n, n, "whois.nic.blanco", e, "https://newgtlds.icann.org/", 0x40, t},
266266 {"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},
267267 {"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},
268268 {"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},
269269 {"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},
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, t},
271271 {"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},
272272 {"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},
273273 {"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},
282282 {"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},
283283 {"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},
284284 {"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},
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, t},
286286 {"boots", r, x, n, n, n, "whois.nic.boots", e, "https://newgtlds.icann.org/", 0x42, f},
287287 {"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},
288288 {"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},
289289 {"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},
290290 {"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},
291291 {"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},
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, t},
293 {"br", r, z[2019:2125], 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},
294294 {"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},
295295 {"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},
296296 {"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},
297 {"broker", r, x, s{"a.nic.broker", "b.nic.broker", "c.nic.broker", "d.nic.broker"}, n, n, "whois.nic.broker", e, "https://bostonivy.co/", 0x40, f},
298298 {"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},
299 {"brussels", r, x, s{"a.nsset.brussels", "b.nsset.brussels", "c.nsset.brussels", "d.nsset.brussels", "y.nsset.brussels", "z.nsset.brussels"}, n, s{"Brussels", "BE-BRU"}, "whois.nic.brussels", e, "https://newgtlds.icann.org/", 0xc4, t},
300 {"bs", r, z[2125:2131], 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[2131:2136], 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},
302302 {"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},
303303 {"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},
304304 {"buick", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
308308 {"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},
309309 {"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},
310310 {"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},
311 {"bw", r, z[2136:2140], s{"dns1.nic.net.bw", "ns-bw.afrinic.net", "pch.nic.net.bw"}, n, n, "whois.nic.net.bw", e, e, 0xa0, f},
312312 {"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},
313 {"by", r, z[2140:2145], 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[2145:2152], 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},
315315 {"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},
316 {"ca", r, z[2152:2168], 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},
317317 {"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},
318318 {"cadillac", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
319319 {"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},
320320 {"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},
321321 {"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},
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, t},
323323 {"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},
324324 {"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},
325325 {"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},
329329 {"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},
330330 {"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},
331331 {"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},
332 {"car", r, x, s{"a.nic.car", "b.nic.car", "c.nic.car", "d.nic.car"}, n, n, "whois.nic.car", 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, t},
334334 {"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},
335335 {"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},
336336 {"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},
337337 {"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},
338338 {"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},
339 {"cars", r, x, s{"a.nic.cars", "b.nic.cars", "c.nic.cars", "d.nic.cars"}, n, n, "whois.nic.cars", e, "http://nic.cars/", 0x40, t},
340340 {"cartier", r, x, n, n, n, "whois.nic.cartier", e, "https://newgtlds.icann.org/", 0x42, t},
341341 {"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},
342342 {"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},
349349 {"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},
350350 {"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},
351351 {"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},
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, t},
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, t},
354354 {"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},
355 {"cc", r, z[2168:2172], 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[2172:2178], s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, "whois.cd", e, "http://www.nic.cd/", 0xe0, f},
357 {"ceb", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
358358 {"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},
359359 {"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},
360360 {"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},
361361 {"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},
362362 {"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},
363 {"cfd", r, x, s{"a.nic.cfd", "b.nic.cfd", "c.nic.cfd", "d.nic.cfd"}, n, n, "whois.nic.cfd", e, "https://bostonivy.co/", 0x40, f},
364364 {"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},
365365 {"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},
366366 {"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},
368368 {"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},
369369 {"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},
370370 {"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},
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, t},
372372 {"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},
373373 {"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},
374374 {"chesapeake", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
375375 {"chevrolet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
376376 {"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},
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, t},
378378 {"chk", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
379379 {"chloe", r, x, n, n, n, "whois.nic.chloe", e, "https://newgtlds.icann.org/", 0x2042, f},
380380 {"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},
381381 {"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},
382382 {"chrysler", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
383383 {"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},
384 {"ci", r, z[2178:2195], 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},
385385 {"cimb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
386386 {"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},
387387 {"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},
388388 {"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},
389389 {"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},
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, t},
391391 {"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},
392392 {"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},
393393 {"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},
394 {"ck", r, z[2195:2203], 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},
395395 {"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},
396396 {"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},
397397 {"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},
402402 {"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},
403403 {"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},
404404 {"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},
405 {"cm", r, z[2203:2207], s{"auth02.ns.uu.net", "kim.camnet.cm", "lom.camnet.cm", "ns.itu.ch", "sanaga.camnet.cm"}, n, n, "whois.netcom.cm", e, "https://antic.cm", 0xa0, f},
406 {"cn", r, z[2207:2249], 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[2249:2256], 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},
408408 {"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},
409409 {"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},
410410 {"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},
411411 {"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},
412412 {"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},
413 {"com", r, z[2256:2287], 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},
414414 {"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},
415415 {"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},
416416 {"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},
426426 {"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},
427427 {"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},
428428 {"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},
429 {"cool", r, z[2287:2288], 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},
430430 {"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},
431431 {"corp", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
432432 {"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},
434434 {"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},
435435 {"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},
436436 {"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},
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, t},
438 {"cr", r, z[2288:2296], s{"a.lactld.org", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "dns.nic.cr", "p.nic.cr"}, n, n, "whois.nic.cr", e, "https://www.nic.cr/", 0xa0, f},
439439 {"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},
440440 {"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},
441441 {"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},
445445 {"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},
446446 {"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},
447447 {"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},
448 {"cu", r, z[2296:2307], 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},
449449 {"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},
450 {"cv", r, z[2307:2315], 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[2315:2317], 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[2317:2322], s{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, "whois.nic.cx", e, e, 0xa0, f},
453 {"cy", r, z[2322:2335], 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},
454454 {"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},
455455 {"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},
456 {"cz", r, z[2335:2336], 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},
457457 {"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},
458458 {"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},
459459 {"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},
464464 {"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},
465465 {"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},
466466 {"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},
467 {"de", r, z[2336:2339], 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},
468468 {"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},
469469 {"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},
470470 {"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},
471471 {"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},
472472 {"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},
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, t},
474474 {"delmonte", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
475475 {"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},
476476 {"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},
493493 {"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},
494494 {"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},
495495 {"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},
496 {"dk", r, z[2339:2341], 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[2341:2347], s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, "whois.nic.dm", e, e, 0xa0, t},
498498 {"dnb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
499499 {"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},
500 {"do", r, z[2347:2358], 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", e, "http://www.nic.do/", 0xa0, f},
501501 {"docomo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
502502 {"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},
503503 {"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},
516516 {"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},
517517 {"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},
518518 {"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},
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, t},
520520 {"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},
521521 {"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},
522522 {"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},
523523 {"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},
524 {"dz", r, z[2358:2366], 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, t},
526526 {"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},
527 {"ec", r, z[2366:2377], s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec"}, n, n, "whois.nic.ec", e, e, 0xa0, f},
528528 {"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},
529529 {"ecom", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
530530 {"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},
531531 {"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},
532532 {"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},
533 {"ee", r, z[2377:2391], 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[2391:2403], s{"frcu.eun.eg", "ns5.univie.ac.at", "rip.psg.com"}, n, n, e, "http://lookup.egregistry.eg/english.aspx", e, 0xa0, f},
535535 {"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},
536536 {"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},
537537 {"emerson", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
542542 {"epost", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
543543 {"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},
544544 {"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},
545 {"er", r, z[2403:2410], s{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0xa8, f},
546546 {"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},
547547 {"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},
548 {"es", r, z[2410:2415], 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},
549549 {"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},
550550 {"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},
551551 {"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},
552 {"et", r, z[2415:2423], s{"a.nic.et", "b.nic.et"}, n, n, e, e, "http://www.ethionet.et/?q=ipservicedomainname", 0xa0, f},
553553 {"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},
554 {"eu", r, z[2423:2426], s{"nl.dns.eu", "si.dns.eu", "w.dns.eu", "x.dns.eu", "y.dns.eu"}, n, n, "whois.eu", e, e, 0xa0, t},
555555 {"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},
556556 {"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},
557557 {"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},
569569 {"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},
570570 {"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},
571571 {"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},
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, t},
573573 {"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},
574574 {"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},
575575 {"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},
580580 {"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},
581581 {"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},
582582 {"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},
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, t},
584584 {"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},
585585 {"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},
586586 {"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},
593593 {"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},
594594 {"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},
595595 {"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},
596 {"fj", r, z[2426:2437], s{"auth00.ns.uu.net", "rip.psg.com", "teri.usp.ac.fj"}, n, n, "whois.usp.ac.fj", e, "http://domains.fj", 0xa0, f},
597 {"fk", r, z[2437:2443], s{"ns1.horizon.net.fk", "ns2.horizon.net.fk", "ns3.horizon.net.fk"}, n, n, e, "http://whois.marcaria.com", e, 0xa8, f},
598598 {"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},
599599 {"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},
600600 {"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},
603603 {"fls", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
604604 {"flsmidth", r, x, n, n, n, "whois.ksregistry.net", e, "https://newgtlds.icann.org/", 0x2042, f},
605605 {"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},
606 {"fm", r, z[2443:2449], s{"tld1.ultradns.net", "tld2.ultradns.net", "tld3.ultradns.org", "tld4.ultradns.org", "tld5.ultradns.info", "tld6.ultradns.co.uk"}, n, n, "whois.nic.fm", e, "https://dot.fm/", 0xe0, t},
607 {"fo", r, z[2449:2471], s{"a.nic.fo", "b.nic.fo", "c.nic.fo", "d.nic.fo"}, n, n, "whois.nic.fo", e, e, 0xa0, f},
608608 {"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},
609609 {"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},
610610 {"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},
611611 {"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},
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, t},
613 {"forex", r, x, s{"a.nic.forex", "b.nic.forex", "c.nic.forex", "d.nic.forex"}, n, n, "whois.nic.forex", e, "https://bostonivy.co/", 0x40, f},
614614 {"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},
615615 {"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},
616616 {"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},
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, t},
618 {"fr", r, z[2471:2489], 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},
619619 {"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},
620620 {"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},
621621 {"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},
630630 {"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},
631631 {"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},
632632 {"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},
633 {"ga", r, z[2489:2502], s{"a.ns.ga", "b.ns.ga", "c.ns.ga", "d.ns.ga"}, n, n, "whois.dot.ga", e, e, 0xa0, t},
634634 {"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},
635635 {"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},
636636 {"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},
637637 {"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},
638638 {"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},
639639 {"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},
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, t},
641641 {"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},
642642 {"garnier", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
643643 {"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},
644 {"gb", r, z[2502:2503], s{"ns.uu.net", "ns0.ja.net", "ns4.ja.net"}, n, n, e, e, e, 0xa8, f},
645645 {"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},
646646 {"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},
647 {"gd", r, z[2503:2510], s{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, "whois.nic.gd", e, e, 0xa0, f},
648648 {"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},
649 {"ge", r, z[2510:2518], s{"ge.hostmaster.ua", "ns.nic.ge", "ns.uu.net", "ns2.nic.fr", "ns2.nic.ge"}, n, n, "whois.nic.ge", e, "http://www.nic.net.ge/", 0xa0, f},
650 {"gea", r, x, s{"a.dns.nic.gea", "m.dns.nic.gea", "n.dns.nic.gea"}, n, n, "whois.nic.gea", e, "https://newgtlds.icann.org/", 0x42, t},
651651 {"gecompany", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
652652 {"ged", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
653653 {"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},
654654 {"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},
655655 {"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},
656 {"gf", r, x, s{"ns1-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, "whois.mediaserv.net", e, "https://www.dom-enic.com/", 0xa0, f},
657 {"gg", r, z[2518:2529], s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk", "e.ci-servers.net"}, n, n, "whois.gg", e, e, 0xa0, f},
658658 {"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},
659 {"gh", r, z[2529:2535], 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[2535:2541], 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},
661661 {"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},
662662 {"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},
663663 {"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},
664664 {"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},
665 {"gl", r, z[2541:2546], s{"a.nuuk.nic.gl", "d.nic.gl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, "whois.nic.gl", e, e, 0xa0, t},
666666 {"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},
667667 {"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},
668668 {"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},
675675 {"gmc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
676676 {"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},
677677 {"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},
678 {"gn", r, z[2546:2552], s{"fork.sth.dnsnode.net", "ns-gn.afrinic.net", "rip.psg.com"}, n, n, e, e, e, 0xa8, f},
679679 {"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},
680680 {"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},
681681 {"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},
689689 {"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},
690690 {"gotv", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
691691 {"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},
692 {"gp", r, z[2552:2563], s{"a.lactld.org", "gp.cctld.authdns.ripe.net", "ns-gp.nic.fr", "ns1.nic.gp", "ns2.nic.gp"}, n, n, "whois.nic.gp", e, "https://www.nic.gp/", 0xa0, f},
693693 {"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},
694 {"gr", r, z[2563:2568], 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, t},
696696 {"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},
697697 {"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},
698698 {"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},
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, t},
700700 {"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},
701701 {"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},
702702 {"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},
703 {"gs", r, x, s{"ns.anycast.nic.gs", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, "whois.nic.gs", e, e, 0xa0, f},
704 {"gt", r, z[2568:2575], 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[2575:2582], 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},
706706 {"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},
707707 {"guardianlife", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
708708 {"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},
709 {"gucci", r, x, s{"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, "whois.nic.gucci", e, "https://newgtlds.icann.org/", 0x42, t},
710710 {"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},
711711 {"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},
712712 {"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},
713713 {"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},
714714 {"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},
715 {"gy", r, z[2582:2586], s{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, "whois.registry.gy", e, e, 0xa0, f},
716716 {"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},
717717 {"halal", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
718718 {"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},
719719 {"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},
720720 {"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},
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, t},
722722 {"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},
723723 {"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},
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, t},
725725 {"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},
726726 {"heart", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
727727 {"heinz", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
735735 {"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},
736736 {"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},
737737 {"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},
738 {"hk", r, z[2586:2595], 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},
739739 {"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},
740740 {"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},
741 {"hn", r, z[2595:2601], s{"a.lactld.org", "nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn"}, n, n, "whois.nic.hn", e, e, 0xa0, f},
742742 {"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},
743743 {"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},
744744 {"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},
756756 {"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},
757757 {"hoteis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
758758 {"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},
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, t},
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, t},
761761 {"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},
762762 {"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},
763763 {"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},
764 {"hr", r, z[2601:2605], s{"hr-ns-1.carnet.hr", "n.dns.hr", "pch.carnet.hr"}, n, n, "whois.dns.hr", e, e, 0xa0, f},
765765 {"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},
766 {"ht", r, z[2605:2622], 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},
767767 {"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},
768 {"hu", r, z[2622:2656], 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},
769769 {"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},
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, t},
771771 {"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},
772772 {"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},
773773 {"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},
774774 {"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},
775775 {"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},
776 {"id", r, z[2656:2668], 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},
777777 {"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},
778 {"ie", r, z[2668:2673], s{"b.ns.ie", "c.ns.ie", "d.ns.ie", "g.ns.ie", "h.ns.ie", "i.ns.ie"}, n, n, "whois.weare.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, t},
780780 {"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},
781781 {"iinet", r, x, n, n, n, "whois.aridnrs.net.au", e, "https://newgtlds.icann.org/", 0x2042, f},
782782 {"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},
783 {"il", r, z[2673:2681], 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[2681:2687], s{"barney.advsys.co.uk", "hoppy.iom.com", "ns4.ja.net", "pebbles.iom.com"}, n, n, "whois.nic.im", e, e, 0xa0, f},
785785 {"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},
786786 {"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},
787787 {"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},
788788 {"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},
789 {"in", r, z[2687:2699], 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},
790790 {"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},
791791 {"indians", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
792792 {"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},
793793 {"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},
794 {"info", r, z[2699:2700], 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},
795795 {"infosys", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
796796 {"infy", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
797797 {"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},
799799 {"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},
800800 {"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},
801801 {"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},
802 {"int", r, z[2700:2701], 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},
803803 {"intel", r, x, n, n, n, "whois.nic.intel", e, "https://newgtlds.icann.org/", 0x42, f},
804804 {"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},
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, t},
806806 {"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},
807 {"io", r, z[2701:2703], 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, t},
809 {"iq", r, z[2703:2713], 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[2713:2720], 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},
811811 {"ira", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
812812 {"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},
813813 {"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},
816816 {"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},
817817 {"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},
818818 {"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},
819 {"it", r, z[2720:3081], 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, t},
821821 {"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},
822822 {"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},
823823 {"iwc", r, x, n, n, n, "whois.nic.iwc", e, "https://newgtlds.icann.org/", 0x42, f},
824824 {"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},
825825 {"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},
826826 {"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},
827 {"jcp", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
828 {"je", r, z[3081:3087], s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk", "e.ci-servers.net"}, n, n, "whois.je", e, e, 0xa0, f},
829829 {"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},
830830 {"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},
831831 {"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},
832832 {"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},
833833 {"jlc", r, x, n, n, n, "whois.nic.jlc", e, "https://newgtlds.icann.org/", 0x42, f},
834834 {"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},
835 {"jm", r, z[3087:3093], 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, t},
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, t},
838 {"jo", r, z[3093:3101], 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},
839839 {"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},
840840 {"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},
841841 {"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},
842842 {"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},
843 {"jp", r, z[3101:3204], 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, t},
845845 {"jpmorganchase", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
846846 {"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},
847847 {"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},
849849 {"justforu", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
850850 {"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},
851851 {"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},
852 {"ke", r, z[3204:3213], 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},
853853 {"kerastase", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
854854 {"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},
855855 {"kerrylogisitics", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
857857 {"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},
858858 {"ketchup", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
859859 {"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},
860 {"kg", r, z[3213:3219], s{"kg.cctld.authdns.ripe.net", "ns.kg"}, n, n, "whois.kg", e, e, 0xa0, f},
861 {"kh", r, z[3219:3226], 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[3226:3238], s{"ns.cocca.fr", "pch.nic.ki"}, n, n, "whois.nic.ki", e, e, 0xa0, f},
863863 {"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},
864864 {"kid", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
865865 {"kids", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
866866 {"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},
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, t},
868868 {"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},
869869 {"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},
870870 {"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},
871871 {"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},
872 {"km", r, z[3238:3252], s{"dns1.nic.km", "dns2.nic.km", "ns-km.afrinic.net"}, n, n, e, e, e, 0xa0, f},
873 {"kn", r, z[3252:3258], s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.kn"}, n, n, "whois.nic.kn", e, "http://www.nic.kn/", 0xa0, f},
874874 {"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},
875875 {"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},
876876 {"konami", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
877877 {"kone", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
878878 {"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},
879 {"kp", r, z[3258:3262], s{"ns1.kptc.kp", "ns2.kptc.kp"}, n, n, e, e, e, 0xa0, f},
880880 {"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},
881881 {"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},
882 {"kr", r, z[3262:3291], 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},
883883 {"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},
884884 {"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},
885885 {"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},
886 {"kw", r, z[3291:3296], 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[3296:3301], s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.kyregistry.ky", e, "https://kyregistry.ky/", 0xa0, f},
888888 {"kyknet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
889889 {"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},
890 {"kz", r, z[3301:3307], s{"ns.nic.kz", "ns1.nic.kz"}, n, n, "whois.nic.kz", e, e, 0xa0, f},
891891 {"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},
892892 {"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},
893893 {"ladbrokes", r, x, n, n, n, "whois.nic.ladbrokes", e, "https://newgtlds.icann.org/", 0x42, t},
898898 {"lancome", r, x, n, n, n, "whois.nic.lancome", e, "https://newgtlds.icann.org/", 0x42, f},
899899 {"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},
900900 {"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},
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, t},
902902 {"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},
903903 {"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},
904904 {"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},
905905 {"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},
906906 {"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},
907907 {"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},
908 {"lb", r, z[3307:3312], 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[3312:3321], 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.nic.lc", 0xa0, f},
910910 {"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},
911911 {"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},
912912 {"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},
914914 {"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},
915915 {"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},
916916 {"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},
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, t},
918918 {"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},
919919 {"liaison", r, x, n, n, n, "whois.nic.liaison", e, "https://newgtlds.icann.org/", 0x42, f},
920920 {"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},
921921 {"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},
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, t},
923923 {"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},
924924 {"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},
925925 {"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},
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, t},
927927 {"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},
928928 {"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},
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, t},
930930 {"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},
931931 {"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},
932932 {"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},
934934 {"livestrong", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
935935 {"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},
936936 {"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},
937 {"lk", r, z[3321:3335], 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},
938938 {"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},
939939 {"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},
940940 {"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},
946946 {"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},
947947 {"loreal", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
948948 {"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},
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, t},
950950 {"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},
951951 {"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},
952952 {"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},
953 {"lr", r, z[3335:3341], s{"fork.sth.dnsnode.net", "ns-lr.afrinic.net", "rip.psg.com"}, n, n, e, e, e, 0xa8, f},
954 {"ls", r, z[3341:3347], s{"ls-ns.anycast.pch.net", "ns-ls.afrinic.net", "ns1.nic.ls", "ns2.nic.ls"}, n, n, "whois.nic.ls", e, "http://www.nic.ls/", 0xa0, f},
955 {"lt", r, z[3347:3348], 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},
956956 {"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},
957957 {"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},
958958 {"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},
959959 {"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},
960 {"lupin", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
961961 {"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},
962962 {"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},
963 {"lv", r, z[3348:3357], 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[3357:3366], 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[3366:3372], 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},
966966 {"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},
967967 {"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},
968968 {"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},
975975 {"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},
976976 {"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},
977977 {"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},
978 {"markets", r, x, s{"a.nic.markets", "b.nic.markets", "c.nic.markets", "d.nic.markets"}, n, n, "whois.nic.markets", e, "https://bostonivy.co/", 0x40, f},
979979 {"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},
980980 {"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},
981981 {"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},
982982 {"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},
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, t},
984984 {"maybelline", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
985985 {"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},
986 {"mc", r, z[3372:3374], s{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, e, e, "http://www.nic.mc/", 0xa0, f},
987987 {"mcd", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
988988 {"mcdonalds", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
989989 {"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},
990990 {"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},
991 {"me", r, z[3374:3382], 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},
992992 {"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},
993993 {"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},
994994 {"medical", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
10031003 {"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},
10041004 {"metlife", r, x, n, n, n, "whois.nic.metlife", e, "https://newgtlds.icann.org/", 0x42, f},
10051005 {"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},
1006 {"mg", r, z[3382:3393], 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},
10071007 {"mh", r, x, s{"ns.amarshallinc.com", "ns.ntamar.net"}, n, n, e, e, e, 0xa8, f},
10081008 {"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},
10091009 {"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},
10111011 {"mii", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
10121012 {"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},
10131013 {"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},
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, t},
10151015 {"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},
10161016 {"mitek", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
10171017 {"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},
1018 {"mk", r, z[3393:3401], 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[3401:3407], 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, t},
10211021 {"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},
1022 {"mm", r, z[3407:3415], 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},
10231023 {"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},
1024 {"mn", r, z[3415:3418], 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},
10251025 {"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},
1026 {"mo", r, z[3418:3424], 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},
10271027 {"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},
10281028 {"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},
10291029 {"mobily", r, x, n, n, n, "whois.nic.mobily", e, "https://newgtlds.icann.org/", 0x40, f},
10391039 {"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},
10401040 {"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},
10411041 {"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},
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, t},
10431043 {"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},
10441044 {"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},
10451045 {"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},
10461046 {"movistar", r, x, n, n, n, "whois-fe.movistar.tango.knipp.de", e, "https://newgtlds.icann.org/", 0x42, f},
10471047 {"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},
1048 {"mp", r, z[3424:3428], 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-gp.mediaserv.net", "ns1-mq.mediaserv.net"}, n, n, "whois.mediaserv.net", e, "https://www.dom-enic.com/", 0xa0, f},
1050 {"mr", r, z[3428:3432], 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},
10511051 {"mrmuscle", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
10521052 {"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},
1053 {"ms", r, z[3432:3436], s{"ms-ns.anycast.pch.net", "ns.cocca.fr"}, n, n, "whois.nic.ms", e, e, 0xe0, f},
10541054 {"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},
1055 {"mt", r, z[3436:3441], 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{"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, "whois.nic.mtn", e, "https://newgtlds.icann.org/", 0x42, f},
10571057 {"mtpc", r, x, n, n, n, "whois.nic.mtpc", e, "https://newgtlds.icann.org/", 0x2042, f},
10581058 {"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},
1059 {"mu", r, z[3441:3450], s{"anycast1.irondns.net", "fork.sth.dnsnode.net", "udns1.tld.mu", "udns2.tld.mu"}, n, n, "whois.nic.mu", e, e, 0xa0, f},
10601060 {"multichoice", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
10611061 {"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},
10621062 {"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},
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, t},
10641064 {"mutualfunds", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
10651065 {"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},
1066 {"mv", r, z[3450:3464], 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[3464:3474], 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", e, "http://nic.mw/", 0xa0, f},
1068 {"mx", r, z[3474:3479], 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[3479:3487], 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[3487:3494], 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", e, "https://www.domains.co.mz", 0xa8, f},
10711071 {"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},
1072 {"na", r, z[3494:3512], 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},
10731073 {"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},
10741074 {"nadex", r, x, n, n, n, "whois.nic.nadex", e, "https://newgtlds.icann.org/", 0x42, f},
10751075 {"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},
1076 {"name", r, z[3512:3515], s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.name", e, e, 0x40, t},
10771077 {"naspers", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
10781078 {"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},
10791079 {"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},
10801080 {"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},
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, t},
1082 {"nc", r, z[3515:3518], 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[3518:3523], s{"bow.rain.fr", "ne.cctld.authdns.ripe.net", "ns-ne.afrinic.net", "ns.intnet.ne"}, n, n, e, e, e, 0xa0, f},
10841084 {"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},
1085 {"net", r, z[3523:3533], 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},
10861086 {"netaporter", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
10871087 {"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},
10881088 {"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},
10941094 {"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},
10951095 {"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},
10961096 {"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},
1097 {"nf", r, z[3533:3545], s{"ns.anycast.nic.nf", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, 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, t},
1099 {"ng", r, z[3545:3555], 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},
11001100 {"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},
11011101 {"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},
1102 {"ni", r, z[3555:3570], 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},
11031103 {"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},
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, t},
11051105 {"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},
11061106 {"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},
11071107 {"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},
11081108 {"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},
1109 {"nl", r, z[3570:3576], s{"ns1.dns.nl", "ns2.dns.nl", "ns3.dns.nl"}, n, n, "whois.domain-registry.nl", e, e, 0xa0, f},
1110 {"no", r, z[3576:3586], 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},
11111111 {"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},
11121112 {"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},
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, t},
11141114 {"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},
11151115 {"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},
1116 {"nowruz", r, x, s{"a.ns.nic.nowruz", "b.ns.nic.nowruz", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, s{"Iran"}, "whois.nic.nowruz", e, "https://newgtlds.icann.org/", 0x42, f},
11171117 {"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},
1118 {"np", r, z[3586:3732], 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[3732:3739], 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},
11201120 {"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},
11211121 {"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},
11221122 {"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},
1123 {"nu", r, z[3739:3744], 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},
11241124 {"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},
1125 {"nz", r, z[3744:3759], 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},
11261126 {"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},
11271127 {"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},
11281128 {"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},
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, t},
11301130 {"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},
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, t},
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, t},
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, t},
11341134 {"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},
11351135 {"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},
1136 {"om", r, z[3759:3772], 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},
11371137 {"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},
11381138 {"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},
11391139 {"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},
11411141 {"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},
11421142 {"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},
11431143 {"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},
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, t},
11451145 {"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},
11461146 {"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},
1147 {"org", r, z[3772:3778], 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, t},
11491149 {"orientexpress", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x2042, f},
11501150 {"origin", r, x, n, n, n, "whois.afilias-srs.net", e, e, 0x0, t},
11511151 {"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},
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, t},
11531153 {"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},
11541154 {"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},
11551155 {"overheidnl", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
11561156 {"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},
1157 {"pa", r, z[3778:3789], 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},
11581158 {"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},
11591159 {"pamperedchef", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
11601160 {"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},
11611161 {"panerai", r, x, n, n, n, "whois.nic.panerai", e, "https://newgtlds.icann.org/", 0x42, f},
11621162 {"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},
1163 {"pars", r, x, s{"a.ns.nic.pars", "b.ns.nic.pars", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, s{"Iran"}, "whois.nic.pars", e, "https://newgtlds.icann.org/", 0x40, f},
11641164 {"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},
11651165 {"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},
11661166 {"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},
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, t},
11681168 {"patagonia", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
11691169 {"patch", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
11701170 {"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},
11711171 {"payu", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
11721172 {"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},
1173 {"pe", r, z[3789:3798], s{"a.lactld.org", "pch.rcp.pe", "pe1.dnsnode.net", "quipu.rcp.net.pe"}, n, n, "kero.yachay.pe", e, "http://www.nic.pe/", 0xa0, t},
11741174 {"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},
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, t},
11761176 {"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},
1177 {"pf", r, z[3798:3803], 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, t},
1179 {"pg", r, z[3803:3809], 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[3809:3818], 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, t},
11821182 {"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},
11831183 {"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},
11841184 {"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},
11931193 {"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},
11941194 {"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},
11951195 {"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},
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, t},
11971197 {"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},
11981198 {"piperlime", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
11991199 {"pitney", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
12001200 {"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},
1201 {"pk", r, z[3818:3833], 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[3833:4001], 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},
12031203 {"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},
12041204 {"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},
12051205 {"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},
12061206 {"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},
12071207 {"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},
12081208 {"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},
1209 {"pn", r, z[4001:4020], 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},
12101210 {"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},
12111211 {"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},
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, t},
12131213 {"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},
12141214 {"polo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
12151215 {"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},
12161216 {"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},
1217 {"pr", r, z[4020:4072], 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, t},
12191219 {"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},
12201220 {"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},
12211221 {"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},
1222 {"pro", r, z[4072:4108], 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, t},
12231223 {"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},
12241224 {"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},
12251225 {"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},
12261226 {"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},
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, t},
12281228 {"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},
12291229 {"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},
12301230 {"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},
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, t},
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, t},
1233 {"ps", r, z[4108:4117], 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[4117:4126], s{"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, "whois.dns.pt", e, e, 0xa0, t},
12351235 {"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},
1236 {"pw", r, z[4126:4137], s{"ns1.nic.pw", "ns2.nic.pw", "ns5.nic.pw", "ns6.nic.pw"}, n, n, "whois.nic.pw", e, e, 0xa0, t},
12371237 {"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},
1238 {"py", r, z[4137:4145], 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[4145:4153], 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{"a.nic.qpon", "b.nic.qpon", "c.nic.qpon", "d.nic.qpon"}, n, n, "whois.nic.qpon", e, e, 0x40, t},
12411241 {"qtel", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
12421242 {"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},
12431243 {"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},
12461246 {"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},
12471247 {"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},
12481248 {"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},
1249 {"re", r, z[4153:4156], 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},
12501250 {"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},
12511251 {"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},
12521252 {"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},
12531253 {"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},
12541254 {"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},
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, t},
12561256 {"redken", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
12571257 {"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},
12581258 {"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},
12811281 {"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},
12821282 {"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},
12831283 {"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},
1284 {"ro", r, z[4156:4173], 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},
12851285 {"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},
12861286 {"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},
12871287 {"rockwool", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
12901290 {"roma", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
12911291 {"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},
12921292 {"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},
1293 {"rs", r, z[4173:4179], 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},
12941294 {"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},
1295 {"ru", r, z[4179:4207], 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},
12961296 {"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},
12971297 {"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},
12981298 {"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},
1299 {"rw", r, z[4207:4217], 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", e, "https://ricta.org.rw", 0xa0, f},
13001300 {"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},
13011301 {"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},
1302 {"sa", r, z[4217:4225], 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},
13031303 {"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},
13041304 {"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},
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, t},
13061306 {"safeway", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
13071307 {"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},
13081308 {"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},
13091309 {"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},
13101310 {"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},
13111311 {"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},
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, t},
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, t},
13141314 {"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},
13151315 {"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},
13161316 {"sapo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
13171317 {"sapphire", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
13181318 {"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},
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, t},
13201320 {"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},
13211321 {"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},
1322 {"sb", r, z[4225:4230], s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, "whois.nic.net.sb", e, e, 0xa0, f},
13231323 {"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},
1324 {"sbs", r, x, s{"a.nic.sbs", "b.nic.sbs", "c.nic.sbs", "d.nic.sbs"}, n, n, "whois.nic.sbs", e, "https://newgtlds.icann.org/", 0x42, t},
1325 {"sc", r, z[4230:4235], 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},
13261326 {"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},
13271327 {"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},
13281328 {"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},
13361336 {"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},
13371337 {"scor", r, x, n, n, n, "whois.nic.scor", e, "https://newgtlds.icann.org/", 0x42, f},
13381338 {"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},
1339 {"sd", r, z[4235:4243], 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[4243:4275], 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},
13411341 {"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},
13421342 {"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},
13431343 {"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},
13521352 {"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},
13531353 {"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},
13541354 {"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},
1355 {"sg", r, z[4275:4281], 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[4281:4288], 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},
13571357 {"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},
13581358 {"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},
13591359 {"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},
13601360 {"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},
1361 {"shia", r, x, s{"a.ns.nic.shia", "b.ns.nic.shia", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, s{"Iran"}, "whois.nic.shia", e, "https://newgtlds.icann.org/", 0x40, f},
13621362 {"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},
13631363 {"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},
13641364 {"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},
13671367 {"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},
13681368 {"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},
13691369 {"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},
1370 {"shriram", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
1371 {"si", r, z[4288:4295], 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},
13721372 {"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},
13731373 {"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},
13741374 {"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},
13801380 {"skolkovo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
13811381 {"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},
13821382 {"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},
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, t},
1384 {"sl", r, z[4295:4300], s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, "whois.nic.sl", e, "https://www.nic.sl", 0xa0, f},
13851385 {"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},
13861386 {"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},
13871387 {"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},
13881388 {"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},
1389 {"sn", r, z[4300:4307], 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},
13901390 {"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},
1391 {"so", r, z[4307:4311], s{"d.nic.so", "e.nic.so"}, n, n, "whois.nic.so", e, e, 0xa0, f},
13921392 {"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},
13931393 {"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},
13941394 {"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},
13991399 {"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},
14001400 {"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},
14011401 {"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},
1402 {"spa", r, x, s{"a0.nic.spa", "a2.nic.spa", "b0.nic.spa", "c0.nic.spa"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, f},
1403 {"space", r, z[4311:4312], 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},
14041404 {"spiegel", r, x, n, n, n, "whois.ksregistry.net", e, "https://newgtlds.icann.org/", 0x42, f},
14051405 {"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},
14061406 {"sports", r, x, n, n, n, e, e, "https://gtldresult.icann.org/applicationstatus/applicationdetails/604", 0x2040, t},
14071407 {"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},
1408 {"spreadbetting", r, x, s{"a.nic.spreadbetting", "b.nic.spreadbetting", "c.nic.spreadbetting", "d.nic.spreadbetting"}, n, n, "whois.nic.spreadbetting", e, "https://bostonivy.co/", 0x40, f},
14091409 {"sr", r, x, s{"ns1.sr.net", "ns2.sr.net"}, n, n, e, "http://www.register.sr", e, 0xe0, f},
14101410 {"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},
14111411 {"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},
1412 {"ss", r, z[4312:4319], 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[4319:4332], s{"dns-au.st", "dns-st.bahnhof.net", "dns-us.st", "ns1.bahnhof.net"}, n, n, "whois.nic.st", e, e, 0xa0, f},
14141414 {"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},
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, t},
14161416 {"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},
14171417 {"starhub", r, x, n, n, n, "whois.nic.starhub", e, "https://newgtlds.icann.org/", 0x42, f},
14181418 {"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},
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, t},
14201420 {"statoil", r, x, n, n, n, "whois.nic.statoil", e, "https://newgtlds.icann.org/", 0x42, f},
14211421 {"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},
14221422 {"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},
14281428 {"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},
14291429 {"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},
14301430 {"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},
1431 {"su", r, z[4332:4384], 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},
14321432 {"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},
14331433 {"supersport", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
14341434 {"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},
14371437 {"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},
14381438 {"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},
14391439 {"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},
1440 {"sv", r, z[4384:4389], 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},
14411441 {"svr", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
14421442 {"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},
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, t},
14441444 {"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},
14451445 {"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},
1446 {"sy", r, z[4389:4395], 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},
14471447 {"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},
14481448 {"symantec", r, x, n, n, n, "whois.nic.symantec", e, "https://newgtlds.icann.org/", 0x42, t},
14491449 {"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},
1450 {"sz", r, z[4395:4398], s{"ns1.sispa.org.sz", "rip.psg.com", "sz.cctld.authdns.ripe.net"}, n, n, e, e, e, 0xa0, f},
14511451 {"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},
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, t},
14531453 {"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},
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, t},
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, t},
14561456 {"tata", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
14571457 {"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},
14581458 {"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},
14591459 {"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},
14601460 {"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},
14611461 {"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},
1462 {"tc", r, z[4398:4432], 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", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, "whois.nic.tci", e, "https://newgtlds.icann.org/", 0x42, f},
1464 {"td", r, z[4432:4436], s{"ns-td.afrinic.net", "ns.cocca.fr", "nsa.nic.td", "pch.nic.td"}, n, n, "whois.nic.td", e, "http://nic.td/", 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, t},
14661466 {"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},
14671467 {"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},
14681468 {"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},
14721472 {"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},
14731473 {"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},
14741474 {"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},
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, t},
1476 {"tf", r, z[4436:4450], 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", e, "http://www.nic.tg/", 0xa0, f},
1478 {"th", r, z[4450:4457], 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},
14791479 {"thai", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
14801480 {"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},
14811481 {"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},
14911491 {"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},
14921492 {"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},
14931493 {"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},
1494 {"tj", r, z[4457:4478], 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},
14951495 {"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},
14961496 {"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},
14971497 {"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},
14981498 {"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},
1499 {"tl", r, z[4478:4485], s{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, "whois.nic.tl", e, e, 0xa0, f},
1500 {"tm", r, z[4485:4493], 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, t},
1502 {"tn", r, z[4493:4512], 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},
15031503 {"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},
15041504 {"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},
15051505 {"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},
15131513 {"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},
15141514 {"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},
15151515 {"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},
1516 {"tp", r, z[4512:4515], n, n, n, e, e, e, 0x8a0, f},
1517 {"tr", r, z[4515:4536], 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},
15181518 {"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},
15191519 {"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},
1520 {"trading", r, x, s{"a.nic.trading", "b.nic.trading", "c.nic.trading", "d.nic.trading"}, n, n, "whois.nic.trading", e, "https://bostonivy.co/", 0x40, f},
15211521 {"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},
15221522 {"transformers", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
15231523 {"translations", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
15241524 {"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},
1525 {"travel", 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.travel", e, "http://www.travel.travel/", 0x1040, f},
15261526 {"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},
15271527 {"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},
15281528 {"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},
15291529 {"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},
1530 {"trust", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.nic.trust", e, "https://newgtlds.icann.org/", 0x40, f},
15311531 {"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},
1532 {"tt", r, z[4536:4568], 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},
15331533 {"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},
15341534 {"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},
15351535 {"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},
15361536 {"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},
15371537 {"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},
15381538 {"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},
1539 {"tw", r, z[4568:4581], 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[4581:4593], 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[4593:4659], 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},
15421542 {"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},
15431543 {"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},
15441544 {"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},
1545 {"ug", r, z[4659:4668], 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[4668:4678], 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},
15471547 {"ultrabook", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
15481548 {"um", r, x, n, n, n, e, e, e, 0x8a0, f},
15491549 {"ummah", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
15531553 {"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},
15541554 {"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},
15551555 {"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},
1556 {"us", r, z[4678:4738], 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[4738:4744], 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[4744:4758], s{"ns.uz", "ns1.uz", "ns2.uz", "ns3.uz", "ns4.uz", "ns5.uz", "ns6.uz", "ns7.uz"}, n, n, "whois.cctld.uz", e, e, 0xa0, f},
15591559 {"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},
15601560 {"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},
15611561 {"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},
15621562 {"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},
15631563 {"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},
1564 {"vc", r, z[4758:4761], 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[4761:4772], 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},
15661566 {"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},
15671567 {"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},
15681568 {"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},
15701570 {"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},
15711571 {"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},
15721572 {"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},
1573 {"vg", r, z[4772:4773], 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[4773:4779], 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},
15751575 {"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},
15761576 {"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},
15771577 {"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},
15851585 {"vista", r, x, n, n, n, "whois.nic.vista", e, "https://newgtlds.icann.org/", 0x42, f},
15861586 {"vistaprint", r, x, n, n, n, "whois.nic.vistaprint", e, "https://newgtlds.icann.org/", 0x42, f},
15871587 {"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},
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, t},
1589 {"vlaanderen", r, x, s{"a.nsset.vlaanderen", "b.nsset.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[4779:4791], 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},
15911591 {"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},
15921592 {"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},
15931593 {"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},
15961596 {"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},
15971597 {"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},
15981598 {"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},
1599 {"vu", r, z[4791:4796], 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, t},
16011601 {"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},
16021602 {"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},
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, t},
16041604 {"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},
16051605 {"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},
16061606 {"warman", r, x, n, n, n, "whois.nic.warman", e, "https://newgtlds.icann.org/", 0x42, f},
16071607 {"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},
1608 {"watches", r, x, s{"a0.nic.watches", "a2.nic.watches", "b0.nic.watches", "c0.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, t},
16101610 {"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},
16111611 {"web", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
16121612 {"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},
16351635 {"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},
16361636 {"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},
16371637 {"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},
1638 {"ws", r, z[4796:4801], 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},
16391639 {"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},
16401640 {"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},
16411641 {"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},
16501650 {"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},
16511651 {"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},
16521652 {"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},
1653 {"ye", r, z[4801:4809], s{"ns1.yemen.net.ye", "ns2.yemen.net.ye", "sah1.ye", "sah2.ye"}, n, n, e, e, e, 0xa8, f},
16541654 {"yellowpages", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x48, f},
16551655 {"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},
16561656 {"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},
16581658 {"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},
16591659 {"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},
16601660 {"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},
1661 {"yu", r, z[4809:4815], n, n, n, e, e, e, 0x8a0, f},
16621662 {"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},
1663 {"za", r, z[4815:4842], s{"nsza.is.co.za", "za-ns.anycast.pch.net", "za1.dnsnode.net"}, n, n, "whois.nic.za", e, e, 0xa8, f},
16641664 {"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},
16651665 {"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},
16661666 {"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},
16671667 {"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},
16681668 {"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},
1669 {"zm", r, z[4842:4850], s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, "whois.zicta.zm", e, e, 0xa0, f},
16701670 {"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},
16711671 {"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},
16721672 {"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},
1673 {"zw", r, z[4850:4854], 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},
16741674 {"xn--jxalpdlp" /* δοκιμή */, r, x, n, n, n, e, e, e, 0x40, t},
16751675 {"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},
16761676 {"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},
16861686 {"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},
16871687 {"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},
16881688 {"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},
1689 {"xn--p1acf" /* рус */, r, z[4854:5054], s{"ns1.anycastdns.cz", "ns1.nic.xn--p1acf", "ns2.anycastdns.cz", "ns2.nic.xn--p1acf"}, n, n, "whois.nic.xn--p1acf", e, "https://newgtlds.icann.org/", 0x40, t},
1690 {"xn--p1ai" /* рф */, r, z[5054:5057], 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},
16911691 {"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},
1692 {"xn--90a3ac" /* срб */, r, z[5057:5062], 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},
16931693 {"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},
16941694 {"xn--80ao21a" /* қаз */, r, x, s{"ns.nic.kz", "ns1.nic.kz"}, n, n, "whois.nic.kz", e, e, 0x40, t},
16951695 {"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},
17111711 {"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},
17121712 {"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},
17131713 {"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},
1714 {"xn--mgbbh1a71e" /* بھارت */, r, z[5062:5063], 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},
17151715 {"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},
17161716 {"xn--mgbpl2fh" /* سودان */, r, x, s{"ans1.sis.sd", "pch.sis.sd"}, n, n, e, e, e, 0x40, t},
17171717 {"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},
17301730 {"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},
17311731 {"xn--mgbv6cfpo" /* موزايك */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
17321732 {"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},
1733 {"xn--mgbt3dhd" /* همراه */, r, x, s{"a.ns.nic.xn--mgbt3dhd", "b.ns.nic.xn--mgbt3dhd", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, s{"Iran"}, "whois.nic.xn--mgbt3dhd", e, "https://newgtlds.icann.org/", 0x40, t},
17341734 {"xn--mgbai9azgqp6j" /* پاکستان */, r, x, s{"ns.ntc.net.pk", "ns1.ntc.net.pk", "ns2.ntc.net.pk"}, n, n, e, e, e, 0x0, t},
17351735 {"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},
17361736 {"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},
17371737 {"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},
17381738 {"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},
1739 {"xn--h2brj9c" /* भारत */, r, z[5063:5064], 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},
17401740 {"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},
17411741 {"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},
17421742 {"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},
17431743 {"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},
1744 {"xn--45brj9c" /* ভারত */, r, z[5064:5066], 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},
17451745 {"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},
1746 {"xn--s9brj9c" /* ਭਾਰਤ */, r, z[5066:5067], 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[5067:5068], 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},
17481748 {"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},
1749 {"xn--xkc2dl3a5ee0h" /* இந்தியா */, r, z[5068:5069], 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},
17501750 {"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},
17511751 {"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},
17521752 {"xn--hlcj6aya9esc7a" /* பரிட்சை */, r, x, n, n, n, e, e, e, 0x40, t},
17551755 {"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},
17561756 {"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},
17571757 {"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},
1758 {"xn--o3cw4h" /* ไทย */, r, z[5069:5070], 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},
17591759 {"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},
17601760 {"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},
17611761 {"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},
18411841 {"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},
18421842 {"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},
18431843 {"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},
1844 {"xn--j6w193g" /* 香港 */, r, z[5070:5076], 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},
18451845 {"xn--j6w470d71issc" /* 香港電訊 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, t},
18461846 {"xn--c1yn36f" /* 點看 */, r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x0, t},
18471847 {"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},
18681868 {"cargo.aero", &z[25], x, n, n, n, e, e, e, 0x0, t},
18691869 {"charter.aero", &z[25], x, n, n, n, e, e, e, 0x0, t},
18701870 {"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},
1871 {"com.af", &z[27], x, s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
1872 {"edu.af", &z[27], x, s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
1873 {"gov.af", &z[27], x, s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
18741874 {"hotel.af", &z[27], x, n, n, n, e, e, e, 0x0, f},
18751875 {"law.af", &z[27], x, n, n, n, e, e, e, 0x0, f},
18761876 {"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},
1877 {"net.af", &z[27], x, s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
1878 {"org.af", &z[27], x, s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
1879 {"tv.af", &z[27], x, s{"ns.anycast.nic.af", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
18801880 {"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},
18811881 {"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},
18821882 {"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},
18831883 {"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},
18841884 {"ok.ag", &z[32], x, s{"ns1.domainname.at", "ns3.domainname.at", "ns4.domainname.at"}, n, n, e, e, e, 0x0, t},
18851885 {"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},
1886 {"com.ai", &z[35], x, s{"pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1887 {"net.ai", &z[35], x, s{"pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1888 {"off.ai", &z[35], x, s{"pch.whois.ai"}, n, n, e, e, e, 0x0, f},
1889 {"org.ai", &z[35], x, s{"pch.whois.ai"}, n, n, e, e, e, 0x0, f},
18901890 {"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},
18911891 {"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},
18921892 {"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},
19021902 {"net.am", &z[54], x, n, n, n, e, e, e, 0x0, f},
19031903 {"north.am", &z[54], x, s{"ns1.instradns.com", "ns2.instradns.com"}, n, n, e, e, e, 0x0, f},
19041904 {"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},
1905 {"radio.am", &z[54], x, s{"a.nic.fm", "b.nic.fm", "c.nic.fm", "d.nic.fm"}, n, n, e, e, e, 0x0, t},
19061906 {"south.am", &z[54], x, s{"ns1.instradns.com", "ns2.instradns.com"}, n, n, e, e, e, 0x0, f},
19071907 {"com.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
19081908 {"edu.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
19091909 {"net.an", &z[63], x, n, n, n, e, e, e, 0x800, f},
19101910 {"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},
1911 {"co.ao", &z[71], z[5076:5078], 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},
19121912 {"ed.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
19131913 {"gv.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
19141914 {"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},
19161916 {"pb.ao", &z[71], x, n, n, n, e, e, e, 0x0, f},
19171917 {"com.aq", &z[76], x, s{"ns1.internet.com.pe", "ns2.internet.com.pe"}, n, n, e, e, e, 0x0, f},
19181918 {"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},
1919 {"edu.ar", &z[79], z[5078:5079], 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},
19201920 {"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},
19211921 {"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},
19221922 {"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},
19241924 {"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},
19251925 {"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},
19261926 {"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},
1927 {"e164.arpa", &z[85], x, s{"ns3.afrinic.net", "ns3.lacnic.net", "ns4.apnic.net", "pri.authdns.ripe.net", "rirns.arin.net"}, n, n, "whois.ripe.net", e, e, 0x8, f},
19281928 {"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},
19291929 {"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},
19301930 {"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},
19401940 {"com.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
19411941 {"conf.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
19421942 {"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},
1943 {"edu.au", &z[96], z[5079:5087], s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, "http://www.domainname.edu.au/", 0x0, f},
19441944 {"gov.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
19451945 {"id.au", &z[96], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, f},
19461946 {"info.au", &z[96], x, n, n, n, e, e, "http://www.aunic.net/", 0x800, f},
19851985 {"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},
19861986 {"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},
19871987 {"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},
1988 {"unbi.ba", &z[115], x, s{"linhost01.utic.net.ba", "sava.utic.net.ba"}, n, n, e, e, e, 0x0, f},
19891989 {"unmo.ba", &z[115], x, s{"dns2019.unmo.ba", "pdc2019.unmo.ba", "web2019.unmo.ba"}, n, n, e, e, e, 0x0, f},
19901990 {"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},
19911991 {"untz.ba", &z[115], x, s{"gradina.untz.ba", "slatina.untz.ba"}, n, n, e, e, e, 0x0, f},
21212121 {"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},
21222122 {"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},
21232123 {"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 {"app.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},
21242125 {"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},
21252126 {"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},
21262127 {"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},
21272128 {"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},
21282129 {"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},
21292130 {"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},
2131 {"bib.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},
21302132 {"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},
21312133 {"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},
21322134 {"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},
21392141 {"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},
21402142 {"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},
21412143 {"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},
2144 {"coz.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},
21422145 {"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},
2146 {"des.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 {"det.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 {"dev.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},
21432149 {"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},
21442150 {"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},
21452151 {"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},
21462152 {"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},
2153 {"enf.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},
21472154 {"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},
21482155 {"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},
21492156 {"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},
21582165 {"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},
21592166 {"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},
21602167 {"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},
2168 {"geo.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},
21612169 {"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},
21622170 {"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},
21632171 {"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},
21682176 {"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},
21692177 {"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},
21702178 {"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},
2179 {"log.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},
21712180 {"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},
21722181 {"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},
21732182 {"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},
21922201 {"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},
21932202 {"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},
21942203 {"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},
2204 {"rep.br", &z[194], z[5087:5088], 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},
21962205 {"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},
21972206 {"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},
21982207 {"sec3.br", &z[194], x, n, n, n, e, e, e, 0x0, t},
2208 {"seg.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},
21992209 {"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},
22002210 {"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},
22012211 {"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},
22022212 {"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},
2213 {"tec.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},
22032214 {"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},
22042215 {"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},
22052216 {"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},
22572268 {"edu.cc", &z[256], x, s{"ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, t},
22582269 {"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},
22592270 {"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},
2271 {"ac.cd", &z[257], x, s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, e, e, e, 0x0, t},
2272 {"com.cd", &z[257], x, s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, e, e, e, 0x0, t},
2273 {"edu.cd", &z[257], x, s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, e, e, e, 0x0, t},
2274 {"gouv.cd", &z[257], x, s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, e, e, e, 0x0, t},
2275 {"net.cd", &z[257], x, s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, e, e, e, 0x0, f},
2276 {"org.cd", &z[257], x, s{"ns-root-21.scpt-network.net", "ns-root-22.scpt-network.net", "ns-root-23.scpt-network.net"}, n, n, e, e, e, 0x0, f},
22662277 {"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},
22672278 {"aeroport.ci", &z[285], x, n, n, n, e, e, e, 0x0, f},
22682279 {"asso.ci", &z[285], x, s{"f1g1ns1.dnspod.net", "f1g1ns2.dnspod.net"}, n, n, e, e, "http://www.nic.ci/", 0x0, t},
22882299 {"info.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
22892300 {"net.ck", &z[295], x, n, n, n, e, e, e, 0x0, f},
22902301 {"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},
2302 {"co.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},
22922303 {"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},
22932304 {"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},
2305 {"net.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},
22952306 {"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},
22962307 {"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},
22972308 {"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},
23142325 {"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},
23152326 {"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},
23162327 {"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},
2328 {"keyword.cn", &z[307], z[5088:5089], s{"ns11.xincache.com", "ns12.xincache.com"}, n, n, e, e, e, 0x0, t},
23182329 {"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},
23192330 {"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},
23202331 {"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},
23442355 {"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},
23452356 {"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},
23462357 {"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},
2358 {"ar.com", &z[314], x, s{"pdns07.domaincontrol.com", "pdns08.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23482359 {"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},
23492360 {"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},
23502361 {"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},
23522363 {"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},
23532364 {"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},
23542365 {"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},
2366 {"gb.com", &z[314], x, s{"ns-cloud-a1.googledomains.com", "ns-cloud-a2.googledomains.com", "ns-cloud-a3.googledomains.com", "ns-cloud-a4.googledomains.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23562367 {"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},
23572368 {"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},
23582369 {"hu.com", &z[314], x, s{"ns3.dns.com", "ns4.dns.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23592370 {"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},
2371 {"kr.com", &z[314], x, s{"jm1.dns.com", "jm2.dns.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23612372 {"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},
2373 {"no.com", &z[314], x, s{"pdns07.domaincontrol.com", "pdns08.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23632374 {"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},
23642375 {"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},
2376 {"qb.com", &z[314], x, s{"betty.ns.cloudflare.com", "scott.ns.cloudflare.com"}, n, n, e, e, e, 0x200, f},
2377 {"qc.com", &z[314], x, s{"pdns07.domaincontrol.com", "pdns08.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23672378 {"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},
23682379 {"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},
23692380 {"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},
23702381 {"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},
2382 {"ukots.com", &z[314], x, s{"cdns1.main-hosting.eu", "cdns2.main-hosting.eu"}, n, n, e, e, e, 0x0, t},
23712383 {"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},
23722384 {"uy.com", &z[314], x, s{"ns49.domaincontrol.com", "ns50.domaincontrol.com"}, n, n, "whois.centralnic.com", e, e, 0x200, t},
23732385 {"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},
24012413 {"publ.cv", &z[351], x, n, n, n, e, e, e, 0x0, f},
24022414 {"com.cw", &z[352], x, n, n, n, e, e, e, 0x0, f},
24032415 {"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},
2416 {"com.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, t},
2417 {"edu.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, t},
2418 {"gov.cx", &z[353], x, s{"ns.anycast.nic.cx", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
2419 {"net.cx", &z[353], x, s{"ns.anycast.nic.cx"}, n, n, e, e, e, 0x0, t},
2420 {"org.cx", &z[353], x, s{"ns.anycast.nic.cx"}, n, n, e, e, e, 0x0, t},
24092421 {"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},
24102422 {"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},
24112423 {"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},
25352547 {"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},
25362548 {"aero.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
25372549 {"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},
2550 {"co.fo", &z[508], x, s{"a.v4ns.xyz", "b.v4ns.net", "c.v4ns.org", "d.v4ns.dev", "f.v4ns.biz"}, n, n, e, e, e, 0x0, f},
2551 {"com.fo", &z[508], x, s{"a.v4ns.xyz", "b.v4ns.net", "c.v4ns.org", "d.v4ns.dev", "f.v4ns.biz"}, n, n, e, e, e, 0x0, f},
25402552 {"coop.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
25412553 {"edu.fo", &z[508], x, s{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, e, e, e, 0x0, f},
25422554 {"flp.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
25532565 {"org.fo", &z[508], x, s{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, e, e, e, 0x0, f},
25542566 {"telenet.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
25552567 {"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},
2568 {"web.fo", &z[508], x, n, n, n, e, e, e, 0x0, f},
25572569 {"www.fo", &z[508], x, s{"ns1.nic.fo", "ns2.nic.fo", "ns3.nic.fo"}, n, n, e, e, e, 0x0, f},
25582570 {"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},
25592571 {"asso.fr", &z[519], x, n, n, n, e, e, e, 0x800, f},
26032615 {"pvt.ge", &z[550], x, s{"auth02.ns.uu.net", "ns.nic.ge"}, n, n, e, e, e, 0x0, f},
26042616 {"school.ge", &z[550], x, s{"ns.nic.ge", "ns2.nic.ge"}, n, n, e, e, e, 0x0, t},
26052617 {"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},
2618 {"ac.gg", &z[558], x, s{"nsa.dnsnode.net", "nsp.dnsnode.net", "nsu.dnsnode.net"}, n, n, e, e, e, 0x0, f},
2619 {"co.gg", &z[558], x, s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, e, e, e, 0x0, f},
26082620 {"eu.gg", &z[558], x, s{"ns5.myhostadmin.net", "ns6.myhostadmin.net"}, n, n, e, e, e, 0x200, t},
26092621 {"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},
2622 {"net.gg", &z[558], x, s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, e, e, e, 0x0, f},
2623 {"org.gg", &z[558], x, s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, e, e, e, 0x0, f},
26122624 {"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},
26132625 {"tr.gg", &z[558], x, s{"ns01.webme.com", "ns02.webme.com"}, s{"193.238.27.36"}, n, e, e, e, 0x0, f},
26142626 {"tv.gg", &z[558], x, n, n, n, e, e, e, 0x200, t},
26662678 {"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},
26672679 {"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},
26682680 {"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},
2681 {"co.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
2682 {"com.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
2683 {"net.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, f},
2684 {"org.gy", &z[616], x, s{"a.lactld.org", "gy-ns.anycast.pch.net"}, n, n, e, e, e, 0x0, t},
26732685 {"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},
26742686 {"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},
26752687 {"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},
26892701 {"from.hr", &z[665], x, s{"dns-ez-1.carnet.hr", "dns1.from.hr", "dns2.from.hr"}, n, n, e, e, e, 0x0, f},
26902702 {"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},
26912703 {"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},
2704 {"adult.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x1, f},
2705 {"art.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2706 {"asso.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2707 {"com.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2708 {"coop.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2709 {"edu.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2710 {"firm.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2711 {"gouv.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2712 {"info.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2713 {"med.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2714 {"net.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2715 {"org.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2716 {"perso.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2717 {"pol.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2718 {"pro.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2719 {"rel.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
2720 {"shop.ht", &z[667], x, s{"ns1.nic.ht", "ns1.polymtl.ca", "ns3.nic.fr", "pch.nic.ht"}, n, n, e, e, e, 0x0, f},
27092721 {"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},
27102722 {"ac.hu", &z[669], x, n, n, n, e, e, e, 0x0, f},
27112723 {"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},
27132725 {"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},
27142726 {"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},
27152727 {"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},
2728 {"edu.hu", &z[669], x, s{"kubiac.iif.hu", "ns2.iif.hu", "ns2.sztaki.hbone.hu"}, n, n, e, e, e, 0x0, f},
27172729 {"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},
27182730 {"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},
27192731 {"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},
27662778 {"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},
27672779 {"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},
27682780 {"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},
2781 {"co.im", &z[685], z[5089:5091], n, n, n, e, e, e, 0x0, f},
27702782 {"com.im", &z[685], x, n, n, n, e, e, e, 0x0, f},
27712783 {"gov.im", &z[685], x, s{"barney.advsys.co.uk", "hoppy.iom.com", "pebbles.iom.com"}, n, n, e, e, e, 0x0, f},
27722784 {"net.im", &z[685], x, n, n, n, e, e, e, 0x0, f},
31663178 {"vt.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
31673179 {"vv.it", &z[720], x, n, n, n, e, e, e, 0x0, t},
31683180 {"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},
3181 {"co.je", &z[729], x, s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, e, e, e, 0x0, f},
31703182 {"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},
3183 {"net.je", &z[729], x, s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, e, e, e, 0x0, f},
3184 {"org.je", &z[729], x, s{"c.ci-servers.org", "dns1.nominetdns.uk", "dns2.nominetdns.uk", "dns3.nominetdns.uk", "dns4.nominetdns.uk"}, n, n, e, e, e, 0x0, f},
31733185 {"sch.je", &z[729], x, s{"ns1.gov.je", "ns2.gov.je"}, n, n, e, e, e, 0x0, f},
31743186 {"com.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
31753187 {"edu.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
31793191 {"org.jm", &z[736], x, n, n, n, e, e, e, 0x0, f},
31803192 {"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},
31813193 {"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},
3194 {"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"}, n, n, e, e, e, 0x0, f},
31833195 {"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},
31843196 {"name.jo", &z[739], x, n, n, n, e, e, e, 0x0, f},
31853197 {"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},
34303442 {"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},
34313443 {"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},
34323444 {"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},
3445 {"sc.ls", &z[855], x, s{"ns1.nic.ls", "ns1.telewebls.com", "ns2.nic.ls"}, n, n, e, e, e, 0x0, f},
34343446 {"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},
34353447 {"asn.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
34363448 {"com.lv", &z[864], x, n, n, n, e, e, e, 0x0, f},
34693481 {"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},
34703482 {"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},
34713483 {"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},
3484 {"gov.mg", &z[907], x, s{"ns.gov.mg", "ns1.gov.mg", "ns2.gov.mg"}, n, n, e, e, e, 0x0, f},
34733485 {"in.mg", &z[907], x, s{"ns1.in.mg", "ns2.in.mg"}, n, n, e, e, e, 0x0, t},
34743486 {"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},
34753487 {"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},
34903502 {"gov.ml", &z[920], x, s{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, e, e, e, 0x0, f},
34913503 {"net.ml", &z[920], x, s{"dns01.gouv.ml", "dns02.gouv.ml"}, n, n, e, e, e, 0x0, f},
34923504 {"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},
3505 {"presse.ml", &z[920], x, s{"cdns1.main-hosting.eu", "cdns2.main-hosting.eu"}, n, n, e, e, e, 0x0, f},
34943506 {"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},
34953507 {"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},
34963508 {"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},
35133525 {"gov.mp", &z[949], x, s{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, e, e, e, 0x0, f},
35143526 {"org.mp", &z[949], x, s{"ns1.nic.net.mp", "ns2.nic.net.mp"}, n, n, e, e, e, 0x0, f},
35153527 {"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},
3528 {"gov.mr", &z[951], x, s{"dns.mauritania.mr", "dns2.mauritania.mr"}, n, n, e, e, e, 0x0, f},
35173529 {"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},
35183530 {"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},
35193531 {"co.ms", &z[954], x, s{"ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
35203532 {"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},
3533 {"net.ms", &z[954], x, s{"ns1.idnscan.net", "ns6.idnscan.net"}, n, n, e, e, e, 0x0, t},
35223534 {"org.ms", &z[954], x, s{"ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
35233535 {"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},
35243536 {"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},
36053617 {"com.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
36063618 {"info.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
36073619 {"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},
3620 {"org.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
36093621 {"perso.ne", &z[984], x, n, n, n, e, e, e, 0x0, f},
36103622 {"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},
36113623 {"auz.net", &z[986], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x0, f},
36233635 {"info.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
36243636 {"net.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
36253637 {"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},
3638 {"other.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
36273639 {"per.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
36283640 {"rec.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
36293641 {"store.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
36313643 {"web.nf", &z[998], x, s{"ns.anycast.nic.nf", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, e, e, e, 0x0, f},
36323644 {"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},
36333645 {"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},
3646 {"gov.ng", &z[1000], z[5091:5092], s{"ns1.nic.net.ng", "ns2.nic.net.ng", "ns5.nic.net.ng", "nsa.nic.net.ng"}, n, n, e, e, e, 0x0, f},
36353647 {"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},
36363648 {"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},
36373649 {"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},
36583670 {"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},
36593671 {"com.nl", &z[1010], x, s{"ns1.com.nl", "ns2.com.nl"}, s{"185.85.211.136"}, n, e, e, e, 0x200, f},
36603672 {"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},
3673 {"nom.nl", &z[1010], x, s{"ns1.hostnet.nl", "ns2.hostnetbv.com", "ns3.hostnetbv.nl"}, n, n, e, e, e, 0x0, f},
3674 {"punt.nl", &z[1010], x, s{"nsn1.mijndomein.nl", "nsn2.mijndomein.nl", "nsn3.mijndomein.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},
36633675 {"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},
36643676 {"fhs.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
36653677 {"folkebibl.no", &z[1011], x, s{"x.nic.no", "y.nic.no", "z.nic.no"}, n, n, e, e, e, 0x0, f},
37203732 {"creditcard.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
37213733 {"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},
37223734 {"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},
3735 {"edu.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},
37243736 {"email.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
37253737 {"engineering.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
37263738 {"estate.np", &z[1019], x, n, n, n, e, e, "https://register.com.np", 0x0, f},
38393851 {"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},
38403852 {"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},
38413853 {"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},
3854 {"net.nz", &z[1026], z[5092:5093], 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},
38433855 {"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},
38443856 {"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},
38453857 {"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},
38573869 {"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},
38583870 {"sch.om", &z[1037], x, n, n, n, e, e, e, 0x0, f},
38593871 {"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},
3872 {"eu.org", &z[1048], z[5093:5145], 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},
38613873 {"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},
3874 {"js.org", &z[1048], x, s{"miles.ns.cloudflare.com", "pam.ns.cloudflare.com"}, s{"2a01:4f8:211:1443:31::b4a6"}, n, e, e, e, 0x0, t},
38633875 {"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},
38643876 {"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},
38653877 {"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},
40854097 {"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},
40864098 {"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},
40874099 {"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},
4100 {"at.pn", &z[1110], z[5145:5146], n, n, n, e, e, e, 0x0, f},
4101 {"au.pn", &z[1110], z[5146:5147], n, n, n, e, e, e, 0x0, f},
40904102 {"ca.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
40914103 {"ch.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
40924104 {"cn.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
40934105 {"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},
4106 {"de.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
40954107 {"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},
40964108 {"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},
40974109 {"eu.pn", &z[1110], x, n, n, n, e, e, e, 0x800, f},
41024114 {"jp.pn", &z[1110], x, n, n, n, e, e, e, 0x800, f},
41034115 {"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},
41044116 {"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},
4117 {"uk.pn", &z[1110], z[5147:5148], n, n, n, e, e, e, 0x800, f},
41064118 {"us.pn", &z[1110], x, n, n, n, e, e, e, 0x0, f},
41074119 {"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},
41084120 {"ag.pr", &z[1118], x, n, n, n, e, e, e, 0x800, f},
41784190 {"min.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
41794191 {"nitr.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
41804192 {"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},
4193 {"nurse.pro", &z[1123], x, s{"park1.encirca.net", "park2.encirca.net"}, s{"54.81.12.134", "54.87.195.23"}, n, e, e, e, 0x0, f},
41824194 {"opt.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
41834195 {"pa.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
41844196 {"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},
4197 {"pharma.pro", &z[1123], x, s{"ns1.sedoparking.com", "ns2.sedoparking.com"}, s{"91.195.241.137"}, n, e, e, e, 0x0, f},
41864198 {"pod.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
41874199 {"pr.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
41884200 {"prof.pro", &z[1123], x, s{"dns1.encirca.net", "dns2.encirca.net"}, n, n, e, e, e, 0x0, f},
41904202 {"pt.pro", &z[1123], x, n, n, n, e, e, e, 0x0, t},
41914203 {"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},
41924204 {"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},
4205 {"teach.pro", &z[1123], x, s{"curitiba.porkbun.com", "fortaleza.porkbun.com", "maceio.porkbun.com", "salvador.porkbun.com"}, s{"44.230.85.241", "uixie.porkbun.com"}, n, e, e, e, 0x0, f},
41944206 {"vet.pro", &z[1123], x, n, n, n, e, e, e, 0x0, f},
41954207 {"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},
41964208 {"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},
42014213 {"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},
42024214 {"plo.ps", &z[1134], x, s{"dns3.gov.ps", "dns4.pna.ps"}, n, n, e, e, e, 0x0, t},
42034215 {"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},
4216 {"co.pt", &z[1135], x, s{"ns61.plako.net", "ns62.plako.net"}, s{"195.22.20.163"}, n, e, e, e, 0x0, t},
42054217 {"com.pt", &z[1135], x, n, n, n, e, e, e, 0x0, t},
42064218 {"edu.pt", &z[1135], x, n, n, n, e, e, e, 0x0, f},
42074219 {"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},
42174229 {"edu.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
42184230 {"go.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
42194231 {"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},
4232 {"ne.pw", &z[1137], x, s{"a.dnspod.com", "b.dnspod.com", "c.dnspod.com"}, n, n, e, e, e, 0x0, t},
42214233 {"net.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, f},
42224234 {"or.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, t},
42234235 {"org.pw", &z[1137], x, s{"ns1390.ztomy.com", "ns2390.ztomy.com"}, s{"141.8.226.59"}, n, e, e, e, 0x0, f},
42534265 {"rec.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
42544266 {"ro.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
42554267 {"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},
4268 {"srl.ro", &z[1185], x, s{"ns1.eunoc.net", "ns2.eunoc.net", "ns3.eunoc.net"}, n, n, e, e, e, 0x0, f},
42574269 {"store.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
42584270 {"tm.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
42594271 {"www.ro", &z[1185], x, n, n, n, e, e, e, 0x0, f},
43094321 {"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},
43104322 {"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},
43114323 {"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},
4324 {"com.sb", &z[1223], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4325 {"edu.sb", &z[1223], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4326 {"gov.sb", &z[1223], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4327 {"net.sb", &z[1223], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
4328 {"org.sb", &z[1223], x, s{"ns1.anycastdns.cz", "ns2.anycastdns.cz", "pch.nic.sb"}, n, n, e, e, e, 0x0, f},
43174329 {"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},
43184330 {"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},
43194331 {"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},
43854397 {"net.sl", &z[1285], x, s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, e, e, e, 0x0, f},
43864398 {"org.sl", &z[1285], x, s{"ns1.neoip.com", "ns2.neoip.com"}, n, n, e, e, e, 0x0, f},
43874399 {"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},
4400 {"com.sn", &z[1290], x, s{"ns.nic.sn", "ns.ucad.sn", "ns3.cctld.sn"}, n, n, e, e, e, 0x0, f},
4401 {"edu.sn", &z[1290], x, s{"ns.nic.sn", "ns.ucad.sn", "ns3.cctld.sn"}, n, n, e, e, e, 0x0, f},
43904402 {"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},
4403 {"org.sn", &z[1290], x, s{"ns.nic.sn", "ns.ucad.sn", "ns3.cctld.sn"}, n, n, e, e, e, 0x0, f},
43924404 {"perso.sn", &z[1290], x, s{"ns1.dns.com", "ns2.dns.com"}, n, n, e, e, e, 0x0, f},
43934405 {"univ.sn", &z[1290], x, s{"dns.ucad.sn", "ns.nic.sn", "ns.ucad.sn"}, n, n, e, e, e, 0x0, t},
43944406 {"com.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
43964408 {"net.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
43974409 {"org.so", &z[1292], x, s{"d.nic.so", "e.nic.so", "ns.cocca.fr"}, n, n, e, e, e, 0x0, f},
43984410 {"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},
4411 {"biz.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4412 {"com.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4413 {"edu.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4414 {"me.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4415 {"net.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4416 {"org.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "pch.nic.ss"}, n, n, e, e, e, 0x0, t},
4417 {"sch.ss", &z[1313], x, s{"b.ns.tznic.or.tz", "ssnic.anycastdns.cz"}, n, n, e, e, e, 0x0, t},
44064418 {"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},
44074419 {"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},
44084420 {"consulado.st", &z[1314], x, s{"ns1.bahnhof.net", "ns2.bahnhof.net"}, n, n, e, e, e, 0x0, f},
44824494 {"ac.sz", &z[1351], x, n, n, n, e, e, e, 0x0, f},
44834495 {"co.sz", &z[1351], x, n, n, n, e, e, e, 0x0, f},
44844496 {"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},
4497 {"at.tc", &z[1363], z[5148:5149], s{"ns1.123k-elazz.com", "ns2.123k-elazz.com"}, n, n, e, e, e, 0x0, f},
4498 {"au.tc", &z[1363], z[5149:5150], n, n, n, e, e, e, 0x0, f},
44874499 {"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},
4500 {"bg.tc", &z[1363], x, s{"ns1.beyazgundem.com", "ns2.beyazgundem.com"}, n, n, e, e, e, 0x800, f},
44894501 {"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},
4502 {"br.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
4503 {"ch.tc", &z[1363], x, s{"ns1.swisscenter.com", "ns2.swisscenter.com"}, n, n, e, e, e, 0x0, f},
44924504 {"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},
44934505 {"cz.tc", &z[1363], x, s{"ns1.ispapi.net", "ns2.ispapi.net", "ns3.ispapi.net"}, n, n, e, e, e, 0x0, f},
44944506 {"de.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
45024514 {"int.tc", &z[1363], x, s{"ns1.int.tc", "ns2.int.tc"}, n, n, e, e, e, 0x0, f},
45034515 {"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},
45044516 {"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},
4517 {"mx.tc", &z[1363], x, s{"leah.ns.cloudflare.com", "noah.ns.cloudflare.com"}, s{"104.21.75.127", "172.67.175.218", "2606:4700:3036::6815:4b7f", "2606:4700:3036::ac43:afda"}, n, e, e, e, 0x0, f},
45064518 {"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},
45074519 {"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},
45084520 {"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},
45094521 {"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},
45104522 {"pl.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
45114523 {"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},
4524 {"ru.tc", &z[1363], x, s{"suspended.nic.tc"}, n, n, e, e, e, 0x0, f},
45134525 {"se.tc", &z[1363], x, n, n, n, e, e, e, 0x0, f},
45144526 {"shop.tc", &z[1363], x, s{"ns.onshore.net", "ns2.onshore.net"}, n, n, e, e, e, 0x0, f},
45154527 {"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},
45164528 {"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},
4529 {"uk.tc", &z[1363], z[5150:5153], s{"ns1.uk.tc", "ns2.uk.tc"}, n, n, e, e, e, 0x0, f},
45184530 {"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},
4531 {"com.td", &z[1365], x, n, n, n, e, e, e, 0x0, f},
4532 {"net.td", &z[1365], x, n, n, n, e, e, e, 0x0, f},
4533 {"org.td", &z[1365], x, n, n, n, e, e, e, 0x0, f},
4534 {"tourism.td", &z[1365], x, n, n, n, e, e, e, 0x0, f},
45234535 {"at.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
45244536 {"bg.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
45254537 {"ca.tf", &z[1377], x, s{"ns1.idnscan.net", "ns2.idnscan.net"}, n, n, e, e, e, 0x0, f},
45634575 {"pro.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
45644576 {"web.tj", &z[1395], x, n, n, n, e, e, e, 0x0, f},
45654577 {"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},
4578 {"com.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4579 {"gov.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
45684580 {"in.tl", &z[1400], x, n, n, n, e, e, e, 0x800, f},
45694581 {"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},
4582 {"net.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
4583 {"org.tl", &z[1400], x, s{"ns.anycast.nic.tl", "ns1.anycastdns.cz", "ns2.anycastdns.cz"}, n, n, e, e, e, 0x0, f},
45724584 {"co.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, t},
45734585 {"com.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, f},
45744586 {"edu.tm", &z[1401], x, s{"webns1.telecom.tm", "webns2.telecom.tm"}, n, n, e, e, e, 0x0, f},
45994611 {"com.tp", &z[1417], x, n, n, n, e, e, e, 0x800, f},
46004612 {"or.tp", &z[1417], x, n, n, n, e, e, e, 0x800, f},
46014613 {"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},
4614 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4615 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4616 {"bel.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4617 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
46064618 {"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},
4619 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4620 {"edu.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4621 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4622 {"gov.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4623 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4624 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
46134625 {"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},
4626 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
46154627 {"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},
4628 {"net.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4629 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4630 {"pol.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4631 {"tel.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4632 {"tsk.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4633 {"tv.tr", &z[1418], x, s{"lns21.nic.tr", "lns22.nic.tr", "lns41.nic.tr", "lns42.nic.tr", "lns5.nic.tr", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
4634 {"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", "lns71.nic.tr"}, n, n, e, e, e, 0x0, t},
46234635 {"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},
4636 {"at.tt", &z[1433], z[5153:5154], s{"a.ns.viennaweb.at", "b.ns.viennaweb.at"}, s{"195.225.236.206"}, n, e, e, e, 0x0, f},
4637 {"au.tt", &z[1433], z[5154:5155], n, n, n, e, e, e, 0x0, f},
46264638 {"be.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46274639 {"biz.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46284640 {"ca.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46404652 {"info.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46414653 {"int.tt", &z[1433], x, s{"ns1.dnsdun.com", "ns1.dnsdun.net"}, n, n, e, e, e, 0x0, t},
46424654 {"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},
4655 {"jobs.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
46444656 {"mobi.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
46454657 {"museum.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
46464658 {"name.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46504662 {"pro.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46514663 {"tel.tt", &z[1433], x, n, n, n, e, e, e, 0x0, t},
46524664 {"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},
4665 {"uk.tt", &z[1433], z[5155:5158], n, n, n, e, e, e, 0x0, f},
46544666 {"us.tt", &z[1433], x, n, n, n, e, e, e, 0x0, f},
46554667 {"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},
46564668 {"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},
47614773 {"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},
47624774 {"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},
47634775 {"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},
4776 {"sch.uk", &z[1447], z[5158:5173], 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},
47654777 {"ak.us", &z[1457], x, n, n, n, e, e, "http://doa.alaska.gov/ets/eash/DNSrequestform.html", 0x0, t},
47664778 {"al.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
47674779 {"ar.us", &z[1457], x, n, n, n, e, e, e, 0x0, t},
48224834 {"wi.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
48234835 {"wv.us", &z[1457], x, n, n, n, e, e, e, 0x0, f},
48244836 {"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},
4837 {"com.uy", &z[1458], x, s{"ns1.anteldata.com.uy", "ns2.anteldata.com.uy", "seciu.edu.uy"}, n, n, e, e, e, 0x0, f},
48264838 {"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},
48274839 {"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},
48284840 {"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},
48564868 {"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},
48574869 {"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},
48584870 {"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},
4871 {"pro.vg", &z[1474], x, s{"ns1.subdomain.com", "ns2.subdomain.com"}, n, n, e, e, e, 0x200, t},
48604872 {"biz.vi", &z[1475], x, n, n, n, e, e, e, 0x0, f},
48614873 {"co.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, f},
48624874 {"com.vi", &z[1475], x, s{"ns3.nic.vi", "pch.nic.vi"}, n, n, e, e, e, 0x0, t},
48864898 {"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},
48874899 {"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},
48884900 {"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},
4901 {"com.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},
48904902 {"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},
48914903 {"ltd.ye", &z[1554], x, n, n, n, e, e, e, 0x0, f},
48924904 {"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},
48934905 {"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},
48944906 {"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},
48954907 {"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},
4908 {"ac.yu", &z[1562], z[5173:5174], n, n, n, e, e, e, 0x800, f},
48974909 {"cg.yu", &z[1562], x, n, n, n, e, e, e, 0x800, f},
48984910 {"co.yu", &z[1562], x, n, n, n, e, e, e, 0x800, t},
48994911 {"edu.yu", &z[1562], x, n, n, n, e, e, e, 0x800, f},
49044916 {"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},
49054917 {"bourse.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
49064918 {"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},
4919 {"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, "coza-whois.registry.net.za", e, e, 0x0, f},
49084920 {"cybernet.za", &z[1564], x, n, n, n, e, e, e, 0x0, f},
49094921 {"db.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
49104922 {"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},
49234935 {"olivetti.za", &z[1564], x, n, n, n, e, e, e, 0x800, f},
49244936 {"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},
49254937 {"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},
4938 {"school.za", &z[1564], z[5174:5183], s{"ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, f},
49274939 {"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},
49284940 {"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},
49294941 {"ac.zm", &z[1570], x, s{"cocca.nic.zm", "gransy.nic.zm", "pch.nic.zm"}, n, n, e, e, e, 0x0, f},
51715183 {"tas.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
51725184 {"vic.edu.au", &z[1844], x, s{"q.au", "r.au", "s.au", "t.au"}, n, n, e, e, e, 0x0, t},
51735185 {"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},
5186 {"fed.rep.br", &z[2105], x, s{"cdns1.main-hosting.eu", "cdns2.main-hosting.eu"}, n, n, e, e, e, 0x0, t},
5187 {"wireless.keyword.cn", &z[2229], x, n, n, n, e, e, e, 0x0, t},
5188 {"ltd.co.im", &z[2682], x, n, n, n, e, e, e, 0x0, t},
5189 {"plc.co.im", &z[2682], x, n, n, n, e, e, e, 0x0, t},
5190 {"lg.gov.ng", &z[3547], 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},
5191 {"co.net.nz", &z[3755], x, s{"ns1.instradns.com", "ns2.instradns.com", "ns3.instradns.com"}, n, n, e, e, e, 0x0, t},
5192 {"al.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5193 {"asso.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5194 {"at.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5195 {"au.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5196 {"be.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5197 {"bg.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5198 {"ca.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5199 {"cd.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5200 {"ch.eu.org", &z[3773], 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},
5201 {"cn.eu.org", &z[3773], x, s{"ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5202 {"cy.eu.org", &z[3773], 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},
5203 {"cz.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5204 {"de.eu.org", &z[3773], 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},
5205 {"dk.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5206 {"edu.eu.org", &z[3773], x, s{"auth1.dns.elm.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5207 {"ee.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5208 {"es.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5209 {"fi.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5210 {"fr.eu.org", &z[3773], x, s{"auth1.dns.elm.net", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5211 {"gr.eu.org", &z[3773], 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},
5212 {"hr.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5213 {"hu.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5214 {"ie.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5215 {"il.eu.org", &z[3773], x, s{"ns.eu.org", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5216 {"in.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5217 {"int.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5218 {"is.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5219 {"it.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5220 {"jp.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5221 {"kr.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5222 {"lt.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5223 {"lu.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5224 {"lv.eu.org", &z[3773], 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 {"me.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5226 {"mk.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5227 {"mt.eu.org", &z[3773], 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 {"my.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5229 {"net.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5230 {"ng.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5231 {"nl.eu.org", &z[3773], 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},
5232 {"no.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5233 {"nz.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5234 {"pl.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5235 {"pt.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5236 {"ro.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5237 {"ru.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5238 {"se.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5239 {"si.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5240 {"sk.eu.org", &z[3773], x, s{"hobbes.bsd-dk.dk", "ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5241 {"tr.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5242 {"uk.eu.org", &z[3773], x, s{"ns1.eriomem.net", "ns1.eu.org", "ns3.keltia.net"}, n, n, e, e, e, 0x0, t},
5243 {"us.eu.org", &z[3773], x, s{"ns.ankh.fr.eu.org", "ns1.eriomem.net", "ns1.eu.org"}, n, n, e, e, e, 0x0, t},
5244 {"co.at.pn", &z[4001], x, n, n, n, e, e, e, 0x0, t},
5245 {"com.au.pn", &z[4002], x, n, n, n, e, e, e, 0x0, t},
5246 {"co.uk.pn", &z[4018], x, n, n, n, e, e, e, 0x0, t},
5247 {"co.at.tc", &z[4398], x, n, n, n, e, e, e, 0x0, t},
5248 {"com.au.tc", &z[4399], x, n, n, n, e, e, e, 0x800, t},
5249 {"co.uk.tc", &z[4430], x, n, n, n, e, e, e, 0x0, t},
5250 {"me.uk.tc", &z[4430], x, n, n, n, e, e, e, 0x0, t},
5251 {"org.uk.tc", &z[4430], x, n, n, n, e, e, e, 0x0, t},
5252 {"co.at.tt", &z[4537], x, n, s{"195.225.236.206"}, n, e, e, e, 0x0, t},
5253 {"com.au.tt", &z[4538], x, n, n, n, e, e, e, 0x0, t},
5254 {"co.uk.tt", &z[4566], x, n, n, n, e, e, e, 0x0, t},
5255 {"me.uk.tt", &z[4566], x, n, n, n, e, e, e, 0x0, t},
5256 {"org.uk.tt", &z[4566], x, n, n, n, e, e, e, 0x0, t},
5257 {"barking-dagenham.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5258 {"barnet.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5259 {"barnsley.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5260 {"bathnes.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5261 {"beds.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5262 {"bexley.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5263 {"bham.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5264 {"blackburn.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5265 {"blackpool.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5266 {"bolton.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5267 {"bournemouth.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5268 {"bracknell-forest.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5269 {"bradford.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5270 {"brent.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5271 {"doncaster.sch.uk", &z[4677], x, n, n, n, e, e, e, 0x0, t},
5272 {"bg.ac.yu", &z[4809], x, n, n, n, e, e, e, 0x800, t},
5273 {"ecape.school.za", &z[4839], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5274 {"fs.school.za", &z[4839], 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},
5275 {"gp.school.za", &z[4839], 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},
5276 {"kzn.school.za", &z[4839], 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},
5277 {"lp.school.za", &z[4839], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5278 {"mpm.school.za", &z[4839], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5279 {"ncape.school.za", &z[4839], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, t},
5280 {"nw.school.za", &z[4839], x, s{"lava.obsidian.co.za", "mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za"}, n, n, e, e, e, 0x0, t},
5281 {"wcape.school.za", &z[4839], x, s{"mopani.school.za", "ns0.serendipity.org.za", "ochre.school.za", "ucthpx.uct.ac.za"}, n, n, e, e, e, 0x0, t},
52705282 }
52715283
52725284 // ZoneMap maps domain names to Zones.
72967308 "agr.br": &z[2022],
72977309 "am.br": &z[2023],
72987310 "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],
7311 "app.br": &z[2025],
7312 "arq.br": &z[2026],
7313 "art.br": &z[2027],
7314 "ato.br": &z[2028],
7315 "b.br": &z[2029],
7316 "belem.br": &z[2030],
7317 "bhz.br": &z[2031],
7318 "bib.br": &z[2032],
7319 "bio.br": &z[2033],
7320 "blog.br": &z[2034],
7321 "bmd.br": &z[2035],
7322 "boavista.br": &z[2036],
7323 "bsb.br": &z[2037],
7324 "campinas.br": &z[2038],
7325 "caxias.br": &z[2039],
7326 "cim.br": &z[2040],
7327 "cng.br": &z[2041],
7328 "cnt.br": &z[2042],
7329 "com.br": &z[2043],
7330 "coop.br": &z[2044],
7331 "coz.br": &z[2045],
7332 "curitiba.br": &z[2046],
7333 "des.br": &z[2047],
7334 "det.br": &z[2048],
7335 "dev.br": &z[2049],
7336 "ecn.br": &z[2050],
7337 "eco.br": &z[2051],
7338 "edu.br": &z[2052],
7339 "emp.br": &z[2053],
7340 "enf.br": &z[2054],
7341 "eng.br": &z[2055],
7342 "esp.br": &z[2056],
7343 "etc.br": &z[2057],
7344 "eti.br": &z[2058],
7345 "far.br": &z[2059],
7346 "flog.br": &z[2060],
7347 "floripa.br": &z[2061],
7348 "fm.br": &z[2062],
7349 "fnd.br": &z[2063],
7350 "fortal.br": &z[2064],
7351 "fot.br": &z[2065],
7352 "foz.br": &z[2066],
7353 "fst.br": &z[2067],
7354 "g12.br": &z[2068],
7355 "geo.br": &z[2069],
7356 "ggf.br": &z[2070],
7357 "gov.br": &z[2071],
7358 "gru.br": &z[2072],
7359 "imb.br": &z[2073],
7360 "ind.br": &z[2074],
7361 "inf.br": &z[2075],
7362 "jampa.br": &z[2076],
7363 "jor.br": &z[2077],
7364 "jus.br": &z[2078],
7365 "lel.br": &z[2079],
7366 "log.br": &z[2080],
7367 "macapa.br": &z[2081],
7368 "maceio.br": &z[2082],
7369 "manaus.br": &z[2083],
7370 "mat.br": &z[2084],
7371 "med.br": &z[2085],
7372 "mil.br": &z[2086],
7373 "mus.br": &z[2087],
7374 "natal.br": &z[2088],
7375 "net.br": &z[2089],
7376 "nom.br": &z[2090],
7377 "not.br": &z[2091],
7378 "ntr.br": &z[2092],
7379 "odo.br": &z[2093],
7380 "org.br": &z[2094],
7381 "palmas.br": &z[2095],
7382 "poa.br": &z[2096],
7383 "ppg.br": &z[2097],
7384 "pro.br": &z[2098],
7385 "psc.br": &z[2099],
7386 "psi.br": &z[2100],
7387 "qsl.br": &z[2101],
7388 "radio.br": &z[2102],
7389 "rec.br": &z[2103],
7390 "recife.br": &z[2104],
7391 "rep.br": &z[2105],
7392 "rio.br": &z[2106],
7393 "salvador.br": &z[2107],
7394 "sec3.br": &z[2108],
7395 "seg.br": &z[2109],
7396 "sjc.br": &z[2110],
7397 "slg.br": &z[2111],
7398 "srv.br": &z[2112],
7399 "taxi.br": &z[2113],
7400 "tec.br": &z[2114],
7401 "teo.br": &z[2115],
7402 "tmp.br": &z[2116],
7403 "trd.br": &z[2117],
7404 "tur.br": &z[2118],
7405 "tv.br": &z[2119],
7406 "vet.br": &z[2120],
7407 "vix.br": &z[2121],
7408 "vlog.br": &z[2122],
7409 "wiki.br": &z[2123],
7410 "zlg.br": &z[2124],
7411 "com.bs": &z[2125],
7412 "edu.bs": &z[2126],
7413 "gov.bs": &z[2127],
7414 "net.bs": &z[2128],
7415 "org.bs": &z[2129],
7416 "we.bs": &z[2130],
7417 "com.bt": &z[2131],
7418 "edu.bt": &z[2132],
7419 "gov.bt": &z[2133],
7420 "net.bt": &z[2134],
7421 "org.bt": &z[2135],
7422 "ac.bw": &z[2136],
7423 "co.bw": &z[2137],
7424 "net.bw": &z[2138],
7425 "org.bw": &z[2139],
7426 "com.by": &z[2140],
7427 "gov.by": &z[2141],
7428 "mil.by": &z[2142],
7429 "minsk.by": &z[2143],
7430 "net.by": &z[2144],
7431 "co.bz": &z[2145],
7432 "com.bz": &z[2146],
7433 "edu.bz": &z[2147],
7434 "gov.bz": &z[2148],
7435 "net.bz": &z[2149],
7436 "org.bz": &z[2150],
7437 "za.bz": &z[2151],
7438 "ab.ca": &z[2152],
7439 "bc.ca": &z[2153],
7440 "co.ca": &z[2154],
7441 "gc.ca": &z[2155],
7442 "mb.ca": &z[2156],
7443 "nb.ca": &z[2157],
7444 "nf.ca": &z[2158],
7445 "nl.ca": &z[2159],
7446 "ns.ca": &z[2160],
7447 "nt.ca": &z[2161],
7448 "nu.ca": &z[2162],
7449 "on.ca": &z[2163],
7450 "pe.ca": &z[2164],
7451 "qc.ca": &z[2165],
7452 "sk.ca": &z[2166],
7453 "yk.ca": &z[2167],
7454 "com.cc": &z[2168],
7455 "edu.cc": &z[2169],
7456 "net.cc": &z[2170],
7457 "org.cc": &z[2171],
7458 "ac.cd": &z[2172],
7459 "com.cd": &z[2173],
7460 "edu.cd": &z[2174],
7461 "gouv.cd": &z[2175],
7462 "net.cd": &z[2176],
7463 "org.cd": &z[2177],
7464 "ac.ci": &z[2178],
7465 "aeroport.ci": &z[2179],
7466 "asso.ci": &z[2180],
7467 "assoc.ci": &z[2181],
7468 "co.ci": &z[2182],
7469 "com.ci": &z[2183],
7470 "ed.ci": &z[2184],
7471 "edu.ci": &z[2185],
7472 "go.ci": &z[2186],
7473 "gov.ci": &z[2187],
7474 "in.ci": &z[2188],
7475 "int.ci": &z[2189],
7476 "net.ci": &z[2190],
7477 "nom.ci": &z[2191],
7478 "or.ci": &z[2192],
7479 "org.ci": &z[2193],
7480 "presse.ci": &z[2194],
7481 "biz.ck": &z[2195],
7482 "co.ck": &z[2196],
7483 "edu.ck": &z[2197],
7484 "gen.ck": &z[2198],
7485 "gov.ck": &z[2199],
7486 "info.ck": &z[2200],
7487 "net.ck": &z[2201],
7488 "org.ck": &z[2202],
7489 "co.cm": &z[2203],
7490 "com.cm": &z[2204],
7491 "edu.cm": &z[2205],
7492 "net.cm": &z[2206],
7493 "ac.cn": &z[2207],
7494 "ah.cn": &z[2208],
7495 "bj.cn": &z[2209],
7496 "com.cn": &z[2210],
7497 "cq.cn": &z[2211],
7498 "edu.cn": &z[2212],
7499 "fj.cn": &z[2213],
7500 "gd.cn": &z[2214],
7501 "gov.cn": &z[2215],
7502 "gs.cn": &z[2216],
7503 "gx.cn": &z[2217],
7504 "gz.cn": &z[2218],
7505 "ha.cn": &z[2219],
7506 "hb.cn": &z[2220],
7507 "he.cn": &z[2221],
7508 "hi.cn": &z[2222],
7509 "hk.cn": &z[2223],
7510 "hl.cn": &z[2224],
7511 "hn.cn": &z[2225],
7512 "jl.cn": &z[2226],
7513 "js.cn": &z[2227],
7514 "jx.cn": &z[2228],
7515 "keyword.cn": &z[2229],
7516 "ln.cn": &z[2230],
7517 "mil.cn": &z[2231],
7518 "mo.cn": &z[2232],
7519 "net.cn": &z[2233],
7520 "nm.cn": &z[2234],
7521 "nx.cn": &z[2235],
7522 "org.cn": &z[2236],
7523 "qh.cn": &z[2237],
7524 "sc.cn": &z[2238],
7525 "sd.cn": &z[2239],
7526 "sh.cn": &z[2240],
7527 "sn.cn": &z[2241],
7528 "sx.cn": &z[2242],
7529 "tj.cn": &z[2243],
7530 "tw.cn": &z[2244],
7531 "xj.cn": &z[2245],
7532 "xz.cn": &z[2246],
7533 "yn.cn": &z[2247],
7534 "zj.cn": &z[2248],
7535 "com.co": &z[2249],
7536 "edu.co": &z[2250],
7537 "gov.co": &z[2251],
7538 "mil.co": &z[2252],
7539 "net.co": &z[2253],
7540 "nom.co": &z[2254],
7541 "org.co": &z[2255],
7542 "4u.com": &z[2256],
7543 "ae.com": &z[2257],
7544 "africa.com": &z[2258],
7545 "ar.com": &z[2259],
7546 "asia.com": &z[2260],
7547 "au.com": &z[2261],
7548 "br.com": &z[2262],
7549 "cn.com": &z[2263],
7550 "co.com": &z[2264],
7551 "de.com": &z[2265],
7552 "eu.com": &z[2266],
7553 "gb.com": &z[2267],
7554 "gr.com": &z[2268],
7555 "hk.com": &z[2269],
7556 "hu.com": &z[2270],
7557 "jpn.com": &z[2271],
7558 "kr.com": &z[2272],
7559 "mex.com": &z[2273],
7560 "no.com": &z[2274],
7561 "nv.com": &z[2275],
7562 "pty-ltd.com": &z[2276],
7563 "qb.com": &z[2277],
7564 "qc.com": &z[2278],
7565 "ru.com": &z[2279],
7566 "sa.com": &z[2280],
7567 "se.com": &z[2281],
7568 "uk.com": &z[2282],
7569 "ukots.com": &z[2283],
7570 "us.com": &z[2284],
7571 "uy.com": &z[2285],
7572 "za.com": &z[2286],
7573 "de.cool": &z[2287],
7574 "ac.cr": &z[2288],
7575 "co.cr": &z[2289],
7576 "ed.cr": &z[2290],
7577 "eu.cr": &z[2291],
7578 "fi.cr": &z[2292],
7579 "go.cr": &z[2293],
7580 "or.cr": &z[2294],
7581 "sa.cr": &z[2295],
7582 "co.cu": &z[2296],
7583 "com.cu": &z[2297],
7584 "cuba.cu": &z[2298],
7585 "cyt.cu": &z[2299],
7586 "edu.cu": &z[2300],
7587 "get.cu": &z[2301],
7588 "gov.cu": &z[2302],
7589 "inf.cu": &z[2303],
7590 "net.cu": &z[2304],
7591 "org.cu": &z[2305],
7592 "tur.cu": &z[2306],
7593 "com.cv": &z[2307],
7594 "edu.cv": &z[2308],
7595 "gov.cv": &z[2309],
7596 "int.cv": &z[2310],
7597 "net.cv": &z[2311],
7598 "nome.cv": &z[2312],
7599 "org.cv": &z[2313],
7600 "publ.cv": &z[2314],
7601 "com.cw": &z[2315],
7602 "net.cw": &z[2316],
7603 "com.cx": &z[2317],
7604 "edu.cx": &z[2318],
7605 "gov.cx": &z[2319],
7606 "net.cx": &z[2320],
7607 "org.cx": &z[2321],
7608 "ac.cy": &z[2322],
7609 "biz.cy": &z[2323],
7610 "com.cy": &z[2324],
7611 "ekloges.cy": &z[2325],
7612 "gov.cy": &z[2326],
7613 "ltd.cy": &z[2327],
7614 "name.cy": &z[2328],
7615 "net.cy": &z[2329],
7616 "org.cy": &z[2330],
7617 "parliament.cy": &z[2331],
7618 "press.cy": &z[2332],
7619 "pro.cy": &z[2333],
7620 "tm.cy": &z[2334],
7621 "co.cz": &z[2335],
7622 "1x.de": &z[2336],
7623 "co.de": &z[2337],
7624 "com.de": &z[2338],
7625 "biz.dk": &z[2339],
7626 "co.dk": &z[2340],
7627 "co.dm": &z[2341],
7628 "com.dm": &z[2342],
7629 "edu.dm": &z[2343],
7630 "gov.dm": &z[2344],
7631 "net.dm": &z[2345],
7632 "org.dm": &z[2346],
7633 "art.do": &z[2347],
7634 "com.do": &z[2348],
7635 "edu.do": &z[2349],
7636 "gob.do": &z[2350],
7637 "gov.do": &z[2351],
7638 "mil.do": &z[2352],
7639 "net.do": &z[2353],
7640 "org.do": &z[2354],
7641 "sid.do": &z[2355],
7642 "sld.do": &z[2356],
7643 "web.do": &z[2357],
7644 "art.dz": &z[2358],
7645 "asso.dz": &z[2359],
7646 "com.dz": &z[2360],
7647 "edu.dz": &z[2361],
7648 "gov.dz": &z[2362],
7649 "net.dz": &z[2363],
7650 "org.dz": &z[2364],
7651 "pol.dz": &z[2365],
7652 "com.ec": &z[2366],
7653 "edu.ec": &z[2367],
7654 "fin.ec": &z[2368],
7655 "gob.ec": &z[2369],
7656 "gov.ec": &z[2370],
7657 "info.ec": &z[2371],
7658 "med.ec": &z[2372],
7659 "mil.ec": &z[2373],
7660 "net.ec": &z[2374],
7661 "org.ec": &z[2375],
7662 "pro.ec": &z[2376],
7663 "co.ee": &z[2377],
7664 "com.ee": &z[2378],
7665 "edu.ee": &z[2379],
7666 "fie.ee": &z[2380],
7667 "gov.ee": &z[2381],
7668 "hiiumaa.ee": &z[2382],
7669 "kul.ee": &z[2383],
7670 "med.ee": &z[2384],
7671 "org.ee": &z[2385],
7672 "parnu.ee": &z[2386],
7673 "parnumaa.ee": &z[2387],
7674 "polvamaa.ee": &z[2388],
7675 "pri.ee": &z[2389],
7676 "tartu.ee": &z[2390],
7677 "com.eg": &z[2391],
7678 "edu.eg": &z[2392],
7679 "eun.eg": &z[2393],
7680 "gov.eg": &z[2394],
7681 "info.eg": &z[2395],
7682 "mil.eg": &z[2396],
7683 "name.eg": &z[2397],
7684 "net.eg": &z[2398],
7685 "org.eg": &z[2399],
7686 "sci.eg": &z[2400],
7687 "sport.eg": &z[2401],
7688 "tv.eg": &z[2402],
7689 "com.er": &z[2403],
7690 "edu.er": &z[2404],
7691 "gov.er": &z[2405],
7692 "ind.er": &z[2406],
7693 "mil.er": &z[2407],
7694 "net.er": &z[2408],
7695 "org.er": &z[2409],
7696 "com.es": &z[2410],
7697 "edu.es": &z[2411],
7698 "gob.es": &z[2412],
7699 "nom.es": &z[2413],
7700 "org.es": &z[2414],
7701 "biz.et": &z[2415],
7702 "com.et": &z[2416],
7703 "edu.et": &z[2417],
7704 "gov.et": &z[2418],
7705 "info.et": &z[2419],
7706 "name.et": &z[2420],
7707 "net.et": &z[2421],
7708 "org.et": &z[2422],
7709 "24.eu": &z[2423],
7710 "ecb.eu": &z[2424],
7711 "europa.eu": &z[2425],
7712 "ac.fj": &z[2426],
7713 "biz.fj": &z[2427],
7714 "com.fj": &z[2428],
7715 "gov.fj": &z[2429],
7716 "info.fj": &z[2430],
7717 "mil.fj": &z[2431],
7718 "name.fj": &z[2432],
7719 "net.fj": &z[2433],
7720 "org.fj": &z[2434],
7721 "pro.fj": &z[2435],
7722 "school.fj": &z[2436],
7723 "ac.fk": &z[2437],
7724 "co.fk": &z[2438],
7725 "gov.fk": &z[2439],
7726 "net.fk": &z[2440],
7727 "nom.fk": &z[2441],
7728 "org.fk": &z[2442],
7729 "0.fm": &z[2443],
7730 "2.fm": &z[2444],
7731 "4.fm": &z[2445],
7732 "6.fm": &z[2446],
7733 "8.fm": &z[2447],
7734 "radio.fm": &z[2448],
7735 "aero.fo": &z[2449],
7736 "biz.fo": &z[2450],
7737 "co.fo": &z[2451],
7738 "com.fo": &z[2452],
7739 "coop.fo": &z[2453],
7740 "edu.fo": &z[2454],
7741 "flp.fo": &z[2455],
7742 "ftp.fo": &z[2456],
7743 "gov.fo": &z[2457],
7744 "info.fo": &z[2458],
7745 "int.fo": &z[2459],
7746 "internet.fo": &z[2460],
7747 "irc.fo": &z[2461],
7748 "mail.fo": &z[2462],
7749 "mil.fo": &z[2463],
7750 "museum.fo": &z[2464],
7751 "name.fo": &z[2465],
7752 "org.fo": &z[2466],
7753 "telenet.fo": &z[2467],
7754 "telnet.fo": &z[2468],
7755 "web.fo": &z[2469],
7756 "www.fo": &z[2470],
7757 "aeroport.fr": &z[2471],
7758 "asso.fr": &z[2472],
7759 "avocat.fr": &z[2473],
7760 "chambagri.fr": &z[2474],
7761 "chirurgiens-dentistes.fr": &z[2475],
7762 "com.fr": &z[2476],
7763 "experts-comptables.fr": &z[2477],
7764 "geometre-expert.fr": &z[2478],
7765 "gouv.fr": &z[2479],
7766 "medecin.fr": &z[2480],
7767 "nom.fr": &z[2481],
7768 "notaires.fr": &z[2482],
7769 "pharmacien.fr": &z[2483],
7770 "port.fr": &z[2484],
7771 "prd.fr": &z[2485],
7772 "presse.fr": &z[2486],
7773 "tm.fr": &z[2487],
7774 "veterinaire.fr": &z[2488],
7775 "ac.ga": &z[2489],
7776 "aeroport.ga": &z[2490],
7777 "asso.ga": &z[2491],
7778 "co.ga": &z[2492],
7779 "com.ga": &z[2493],
7780 "ed.ga": &z[2494],
7781 "edu.ga": &z[2495],
7782 "go.ga": &z[2496],
7783 "int.ga": &z[2497],
7784 "net.ga": &z[2498],
7785 "or.ga": &z[2499],
7786 "org.ga": &z[2500],
7787 "presse.ga": &z[2501],
7788 "hmg.gb": &z[2502],
7789 "com.gd": &z[2503],
7790 "edu.gd": &z[2504],
7791 "gov.gd": &z[2505],
7792 "mlt.gd": &z[2506],
7793 "net.gd": &z[2507],
7794 "org.gd": &z[2508],
7795 "sci.gd": &z[2509],
7796 "com.ge": &z[2510],
7797 "edu.ge": &z[2511],
7798 "gov.ge": &z[2512],
7799 "mil.ge": &z[2513],
7800 "net.ge": &z[2514],
7801 "org.ge": &z[2515],
7802 "pvt.ge": &z[2516],
7803 "school.ge": &z[2517],
7804 "24.gg": &z[2518],
7805 "ac.gg": &z[2519],
7806 "co.gg": &z[2520],
7807 "eu.gg": &z[2521],
7808 "gov.gg": &z[2522],
7809 "net.gg": &z[2523],
7810 "org.gg": &z[2524],
7811 "sch.gg": &z[2525],
7812 "tr.gg": &z[2526],
7813 "tv.gg": &z[2527],
7814 "web.gg": &z[2528],
7815 "com.gh": &z[2529],
7816 "edu.gh": &z[2530],
7817 "gov.gh": &z[2531],
7818 "mil.gh": &z[2532],
7819 "net.gh": &z[2533],
7820 "org.gh": &z[2534],
7821 "com.gi": &z[2535],
7822 "edu.gi": &z[2536],
7823 "gov.gi": &z[2537],
7824 "ltd.gi": &z[2538],
7825 "mod.gi": &z[2539],
7826 "org.gi": &z[2540],
7827 "co.gl": &z[2541],
7828 "com.gl": &z[2542],
7829 "edu.gl": &z[2543],
7830 "net.gl": &z[2544],
7831 "org.gl": &z[2545],
7832 "ac.gn": &z[2546],
7833 "co.gn": &z[2547],
7834 "com.gn": &z[2548],
7835 "gov.gn": &z[2549],
7836 "net.gn": &z[2550],
7837 "org.gn": &z[2551],
7838 "24.gp": &z[2552],
7839 "asia.gp": &z[2553],
7840 "asso.gp": &z[2554],
7841 "co.gp": &z[2555],
7842 "com.gp": &z[2556],
7843 "edu.gp": &z[2557],
7844 "eu.gp": &z[2558],
7845 "mobi.gp": &z[2559],
7846 "net.gp": &z[2560],
7847 "online.gp": &z[2561],
7848 "org.gp": &z[2562],
7849 "com.gr": &z[2563],
7850 "edu.gr": &z[2564],
7851 "gov.gr": &z[2565],
7852 "net.gr": &z[2566],
7853 "org.gr": &z[2567],
7854 "com.gt": &z[2568],
7855 "edu.gt": &z[2569],
7856 "gob.gt": &z[2570],
7857 "ind.gt": &z[2571],
7858 "mil.gt": &z[2572],
7859 "net.gt": &z[2573],
7860 "org.gt": &z[2574],
7861 "com.gu": &z[2575],
7862 "edu.gu": &z[2576],
7863 "gov.gu": &z[2577],
7864 "guam.gu": &z[2578],
7865 "net.gu": &z[2579],
7866 "org.gu": &z[2580],
7867 "web.gu": &z[2581],
7868 "co.gy": &z[2582],
7869 "com.gy": &z[2583],
7870 "net.gy": &z[2584],
7871 "org.gy": &z[2585],
7872 "com.hk": &z[2586],
7873 "edu.hk": &z[2587],
7874 "gov.hk": &z[2588],
7875 "idv.hk": &z[2589],
7876 "inc.hk": &z[2590],
7877 "ltd.hk": &z[2591],
7878 "net.hk": &z[2592],
7879 "org.hk": &z[2593],
7880 "xn--55qx5d.hk": &z[2594], // 公司.hk
7881 "com.hn": &z[2595],
7882 "edu.hn": &z[2596],
7883 "gob.hn": &z[2597],
7884 "mil.hn": &z[2598],
7885 "net.hn": &z[2599],
7886 "org.hn": &z[2600],
7887 "com.hr": &z[2601],
7888 "from.hr": &z[2602],
7889 "iz.hr": &z[2603],
7890 "name.hr": &z[2604],
7891 "adult.ht": &z[2605],
7892 "art.ht": &z[2606],
7893 "asso.ht": &z[2607],
7894 "com.ht": &z[2608],
7895 "coop.ht": &z[2609],
7896 "edu.ht": &z[2610],
7897 "firm.ht": &z[2611],
7898 "gouv.ht": &z[2612],
7899 "info.ht": &z[2613],
7900 "med.ht": &z[2614],
7901 "net.ht": &z[2615],
7902 "org.ht": &z[2616],
7903 "perso.ht": &z[2617],
7904 "pol.ht": &z[2618],
7905 "pro.ht": &z[2619],
7906 "rel.ht": &z[2620],
7907 "shop.ht": &z[2621],
7908 "2000.hu": &z[2622],
7909 "ac.hu": &z[2623],
7910 "agrar.hu": &z[2624],
7911 "bolt.hu": &z[2625],
7912 "casino.hu": &z[2626],
7913 "city.hu": &z[2627],
7914 "co.hu": &z[2628],
7915 "edu.hu": &z[2629],
7916 "erotica.hu": &z[2630],
7917 "erotika.hu": &z[2631],
7918 "film.hu": &z[2632],
7919 "forum.hu": &z[2633],
7920 "games.hu": &z[2634],
7921 "gov.hu": &z[2635],
7922 "hotel.hu": &z[2636],
7923 "info.hu": &z[2637],
7924 "ingatlan.hu": &z[2638],
7925 "jogasz.hu": &z[2639],
7926 "konyvelo.hu": &z[2640],
7927 "lakas.hu": &z[2641],
7928 "media.hu": &z[2642],
7929 "news.hu": &z[2643],
7930 "org.hu": &z[2644],
7931 "priv.hu": &z[2645],
7932 "reklam.hu": &z[2646],
7933 "sex.hu": &z[2647],
7934 "shop.hu": &z[2648],
7935 "sport.hu": &z[2649],
7936 "suli.hu": &z[2650],
7937 "szex.hu": &z[2651],
7938 "tm.hu": &z[2652],
7939 "tozsde.hu": &z[2653],
7940 "utazas.hu": &z[2654],
7941 "video.hu": &z[2655],
7942 "ac.id": &z[2656],
7943 "biz.id": &z[2657],
7944 "co.id": &z[2658],
7945 "desa.id": &z[2659],
7946 "go.id": &z[2660],
7947 "mi.id": &z[2661],
7948 "mil.id": &z[2662],
7949 "my.id": &z[2663],
7950 "net.id": &z[2664],
7951 "or.id": &z[2665],
7952 "sch.id": &z[2666],
7953 "web.id": &z[2667],
7954 "com.ie": &z[2668],
7955 "gov.ie": &z[2669],
7956 "net.ie": &z[2670],
7957 "nli.ie": &z[2671],
7958 "org.ie": &z[2672],
7959 "ac.il": &z[2673],
7960 "co.il": &z[2674],
7961 "gov.il": &z[2675],
7962 "idf.il": &z[2676],
7963 "k12.il": &z[2677],
7964 "muni.il": &z[2678],
7965 "net.il": &z[2679],
7966 "org.il": &z[2680],
7967 "ac.im": &z[2681],
7968 "co.im": &z[2682],
7969 "com.im": &z[2683],
7970 "gov.im": &z[2684],
7971 "net.im": &z[2685],
7972 "org.im": &z[2686],
7973 "ac.in": &z[2687],
7974 "co.in": &z[2688],
7975 "edu.in": &z[2689],
7976 "ernet.in": &z[2690],
7977 "firm.in": &z[2691],
7978 "gen.in": &z[2692],
7979 "gov.in": &z[2693],
7980 "ind.in": &z[2694],
7981 "mil.in": &z[2695],
7982 "net.in": &z[2696],
7983 "org.in": &z[2697],
7984 "res.in": &z[2698],
7985 "auz.info": &z[2699],
7986 "eu.int": &z[2700],
7987 "com.io": &z[2701],
7988 "org.io": &z[2702],
7989 "biz.iq": &z[2703],
7990 "com.iq": &z[2704],
7991 "edu.iq": &z[2705],
7992 "gov.iq": &z[2706],
7993 "info.iq": &z[2707],
7994 "mil.iq": &z[2708],
7995 "name.iq": &z[2709],
7996 "net.iq": &z[2710],
7997 "org.iq": &z[2711],
7998 "tv.iq": &z[2712],
7999 "ac.ir": &z[2713],
8000 "co.ir": &z[2714],
8001 "gov.ir": &z[2715],
8002 "id.ir": &z[2716],
8003 "net.ir": &z[2717],
8004 "org.ir": &z[2718],
8005 "sch.ir": &z[2719],
8006 "abr.it": &z[2720],
8007 "abruzzo.it": &z[2721],
8008 "ag.it": &z[2722],
8009 "agrigento.it": &z[2723],
8010 "al.it": &z[2724],
8011 "alessandria.it": &z[2725],
8012 "alto-adige.it": &z[2726],
8013 "altoadige.it": &z[2727],
8014 "an.it": &z[2728],
8015 "ancona.it": &z[2729],
8016 "andria-barletta-trani.it": &z[2730],
8017 "andria-trani-barletta.it": &z[2731],
8018 "andriabarlettatrani.it": &z[2732],
8019 "andriatranibarletta.it": &z[2733],
8020 "ao.it": &z[2734],
8021 "aosta.it": &z[2735],
8022 "aoste.it": &z[2736],
8023 "ap.it": &z[2737],
8024 "aq.it": &z[2738],
8025 "aquila.it": &z[2739],
8026 "ar.it": &z[2740],
8027 "arezzo.it": &z[2741],
8028 "ascoli-piceno.it": &z[2742],
8029 "ascolipiceno.it": &z[2743],
8030 "asti.it": &z[2744],
8031 "at.it": &z[2745],
8032 "av.it": &z[2746],
8033 "avellino.it": &z[2747],
8034 "ba.it": &z[2748],
8035 "balsan.it": &z[2749],
8036 "bari.it": &z[2750],
8037 "barletta-trani-andria.it": &z[2751],
8038 "barlettatraniandria.it": &z[2752],
8039 "bas.it": &z[2753],
8040 "basilicata.it": &z[2754],
8041 "belluno.it": &z[2755],
8042 "benevento.it": &z[2756],
8043 "bergamo.it": &z[2757],
8044 "bg.it": &z[2758],
8045 "bi.it": &z[2759],
8046 "biella.it": &z[2760],
8047 "bl.it": &z[2761],
8048 "bn.it": &z[2762],
8049 "bo.it": &z[2763],
8050 "bologna.it": &z[2764],
8051 "bolzano.it": &z[2765],
8052 "bozen.it": &z[2766],
8053 "br.it": &z[2767],
8054 "brescia.it": &z[2768],
8055 "brindisi.it": &z[2769],
8056 "bs.it": &z[2770],
8057 "bt.it": &z[2771],
8058 "bz.it": &z[2772],
8059 "ca.it": &z[2773],
8060 "cagliari.it": &z[2774],
8061 "cal.it": &z[2775],
8062 "calabria.it": &z[2776],
8063 "caltanissetta.it": &z[2777],
8064 "cam.it": &z[2778],
8065 "campania.it": &z[2779],
8066 "campidano-medio.it": &z[2780],
8067 "campidanomedio.it": &z[2781],
8068 "campobasso.it": &z[2782],
8069 "carbonia-iglesias.it": &z[2783],
8070 "carboniaiglesias.it": &z[2784],
8071 "carrara-massa.it": &z[2785],
8072 "carraramassa.it": &z[2786],
8073 "caserta.it": &z[2787],
8074 "catania.it": &z[2788],
8075 "catanzaro.it": &z[2789],
8076 "cb.it": &z[2790],
8077 "ce.it": &z[2791],
8078 "cesena-forli.it": &z[2792],
8079 "cesenaforli.it": &z[2793],
8080 "ch.it": &z[2794],
8081 "chieti.it": &z[2795],
8082 "ci.it": &z[2796],
8083 "cl.it": &z[2797],
8084 "cn.it": &z[2798],
8085 "co.it": &z[2799],
8086 "como.it": &z[2800],
8087 "cosenza.it": &z[2801],
8088 "cr.it": &z[2802],
8089 "cremona.it": &z[2803],
8090 "crotone.it": &z[2804],
8091 "cs.it": &z[2805],
8092 "ct.it": &z[2806],
8093 "cuneo.it": &z[2807],
8094 "cz.it": &z[2808],
8095 "dell-ogliastra.it": &z[2809],
8096 "dellogliastra.it": &z[2810],
8097 "edu.it": &z[2811],
8098 "emilia-romagna.it": &z[2812],
8099 "emiliaromagna.it": &z[2813],
8100 "emr.it": &z[2814],
8101 "en.it": &z[2815],
8102 "enna.it": &z[2816],
8103 "fc.it": &z[2817],
8104 "fe.it": &z[2818],
8105 "fermo.it": &z[2819],
8106 "ferrara.it": &z[2820],
8107 "fg.it": &z[2821],
8108 "fi.it": &z[2822],
8109 "firenze.it": &z[2823],
8110 "florence.it": &z[2824],
8111 "fm.it": &z[2825],
8112 "foggia.it": &z[2826],
8113 "forli-cesena.it": &z[2827],
8114 "forlicesena.it": &z[2828],
8115 "fr.it": &z[2829],
8116 "friuli-v-giulia.it": &z[2830],
8117 "friuli-ve-giulia.it": &z[2831],
8118 "friuli-vegiulia.it": &z[2832],
8119 "friuli-venezia-giulia.it": &z[2833],
8120 "friuli-veneziagiulia.it": &z[2834],
8121 "friuli-vgiulia.it": &z[2835],
8122 "friuliv-giulia.it": &z[2836],
8123 "friulive-giulia.it": &z[2837],
8124 "friulivegiulia.it": &z[2838],
8125 "friulivenezia-giulia.it": &z[2839],
8126 "friuliveneziagiulia.it": &z[2840],
8127 "friulivgiulia.it": &z[2841],
8128 "frosinone.it": &z[2842],
8129 "fvg.it": &z[2843],
8130 "ge.it": &z[2844],
8131 "genoa.it": &z[2845],
8132 "genova.it": &z[2846],
8133 "go.it": &z[2847],
8134 "gorizia.it": &z[2848],
8135 "gov.it": &z[2849],
8136 "gr.it": &z[2850],
8137 "grosseto.it": &z[2851],
8138 "iglesias-carbonia.it": &z[2852],
8139 "iglesiascarbonia.it": &z[2853],
8140 "im.it": &z[2854],
8141 "imperia.it": &z[2855],
8142 "is.it": &z[2856],
8143 "isernia.it": &z[2857],
8144 "kr.it": &z[2858],
8145 "la-spezia.it": &z[2859],
8146 "laquila.it": &z[2860],
8147 "laspezia.it": &z[2861],
8148 "latina.it": &z[2862],
8149 "laz.it": &z[2863],
8150 "lazio.it": &z[2864],
8151 "lc.it": &z[2865],
8152 "le.it": &z[2866],
8153 "lecce.it": &z[2867],
8154 "lecco.it": &z[2868],
8155 "li.it": &z[2869],
8156 "lig.it": &z[2870],
8157 "liguria.it": &z[2871],
8158 "livorno.it": &z[2872],
8159 "lo.it": &z[2873],
8160 "lodi.it": &z[2874],
8161 "lom.it": &z[2875],
8162 "lombardia.it": &z[2876],
8163 "lombardy.it": &z[2877],
8164 "lt.it": &z[2878],
8165 "lu.it": &z[2879],
8166 "lucania.it": &z[2880],
8167 "lucca.it": &z[2881],
8168 "macerata.it": &z[2882],
8169 "mantova.it": &z[2883],
8170 "mar.it": &z[2884],
8171 "marche.it": &z[2885],
8172 "massa-carrara.it": &z[2886],
8173 "massacarrara.it": &z[2887],
8174 "matera.it": &z[2888],
8175 "mb.it": &z[2889],
8176 "mc.it": &z[2890],
8177 "me.it": &z[2891],
8178 "medio-campidano.it": &z[2892],
8179 "mediocampidano.it": &z[2893],
8180 "messina.it": &z[2894],
8181 "mi.it": &z[2895],
8182 "milan.it": &z[2896],
8183 "milano.it": &z[2897],
8184 "mn.it": &z[2898],
8185 "mo.it": &z[2899],
8186 "modena.it": &z[2900],
8187 "mol.it": &z[2901],
8188 "molise.it": &z[2902],
8189 "monza.it": &z[2903],
8190 "monza-brianza.it": &z[2904],
8191 "monza-e-della-brianza.it": &z[2905],
8192 "monzabrianza.it": &z[2906],
8193 "monzaebrianza.it": &z[2907],
8194 "monzaedellabrianza.it": &z[2908],
8195 "ms.it": &z[2909],
8196 "mt.it": &z[2910],
8197 "na.it": &z[2911],
8198 "naples.it": &z[2912],
8199 "napoli.it": &z[2913],
8200 "no.it": &z[2914],
8201 "novara.it": &z[2915],
8202 "nu.it": &z[2916],
8203 "nuoro.it": &z[2917],
8204 "og.it": &z[2918],
8205 "ogliastra.it": &z[2919],
8206 "olbia-tempio.it": &z[2920],
8207 "olbiatempio.it": &z[2921],
8208 "or.it": &z[2922],
8209 "oristano.it": &z[2923],
8210 "ot.it": &z[2924],
8211 "pa.it": &z[2925],
8212 "padova.it": &z[2926],
8213 "padua.it": &z[2927],
8214 "palermo.it": &z[2928],
8215 "parma.it": &z[2929],
8216 "pavia.it": &z[2930],
8217 "pc.it": &z[2931],
8218 "pd.it": &z[2932],
8219 "pe.it": &z[2933],
8220 "perugia.it": &z[2934],
8221 "pesaro-urbino.it": &z[2935],
8222 "pesarourbino.it": &z[2936],
8223 "pescara.it": &z[2937],
8224 "pg.it": &z[2938],
8225 "pi.it": &z[2939],
8226 "piacenza.it": &z[2940],
8227 "piedmont.it": &z[2941],
8228 "piemonte.it": &z[2942],
8229 "pisa.it": &z[2943],
8230 "pistoia.it": &z[2944],
8231 "pmn.it": &z[2945],
8232 "pn.it": &z[2946],
8233 "po.it": &z[2947],
8234 "pordenone.it": &z[2948],
8235 "potenza.it": &z[2949],
8236 "pr.it": &z[2950],
8237 "prato.it": &z[2951],
8238 "pt.it": &z[2952],
8239 "pu.it": &z[2953],
8240 "pug.it": &z[2954],
8241 "puglia.it": &z[2955],
8242 "pv.it": &z[2956],
8243 "pz.it": &z[2957],
8244 "ra.it": &z[2958],
8245 "ragusa.it": &z[2959],
8246 "ravenna.it": &z[2960],
8247 "rc.it": &z[2961],
8248 "re.it": &z[2962],
8249 "reggio-calabria.it": &z[2963],
8250 "reggio-emilia.it": &z[2964],
8251 "reggiocalabria.it": &z[2965],
8252 "reggioemilia.it": &z[2966],
8253 "rg.it": &z[2967],
8254 "ri.it": &z[2968],
8255 "rieti.it": &z[2969],
8256 "rimini.it": &z[2970],
8257 "rm.it": &z[2971],
8258 "rn.it": &z[2972],
8259 "ro.it": &z[2973],
8260 "roma.it": &z[2974],
8261 "rome.it": &z[2975],
8262 "rovigo.it": &z[2976],
8263 "sa.it": &z[2977],
8264 "salerno.it": &z[2978],
8265 "sar.it": &z[2979],
8266 "sardegna.it": &z[2980],
8267 "sardinia.it": &z[2981],
8268 "sassari.it": &z[2982],
8269 "savona.it": &z[2983],
8270 "si.it": &z[2984],
8271 "sic.it": &z[2985],
8272 "sicilia.it": &z[2986],
8273 "sicily.it": &z[2987],
8274 "siena.it": &z[2988],
8275 "siracusa.it": &z[2989],
8276 "so.it": &z[2990],
8277 "sondrio.it": &z[2991],
8278 "sp.it": &z[2992],
8279 "sr.it": &z[2993],
8280 "ss.it": &z[2994],
8281 "suedtirol.it": &z[2995],
8282 "sv.it": &z[2996],
8283 "ta.it": &z[2997],
8284 "taa.it": &z[2998],
8285 "taranto.it": &z[2999],
8286 "te.it": &z[3000],
8287 "tempio-olbia.it": &z[3001],
8288 "tempioolbia.it": &z[3002],
8289 "teramo.it": &z[3003],
8290 "terni.it": &z[3004],
8291 "tn.it": &z[3005],
8292 "to.it": &z[3006],
8293 "torino.it": &z[3007],
8294 "tos.it": &z[3008],
8295 "toscana.it": &z[3009],
8296 "tp.it": &z[3010],
8297 "tr.it": &z[3011],
8298 "trani-andria-barletta.it": &z[3012],
8299 "trani-barletta-andria.it": &z[3013],
8300 "traniandriabarletta.it": &z[3014],
8301 "tranibarlettaandria.it": &z[3015],
8302 "trapani.it": &z[3016],
8303 "trentino.it": &z[3017],
8304 "trentino-a-adige.it": &z[3018],
8305 "trentino-aadige.it": &z[3019],
8306 "trentino-alto-adige.it": &z[3020],
8307 "trentino-altoadige.it": &z[3021],
8308 "trentino-s-tirol.it": &z[3022],
8309 "trentino-stirol.it": &z[3023],
8310 "trentino-sud-tirol.it": &z[3024],
8311 "trentino-sudtirol.it": &z[3025],
8312 "trentino-sued-tirol.it": &z[3026],
8313 "trentino-suedtirol.it": &z[3027],
8314 "trentinoa-adige.it": &z[3028],
8315 "trentinoaadige.it": &z[3029],
8316 "trentinoalto-adige.it": &z[3030],
8317 "trentinoaltoadige.it": &z[3031],
8318 "trentinos-tirol.it": &z[3032],
8319 "trentinosud-tirol.it": &z[3033],
8320 "trentinosudtirol.it": &z[3034],
8321 "trentinosued-tirol.it": &z[3035],
8322 "trentinosuedtirol.it": &z[3036],
8323 "trento.it": &z[3037],
8324 "treviso.it": &z[3038],
8325 "trieste.it": &z[3039],
8326 "ts.it": &z[3040],
8327 "turin.it": &z[3041],
8328 "tuscany.it": &z[3042],
8329 "tv.it": &z[3043],
8330 "ud.it": &z[3044],
8331 "udine.it": &z[3045],
8332 "umb.it": &z[3046],
8333 "umbria.it": &z[3047],
8334 "urbino-pesaro.it": &z[3048],
8335 "urbinopesaro.it": &z[3049],
8336 "va.it": &z[3050],
8337 "val-d-aosta.it": &z[3051],
8338 "val-daosta.it": &z[3052],
8339 "vald-aosta.it": &z[3053],
8340 "valdaosta.it": &z[3054],
8341 "valle-d-aosta.it": &z[3055],
8342 "valle-daosta.it": &z[3056],
8343 "valled-aosta.it": &z[3057],
8344 "valledaosta.it": &z[3058],
8345 "vao.it": &z[3059],
8346 "varese.it": &z[3060],
8347 "vb.it": &z[3061],
8348 "vc.it": &z[3062],
8349 "vda.it": &z[3063],
8350 "ve.it": &z[3064],
8351 "ven.it": &z[3065],
8352 "veneto.it": &z[3066],
8353 "venezia.it": &z[3067],
8354 "venice.it": &z[3068],
8355 "verbania.it": &z[3069],
8356 "vercelli.it": &z[3070],
8357 "verona.it": &z[3071],
8358 "vi.it": &z[3072],
8359 "vibo-valentia.it": &z[3073],
8360 "vibovalentia.it": &z[3074],
8361 "vicenza.it": &z[3075],
8362 "viterbo.it": &z[3076],
8363 "vr.it": &z[3077],
8364 "vs.it": &z[3078],
8365 "vt.it": &z[3079],
8366 "vv.it": &z[3080],
8367 "24.je": &z[3081],
8368 "co.je": &z[3082],
8369 "gov.je": &z[3083],
8370 "net.je": &z[3084],
8371 "org.je": &z[3085],
8372 "sch.je": &z[3086],
8373 "com.jm": &z[3087],
8374 "edu.jm": &z[3088],
8375 "gov.jm": &z[3089],
8376 "mil.jm": &z[3090],
8377 "net.jm": &z[3091],
8378 "org.jm": &z[3092],
8379 "com.jo": &z[3093],
8380 "edu.jo": &z[3094],
8381 "gov.jo": &z[3095],
8382 "mil.jo": &z[3096],
8383 "name.jo": &z[3097],
8384 "net.jo": &z[3098],
8385 "org.jo": &z[3099],
8386 "sch.jo": &z[3100],
8387 "ac.jp": &z[3101],
8388 "ad.jp": &z[3102],
8389 "aichi.jp": &z[3103],
8390 "akita.jp": &z[3104],
8391 "aomori.jp": &z[3105],
8392 "chiba.jp": &z[3106],
8393 "co.jp": &z[3107],
8394 "ed.jp": &z[3108],
8395 "ehime.jp": &z[3109],
8396 "fukui.jp": &z[3110],
8397 "fukuoka.jp": &z[3111],
8398 "fukushima.jp": &z[3112],
8399 "gifu.jp": &z[3113],
8400 "go.jp": &z[3114],
8401 "gr.jp": &z[3115],
8402 "gunma.jp": &z[3116],
8403 "hiroshima.jp": &z[3117],
8404 "hokkaido.jp": &z[3118],
8405 "hyogo.jp": &z[3119],
8406 "ibaraki.jp": &z[3120],
8407 "ishikawa.jp": &z[3121],
8408 "iwate.jp": &z[3122],
8409 "kagawa.jp": &z[3123],
8410 "kagoshima.jp": &z[3124],
8411 "kanagawa.jp": &z[3125],
8412 "kochi.jp": &z[3126],
8413 "kumamoto.jp": &z[3127],
8414 "kyoto.jp": &z[3128],
8415 "lg.jp": &z[3129],
8416 "mie.jp": &z[3130],
8417 "miyagi.jp": &z[3131],
8418 "miyazaki.jp": &z[3132],
8419 "nagano.jp": &z[3133],
8420 "nagasaki.jp": &z[3134],
8421 "nara.jp": &z[3135],
8422 "ne.jp": &z[3136],
8423 "niigata.jp": &z[3137],
8424 "oita.jp": &z[3138],
8425 "okayama.jp": &z[3139],
8426 "okinawa.jp": &z[3140],
8427 "or.jp": &z[3141],
8428 "osaka.jp": &z[3142],
8429 "saga.jp": &z[3143],
8430 "saitama.jp": &z[3144],
8431 "shiga.jp": &z[3145],
8432 "shimane.jp": &z[3146],
8433 "shizuoka.jp": &z[3147],
8434 "tochigi.jp": &z[3148],
8435 "tokushima.jp": &z[3149],
8436 "tokyo.jp": &z[3150],
8437 "tottori.jp": &z[3151],
8438 "toyama.jp": &z[3152],
8439 "wakayama.jp": &z[3153],
8440 "yamagata.jp": &z[3154],
8441 "yamaguchi.jp": &z[3155],
8442 "yamanashi.jp": &z[3156],
8443 "xn--ehqz56n.jp": &z[3157], // 三重.jp
8444 "xn--1lqs03n.jp": &z[3158], // 京都.jp
8445 "xn--qqqt11m.jp": &z[3159], // 佐賀.jp
8446 "xn--f6qx53a.jp": &z[3160], // 兵庫.jp
8447 "xn--djrs72d6uy.jp": &z[3161], // 北海道.jp
8448 "xn--mkru45i.jp": &z[3162], // 千葉.jp
8449 "xn--0trq7p7nn.jp": &z[3163], // 和歌山.jp
8450 "xn--5js045d.jp": &z[3164], // 埼玉.jp
8451 "xn--kbrq7o.jp": &z[3165], // 大分.jp
8452 "xn--pssu33l.jp": &z[3166], // 大阪.jp
8453 "xn--ntsq17g.jp": &z[3167], // 奈良.jp
8454 "xn--uisz3g.jp": &z[3168], // 宮城.jp
8455 "xn--6btw5a.jp": &z[3169], // 宮崎.jp
8456 "xn--1ctwo.jp": &z[3170], // 富山.jp
8457 "xn--6orx2r.jp": &z[3171], // 山口.jp
8458 "xn--rht61e.jp": &z[3172], // 山形.jp
8459 "xn--rht27z.jp": &z[3173], // 山梨.jp
8460 "xn--nit225k.jp": &z[3174], // 岐阜.jp
8461 "xn--rht3d.jp": &z[3175], // 岡山.jp
8462 "xn--djty4k.jp": &z[3176], // 岩手.jp
8463 "xn--klty5x.jp": &z[3177], // 島根.jp
8464 "xn--kltx9a.jp": &z[3178], // 広島.jp
8465 "xn--kltp7d.jp": &z[3179], // 徳島.jp
8466 "xn--c3s14m.jp": &z[3180], // 愛媛.jp
8467 "xn--vgu402c.jp": &z[3181], // 愛知.jp
8468 "xn--efvn9s.jp": &z[3182], // 新潟.jp
8469 "xn--1lqs71d.jp": &z[3183], // 東京.jp
8470 "xn--4pvxs.jp": &z[3184], // 栃木.jp
8471 "xn--uuwu58a.jp": &z[3185], // 沖縄.jp
8472 "xn--zbx025d.jp": &z[3186], // 滋賀.jp
8473 "xn--8pvr4u.jp": &z[3187], // 熊本.jp
8474 "xn--5rtp49c.jp": &z[3188], // 石川.jp
8475 "xn--ntso0iqx3a.jp": &z[3189], // 神奈川.jp
8476 "xn--elqq16h.jp": &z[3190], // 福井.jp
8477 "xn--4it168d.jp": &z[3191], // 福岡.jp
8478 "xn--klt787d.jp": &z[3192], // 福島.jp
8479 "xn--rny31h.jp": &z[3193], // 秋田.jp
8480 "xn--7t0a264c.jp": &z[3194], // 群馬.jp
8481 "xn--uist22h.jp": &z[3195], // 茨城.jp
8482 "xn--8ltr62k.jp": &z[3196], // 長崎.jp
8483 "xn--2m4a15e.jp": &z[3197], // 長野.jp
8484 "xn--32vp30h.jp": &z[3198], // 青森.jp
8485 "xn--4it797k.jp": &z[3199], // 静岡.jp
8486 "xn--5rtq34k.jp": &z[3200], // 香川.jp
8487 "xn--k7yn95e.jp": &z[3201], // 高知.jp
8488 "xn--tor131o.jp": &z[3202], // 鳥取.jp
8489 "xn--d5qv7z876c.jp": &z[3203], // 鹿児島.jp
8490 "ac.ke": &z[3204],
8491 "co.ke": &z[3205],
8492 "go.ke": &z[3206],
8493 "info.ke": &z[3207],
8494 "me.ke": &z[3208],
8495 "mobi.ke": &z[3209],
8496 "ne.ke": &z[3210],
8497 "or.ke": &z[3211],
8498 "sc.ke": &z[3212],
8499 "com.kg": &z[3213],
8500 "edu.kg": &z[3214],
8501 "gov.kg": &z[3215],
8502 "mil.kg": &z[3216],
8503 "net.kg": &z[3217],
8504 "org.kg": &z[3218],
8505 "com.kh": &z[3219],
8506 "edu.kh": &z[3220],
8507 "gov.kh": &z[3221],
8508 "mil.kh": &z[3222],
8509 "net.kh": &z[3223],
8510 "org.kh": &z[3224],
8511 "per.kh": &z[3225],
8512 "biz.ki": &z[3226],
8513 "com.ki": &z[3227],
8514 "edu.ki": &z[3228],
8515 "eu.ki": &z[3229],
8516 "gov.ki": &z[3230],
8517 "info.ki": &z[3231],
8518 "mob.ki": &z[3232],
8519 "mobi.ki": &z[3233],
8520 "net.ki": &z[3234],
8521 "org.ki": &z[3235],
8522 "phone.ki": &z[3236],
8523 "tel.ki": &z[3237],
8524 "asso.km": &z[3238],
8525 "com.km": &z[3239],
8526 "coop.km": &z[3240],
8527 "edu.km": &z[3241],
8528 "gouv.km": &z[3242],
8529 "medecin.km": &z[3243],
8530 "mil.km": &z[3244],
8531 "nom.km": &z[3245],
8532 "notaires.km": &z[3246],
8533 "org.km": &z[3247],
8534 "pharmaciens.km": &z[3248],
8535 "presse.km": &z[3249],
8536 "tm.km": &z[3250],
8537 "veterinaire.km": &z[3251],
8538 "co.kn": &z[3252],
8539 "com.kn": &z[3253],
8540 "edu.kn": &z[3254],
8541 "gov.kn": &z[3255],
8542 "net.kn": &z[3256],
8543 "org.kn": &z[3257],
8544 "com.kp": &z[3258],
8545 "net.kp": &z[3259],
8546 "org.kp": &z[3260],
8547 "rep.kp": &z[3261],
8548 "ac.kr": &z[3262],
8549 "busan.kr": &z[3263],
8550 "chungbuk.kr": &z[3264],
8551 "chungnam.kr": &z[3265],
8552 "co.kr": &z[3266],
8553 "daegu.kr": &z[3267],
8554 "daejeon.kr": &z[3268],
8555 "es.kr": &z[3269],
8556 "gangwon.kr": &z[3270],
8557 "go.kr": &z[3271],
8558 "gwangju.kr": &z[3272],
8559 "gyeongbuk.kr": &z[3273],
8560 "gyeonggi.kr": &z[3274],
8561 "gyeongnam.kr": &z[3275],
8562 "hs.kr": &z[3276],
8563 "incheon.kr": &z[3277],
8564 "jeju.kr": &z[3278],
8565 "jeonbuk.kr": &z[3279],
8566 "jeonnam.kr": &z[3280],
8567 "kg.kr": &z[3281],
8568 "mil.kr": &z[3282],
8569 "ms.kr": &z[3283],
8570 "ne.kr": &z[3284],
8571 "or.kr": &z[3285],
8572 "pe.kr": &z[3286],
8573 "re.kr": &z[3287],
8574 "sc.kr": &z[3288],
8575 "seoul.kr": &z[3289],
8576 "ulsan.kr": &z[3290],
8577 "com.kw": &z[3291],
8578 "edu.kw": &z[3292],
8579 "gov.kw": &z[3293],
8580 "net.kw": &z[3294],
8581 "org.kw": &z[3295],
8582 "com.ky": &z[3296],
8583 "edu.ky": &z[3297],
8584 "gov.ky": &z[3298],
8585 "net.ky": &z[3299],
8586 "org.ky": &z[3300],
8587 "com.kz": &z[3301],
8588 "edu.kz": &z[3302],
8589 "gov.kz": &z[3303],
8590 "mil.kz": &z[3304],
8591 "net.kz": &z[3305],
8592 "org.kz": &z[3306],
8593 "com.lb": &z[3307],
8594 "edu.lb": &z[3308],
8595 "gov.lb": &z[3309],
8596 "net.lb": &z[3310],
8597 "org.lb": &z[3311],
8598 "24.lc": &z[3312],
8599 "co.lc": &z[3313],
8600 "com.lc": &z[3314],
8601 "edu.lc": &z[3315],
8602 "gov.lc": &z[3316],
8603 "l.lc": &z[3317],
8604 "net.lc": &z[3318],
8605 "org.lc": &z[3319],
8606 "p.lc": &z[3320],
8607 "assn.lk": &z[3321],
8608 "com.lk": &z[3322],
8609 "edu.lk": &z[3323],
8610 "gov.lk": &z[3324],
8611 "grp.lk": &z[3325],
8612 "hotel.lk": &z[3326],
8613 "int.lk": &z[3327],
8614 "ltd.lk": &z[3328],
8615 "net.lk": &z[3329],
8616 "ngo.lk": &z[3330],
8617 "org.lk": &z[3331],
8618 "sch.lk": &z[3332],
8619 "soc.lk": &z[3333],
8620 "web.lk": &z[3334],
8621 "com.lr": &z[3335],
8622 "edu.lr": &z[3336],
8623 "gov.lr": &z[3337],
8624 "net.lr": &z[3338],
8625 "org.lr": &z[3339],
8626 "vcom.lr": &z[3340],
8627 "ac.ls": &z[3341],
8628 "co.ls": &z[3342],
8629 "gov.ls": &z[3343],
8630 "net.ls": &z[3344],
8631 "org.ls": &z[3345],
8632 "sc.ls": &z[3346],
8633 "gov.lt": &z[3347],
8634 "asn.lv": &z[3348],
8635 "com.lv": &z[3349],
8636 "conf.lv": &z[3350],
8637 "edu.lv": &z[3351],
8638 "gov.lv": &z[3352],
8639 "id.lv": &z[3353],
8640 "mil.lv": &z[3354],
8641 "net.lv": &z[3355],
8642 "org.lv": &z[3356],
8643 "com.ly": &z[3357],
8644 "edu.ly": &z[3358],
8645 "gov.ly": &z[3359],
8646 "id.ly": &z[3360],
8647 "med.ly": &z[3361],
8648 "net.ly": &z[3362],
8649 "org.ly": &z[3363],
8650 "plc.ly": &z[3364],
8651 "sch.ly": &z[3365],
8652 "ac.ma": &z[3366],
8653 "co.ma": &z[3367],
8654 "gov.ma": &z[3368],
8655 "net.ma": &z[3369],
8656 "org.ma": &z[3370],
8657 "press.ma": &z[3371],
8658 "asso.mc": &z[3372],
8659 "tm.mc": &z[3373],
8660 "ac.me": &z[3374],
8661 "co.me": &z[3375],
8662 "edu.me": &z[3376],
8663 "gov.me": &z[3377],
8664 "its.me": &z[3378],
8665 "net.me": &z[3379],
8666 "org.me": &z[3380],
8667 "priv.me": &z[3381],
8668 "co.mg": &z[3382],
8669 "com.mg": &z[3383],
8670 "edu.mg": &z[3384],
8671 "gov.mg": &z[3385],
8672 "in.mg": &z[3386],
8673 "mil.mg": &z[3387],
8674 "net.mg": &z[3388],
8675 "nom.mg": &z[3389],
8676 "org.mg": &z[3390],
8677 "prd.mg": &z[3391],
8678 "tm.mg": &z[3392],
8679 "com.mk": &z[3393],
8680 "edu.mk": &z[3394],
8681 "gov.mk": &z[3395],
8682 "inf.mk": &z[3396],
8683 "name.mk": &z[3397],
8684 "net.mk": &z[3398],
8685 "org.mk": &z[3399],
8686 "pro.mk": &z[3400],
8687 "com.ml": &z[3401],
8688 "edu.ml": &z[3402],
8689 "gov.ml": &z[3403],
8690 "net.ml": &z[3404],
8691 "org.ml": &z[3405],
8692 "presse.ml": &z[3406],
8693 "biz.mm": &z[3407],
8694 "com.mm": &z[3408],
8695 "edu.mm": &z[3409],
8696 "gov.mm": &z[3410],
8697 "mil.mm": &z[3411],
8698 "net.mm": &z[3412],
8699 "org.mm": &z[3413],
8700 "per.mm": &z[3414],
8701 "edu.mn": &z[3415],
8702 "gov.mn": &z[3416],
8703 "org.mn": &z[3417],
8704 "co.mo": &z[3418],
8705 "com.mo": &z[3419],
8706 "edu.mo": &z[3420],
8707 "gov.mo": &z[3421],
8708 "net.mo": &z[3422],
8709 "org.mo": &z[3423],
8710 "co.mp": &z[3424],
8711 "com.mp": &z[3425],
8712 "gov.mp": &z[3426],
8713 "org.mp": &z[3427],
8714 "edu.mr": &z[3428],
8715 "gov.mr": &z[3429],
8716 "org.mr": &z[3430],
8717 "perso.mr": &z[3431],
8718 "co.ms": &z[3432],
8719 "com.ms": &z[3433],
8720 "net.ms": &z[3434],
8721 "org.ms": &z[3435],
8722 "com.mt": &z[3436],
8723 "edu.mt": &z[3437],
8724 "gov.mt": &z[3438],
8725 "net.mt": &z[3439],
8726 "org.mt": &z[3440],
8727 "24.mu": &z[3441],
8728 "ac.mu": &z[3442],
8729 "co.mu": &z[3443],
8730 "com.mu": &z[3444],
8731 "gov.mu": &z[3445],
8732 "net.mu": &z[3446],
8733 "nom.mu": &z[3447],
8734 "or.mu": &z[3448],
8735 "org.mu": &z[3449],
8736 "aero.mv": &z[3450],
8737 "biz.mv": &z[3451],
8738 "com.mv": &z[3452],
8739 "coop.mv": &z[3453],
8740 "edu.mv": &z[3454],
8741 "gov.mv": &z[3455],
8742 "info.mv": &z[3456],
8743 "int.mv": &z[3457],
8744 "mil.mv": &z[3458],
8745 "museum.mv": &z[3459],
8746 "name.mv": &z[3460],
8747 "net.mv": &z[3461],
8748 "org.mv": &z[3462],
8749 "pro.mv": &z[3463],
8750 "ac.mw": &z[3464],
8751 "co.mw": &z[3465],
8752 "com.mw": &z[3466],
8753 "coop.mw": &z[3467],
8754 "edu.mw": &z[3468],
8755 "gov.mw": &z[3469],
8756 "int.mw": &z[3470],
8757 "museum.mw": &z[3471],
8758 "net.mw": &z[3472],
8759 "org.mw": &z[3473],
8760 "com.mx": &z[3474],
8761 "edu.mx": &z[3475],
8762 "gob.mx": &z[3476],
8763 "net.mx": &z[3477],
8764 "org.mx": &z[3478],
8765 "com.my": &z[3479],
8766 "edi.my": &z[3480],
8767 "edu.my": &z[3481],
8768 "gov.my": &z[3482],
8769 "mil.my": &z[3483],
8770 "name.my": &z[3484],
8771 "net.my": &z[3485],
8772 "org.my": &z[3486],
8773 "ac.mz": &z[3487],
8774 "adv.mz": &z[3488],
8775 "co.mz": &z[3489],
8776 "edu.mz": &z[3490],
8777 "gov.mz": &z[3491],
8778 "net.mz": &z[3492],
8779 "org.mz": &z[3493],
8780 "alt.na": &z[3494],
8781 "cc.na": &z[3495],
8782 "co.na": &z[3496],
8783 "com.na": &z[3497],
8784 "dr.na": &z[3498],
8785 "edu.na": &z[3499],
8786 "in.na": &z[3500],
8787 "info.na": &z[3501],
8788 "mobi.na": &z[3502],
8789 "name.na": &z[3503],
8790 "net.na": &z[3504],
8791 "of.na": &z[3505],
8792 "or.na": &z[3506],
8793 "org.na": &z[3507],
8794 "pro.na": &z[3508],
8795 "school.na": &z[3509],
8796 "tv.na": &z[3510],
8797 "ws.na": &z[3511],
8798 "kyrylkov.name": &z[3512],
8799 "puig.name": &z[3513],
8800 "santos.name": &z[3514],
8801 "asso.nc": &z[3515],
8802 "com.nc": &z[3516],
8803 "nom.nc": &z[3517],
8804 "com.ne": &z[3518],
8805 "info.ne": &z[3519],
8806 "int.ne": &z[3520],
8807 "org.ne": &z[3521],
8808 "perso.ne": &z[3522],
8809 "1x.net": &z[3523],
8810 "auz.net": &z[3524],
8811 "gb.net": &z[3525],
8812 "hu.net": &z[3526],
8813 "in.net": &z[3527],
8814 "jp.net": &z[3528],
8815 "ru.net": &z[3529],
8816 "se.net": &z[3530],
8817 "uk.net": &z[3531],
8818 "za.net": &z[3532],
8819 "arts.nf": &z[3533],
8820 "com.nf": &z[3534],
8821 "firm.nf": &z[3535],
8822 "info.nf": &z[3536],
8823 "net.nf": &z[3537],
8824 "org.nf": &z[3538],
8825 "other.nf": &z[3539],
8826 "per.nf": &z[3540],
8827 "rec.nf": &z[3541],
8828 "store.nf": &z[3542],
8829 "us.nf": &z[3543],
8830 "web.nf": &z[3544],
8831 "com.ng": &z[3545],
8832 "edu.ng": &z[3546],
8833 "gov.ng": &z[3547],
8834 "i.ng": &z[3548],
8835 "mil.ng": &z[3549],
8836 "mobi.ng": &z[3550],
8837 "name.ng": &z[3551],
8838 "net.ng": &z[3552],
8839 "org.ng": &z[3553],
8840 "sch.ng": &z[3554],
8841 "ac.ni": &z[3555],
8842 "biz.ni": &z[3556],
8843 "co.ni": &z[3557],
8844 "com.ni": &z[3558],
8845 "edu.ni": &z[3559],
8846 "gob.ni": &z[3560],
8847 "gov.ni": &z[3561],
8848 "in.ni": &z[3562],
8849 "info.ni": &z[3563],
8850 "int.ni": &z[3564],
8851 "mil.ni": &z[3565],
8852 "net.ni": &z[3566],
8853 "nom.ni": &z[3567],
8854 "org.ni": &z[3568],
8855 "web.ni": &z[3569],
8856 "24.nl": &z[3570],
8857 "co.nl": &z[3571],
8858 "com.nl": &z[3572],
8859 "net.nl": &z[3573],
8860 "nom.nl": &z[3574],
8861 "punt.nl": &z[3575],
8862 "co.no": &z[3576],
8863 "fhs.no": &z[3577],
8864 "folkebibl.no": &z[3578],
8865 "fylkesbibl.no": &z[3579],
8866 "gs.no": &z[3580],
8867 "idrett.no": &z[3581],
8868 "museum.no": &z[3582],
8869 "priv.no": &z[3583],
8870 "uenorge.no": &z[3584],
8871 "vgs.no": &z[3585],
8872 "academy.np": &z[3586],
8873 "accountants.np": &z[3587],
8874 "actor.np": &z[3588],
8875 "aero.np": &z[3589],
8876 "agency.np": &z[3590],
8877 "asia.np": &z[3591],
8878 "associates.np": &z[3592],
8879 "audio.np": &z[3593],
8880 "bar.np": &z[3594],
8881 "bargains.np": &z[3595],
8882 "beer.np": &z[3596],
8883 "bid.np": &z[3597],
8884 "bike.np": &z[3598],
8885 "bio.np": &z[3599],
8886 "biz.np": &z[3600],
8887 "black.np": &z[3601],
8888 "blue.np": &z[3602],
8889 "boutique.np": &z[3603],
8890 "build.np": &z[3604],
8891 "builders.np": &z[3605],
8892 "buzz.np": &z[3606],
8893 "cab.np": &z[3607],
8894 "camera.np": &z[3608],
8895 "camp.np": &z[3609],
8896 "capital.np": &z[3610],
8897 "cards.np": &z[3611],
8898 "care.np": &z[3612],
8899 "careers.np": &z[3613],
8900 "cash.np": &z[3614],
8901 "catering.np": &z[3615],
8902 "center.np": &z[3616],
8903 "ceo.np": &z[3617],
8904 "christmas.np": &z[3618],
8905 "clinic.np": &z[3619],
8906 "clothing.np": &z[3620],
8907 "club.np": &z[3621],
8908 "codes.np": &z[3622],
8909 "coffee.np": &z[3623],
8910 "college.np": &z[3624],
8911 "com.np": &z[3625],
8912 "community.np": &z[3626],
8913 "company.np": &z[3627],
8914 "computer.np": &z[3628],
8915 "cool.np": &z[3629],
8916 "coop.np": &z[3630],
8917 "country.np": &z[3631],
8918 "credit.np": &z[3632],
8919 "creditcard.np": &z[3633],
8920 "dental.np": &z[3634],
8921 "diamonds.np": &z[3635],
8922 "edu.np": &z[3636],
8923 "email.np": &z[3637],
8924 "engineering.np": &z[3638],
8925 "estate.np": &z[3639],
8926 "events.np": &z[3640],
8927 "expert.np": &z[3641],
8928 "finance.np": &z[3642],
8929 "financial.np": &z[3643],
8930 "fish.np": &z[3644],
8931 "fishing.np": &z[3645],
8932 "fitness.np": &z[3646],
8933 "flights.np": &z[3647],
8934 "florist.np": &z[3648],
8935 "fund.np": &z[3649],
8936 "furniture.np": &z[3650],
8937 "futbol.np": &z[3651],
8938 "gallery.np": &z[3652],
8939 "gov.np": &z[3653],
8940 "guitars.np": &z[3654],
8941 "guru.np": &z[3655],
8942 "hiphop.np": &z[3656],
8943 "hiv.np": &z[3657],
8944 "house.np": &z[3658],
8945 "industries.np": &z[3659],
8946 "info.np": &z[3660],
8947 "ink.np": &z[3661],
8948 "jobs.np": &z[3662],
8949 "limited.np": &z[3663],
8950 "link.np": &z[3664],
8951 "management.np": &z[3665],
8952 "marketing.np": &z[3666],
8953 "media.np": &z[3667],
8954 "menu.np": &z[3668],
8955 "mil.np": &z[3669],
8956 "mobi.np": &z[3670],
8957 "museum.np": &z[3671],
8958 "name.np": &z[3672],
8959 "net.np": &z[3673],
8960 "ninja.np": &z[3674],
8961 "onl.np": &z[3675],
8962 "org.np": &z[3676],
8963 "partners.np": &z[3677],
8964 "parts.np": &z[3678],
8965 "photo.np": &z[3679],
8966 "photos.np": &z[3680],
8967 "pics.np": &z[3681],
8968 "pink.np": &z[3682],
8969 "pro.np": &z[3683],
8970 "productions.np": &z[3684],
8971 "products.np": &z[3685],
8972 "properties.np": &z[3686],
8973 "pub.np": &z[3687],
8974 "red.np": &z[3688],
8975 "rentals.np": &z[3689],
8976 "repair.np": &z[3690],
8977 "rest.np": &z[3691],
8978 "rocks.np": &z[3692],
8979 "services.np": &z[3693],
8980 "shiksha.np": &z[3694],
8981 "shoes.np": &z[3695],
8982 "social.np": &z[3696],
8983 "solar.np": &z[3697],
8984 "solutions.np": &z[3698],
8985 "space.np": &z[3699],
8986 "supplies.np": &z[3700],
8987 "supply.np": &z[3701],
8988 "support.np": &z[3702],
8989 "surf.np": &z[3703],
8990 "surgery.np": &z[3704],
8991 "systems.np": &z[3705],
8992 "tattoo.np": &z[3706],
8993 "tax.np": &z[3707],
8994 "technology.np": &z[3708],
8995 "tel.np": &z[3709],
8996 "tips.np": &z[3710],
8997 "today.np": &z[3711],
8998 "tools.np": &z[3712],
8999 "town.np": &z[3713],
9000 "trade.np": &z[3714],
9001 "training.np": &z[3715],
9002 "travel.np": &z[3716],
9003 "university.np": &z[3717],
9004 "vacations.np": &z[3718],
9005 "ventures.np": &z[3719],
9006 "villas.np": &z[3720],
9007 "vision.np": &z[3721],
9008 "vodka.np": &z[3722],
9009 "voting.np": &z[3723],
9010 "voyage.np": &z[3724],
9011 "watch.np": &z[3725],
9012 "webcam.np": &z[3726],
9013 "wiki.np": &z[3727],
9014 "works.np": &z[3728],
9015 "wtf.np": &z[3729],
9016 "xyz.np": &z[3730],
9017 "zone.np": &z[3731],
9018 "biz.nr": &z[3732],
9019 "com.nr": &z[3733],
9020 "edu.nr": &z[3734],
9021 "gov.nr": &z[3735],
9022 "info.nr": &z[3736],
9023 "net.nr": &z[3737],
9024 "org.nr": &z[3738],
9025 "co.nu": &z[3739],
9026 "com.nu": &z[3740],
9027 "eu.nu": &z[3741],
9028 "ie.nu": &z[3742],
9029 "info.nu": &z[3743],
9030 "ac.nz": &z[3744],
9031 "co.nz": &z[3745],
9032 "cri.nz": &z[3746],
9033 "geek.nz": &z[3747],
9034 "gen.nz": &z[3748],
9035 "govt.nz": &z[3749],
9036 "health.nz": &z[3750],
9037 "iwi.nz": &z[3751],
9038 "kiwi.nz": &z[3752],
9039 "maori.nz": &z[3753],
9040 "mil.nz": &z[3754],
9041 "net.nz": &z[3755],
9042 "org.nz": &z[3756],
9043 "parliament.nz": &z[3757],
9044 "school.nz": &z[3758],
9045 "ac.om": &z[3759],
9046 "biz.om": &z[3760],
9047 "co.om": &z[3761],
9048 "com.om": &z[3762],
9049 "edu.om": &z[3763],
9050 "gov.om": &z[3764],
9051 "med.om": &z[3765],
9052 "mil.om": &z[3766],
9053 "museum.om": &z[3767],
9054 "net.om": &z[3768],
9055 "org.om": &z[3769],
9056 "pro.om": &z[3770],
9057 "sch.om": &z[3771],
9058 "ae.org": &z[3772],
9059 "eu.org": &z[3773],
9060 "hk.org": &z[3774],
9061 "js.org": &z[3775],
9062 "us.org": &z[3776],
9063 "za.org": &z[3777],
9064 "abo.pa": &z[3778],
9065 "ac.pa": &z[3779],
9066 "com.pa": &z[3780],
9067 "edu.pa": &z[3781],
9068 "gob.pa": &z[3782],
9069 "ing.pa": &z[3783],
9070 "med.pa": &z[3784],
9071 "net.pa": &z[3785],
9072 "nom.pa": &z[3786],
9073 "org.pa": &z[3787],
9074 "sld.pa": &z[3788],
9075 "com.pe": &z[3789],
9076 "edu.pe": &z[3790],
9077 "gob.pe": &z[3791],
9078 "gov.pe": &z[3792],
9079 "mil.pe": &z[3793],
9080 "net.pe": &z[3794],
9081 "nom.pe": &z[3795],
9082 "org.pe": &z[3796],
9083 "sld.pe": &z[3797],
9084 "asso.pf": &z[3798],
9085 "com.pf": &z[3799],
9086 "edu.pf": &z[3800],
9087 "gov.pf": &z[3801],
9088 "org.pf": &z[3802],
9089 "ac.pg": &z[3803],
9090 "com.pg": &z[3804],
9091 "gov.pg": &z[3805],
9092 "mil.pg": &z[3806],
9093 "net.pg": &z[3807],
9094 "org.pg": &z[3808],
9095 "com.ph": &z[3809],
9096 "edi.ph": &z[3810],
9097 "edu.ph": &z[3811],
9098 "gov.ph": &z[3812],
9099 "i.ph": &z[3813],
9100 "mil.ph": &z[3814],
9101 "net.ph": &z[3815],
9102 "ngo.ph": &z[3816],
9103 "org.ph": &z[3817],
9104 "biz.pk": &z[3818],
9105 "com.pk": &z[3819],
9106 "edu.pk": &z[3820],
9107 "fam.pk": &z[3821],
9108 "gkp.pk": &z[3822],
9109 "gob.pk": &z[3823],
9110 "gog.pk": &z[3824],
9111 "gok.pk": &z[3825],
9112 "gon.pk": &z[3826],
9113 "gop.pk": &z[3827],
9114 "gos.pk": &z[3828],
9115 "gov.pk": &z[3829],
9116 "net.pk": &z[3830],
9117 "org.pk": &z[3831],
9118 "web.pk": &z[3832],
9119 "agro.pl": &z[3833],
9120 "aid.pl": &z[3834],
9121 "art.pl": &z[3835],
9122 "atm.pl": &z[3836],
9123 "augustow.pl": &z[3837],
9124 "auto.pl": &z[3838],
9125 "babia-gora.pl": &z[3839],
9126 "bedzin.pl": &z[3840],
9127 "beskidy.pl": &z[3841],
9128 "bialowieza.pl": &z[3842],
9129 "bialystok.pl": &z[3843],
9130 "bielawa.pl": &z[3844],
9131 "bieszczady.pl": &z[3845],
9132 "biz.pl": &z[3846],
9133 "boleslawiec.pl": &z[3847],
9134 "bydgoszcz.pl": &z[3848],
9135 "bytom.pl": &z[3849],
9136 "ciesyn.pl": &z[3850],
9137 "cieszyn.pl": &z[3851],
9138 "co.pl": &z[3852],
9139 "com.pl": &z[3853],
9140 "czeladz.pl": &z[3854],
9141 "czest.pl": &z[3855],
9142 "dlugoleka.pl": &z[3856],
9143 "edu.pl": &z[3857],
9144 "elblag.pl": &z[3858],
9145 "elk.pl": &z[3859],
9146 "gda.pl": &z[3860],
9147 "gdansk.pl": &z[3861],
9148 "glogow.pl": &z[3862],
9149 "gmina.pl": &z[3863],
9150 "gniezno.pl": &z[3864],
9151 "gniezon.pl": &z[3865],
9152 "gorlice.pl": &z[3866],
9153 "gov.pl": &z[3867],
9154 "grajewo.pl": &z[3868],
9155 "gsm.pl": &z[3869],
9156 "ilawa.pl": &z[3870],
9157 "info.pl": &z[3871],
9158 "jaworzno.pl": &z[3872],
9159 "jaworzono.pl": &z[3873],
9160 "jelenia-gora.pl": &z[3874],
9161 "jgora.pl": &z[3875],
9162 "kalisz.pl": &z[3876],
9163 "karpacz.pl": &z[3877],
9164 "kartuzy.pl": &z[3878],
9165 "kaszuby.pl": &z[3879],
9166 "katowice.pl": &z[3880],
9167 "kazimierz-dolny.pl": &z[3881],
9168 "kepno.pl": &z[3882],
9169 "ketrzyn.pl": &z[3883],
9170 "klodzko.pl": &z[3884],
9171 "kobierzyce.pl": &z[3885],
9172 "kolobrzeg.pl": &z[3886],
9173 "konin.pl": &z[3887],
9174 "konskowola.pl": &z[3888],
9175 "krakow.pl": &z[3889],
9176 "ksazuby.pl": &z[3890],
9177 "kutno.pl": &z[3891],
9178 "lapy.pl": &z[3892],
9179 "lebork.pl": &z[3893],
9180 "legnica.pl": &z[3894],
9181 "lezajsk.pl": &z[3895],
9182 "limanowa.pl": &z[3896],
9183 "lodz.pl": &z[3897],
9184 "lomza.pl": &z[3898],
9185 "lowicz.pl": &z[3899],
9186 "lubin.pl": &z[3900],
9187 "lublin.pl": &z[3901],
9188 "lukow.pl": &z[3902],
9189 "mail.pl": &z[3903],
9190 "malbork.pl": &z[3904],
9191 "malopolska.pl": &z[3905],
9192 "mazowsze.pl": &z[3906],
9193 "mazury.pl": &z[3907],
9194 "media.pl": &z[3908],
9195 "miasta.pl": &z[3909],
9196 "mielec.pl": &z[3910],
9197 "mielno.pl": &z[3911],
9198 "mil.pl": &z[3912],
9199 "mragowo.pl": &z[3913],
9200 "naklo.pl": &z[3914],
9201 "net.pl": &z[3915],
9202 "ngo.pl": &z[3916],
9203 "nieruchomosci.pl": &z[3917],
9204 "nom.pl": &z[3918],
9205 "nowaruda.pl": &z[3919],
9206 "nysa.pl": &z[3920],
9207 "olawa.pl": &z[3921],
9208 "olecko.pl": &z[3922],
9209 "olkusz.pl": &z[3923],
9210 "olsztyn.pl": &z[3924],
9211 "opoczno.pl": &z[3925],
9212 "opole.pl": &z[3926],
9213 "org.pl": &z[3927],
9214 "ostroda.pl": &z[3928],
9215 "ostroleka.pl": &z[3929],
9216 "ostrowiec.pl": &z[3930],
9217 "ostrowwlkp.pl": &z[3931],
9218 "pc.pl": &z[3932],
9219 "pila.pl": &z[3933],
9220 "pisz.pl": &z[3934],
9221 "podhale.pl": &z[3935],
9222 "podlasie.pl": &z[3936],
9223 "polkowice.pl": &z[3937],
9224 "pomorskie.pl": &z[3938],
9225 "pomorze.pl": &z[3939],
9226 "powiat.pl": &z[3940],
9227 "poznan.pl": &z[3941],
9228 "priv.pl": &z[3942],
9229 "prochowice.pl": &z[3943],
9230 "pruszkow.pl": &z[3944],
9231 "przeworsk.pl": &z[3945],
9232 "pulawy.pl": &z[3946],
9233 "radom.pl": &z[3947],
9234 "rawa-maz.pl": &z[3948],
9235 "realestate.pl": &z[3949],
9236 "rel.pl": &z[3950],
9237 "rybnik.pl": &z[3951],
9238 "rzeszow.pl": &z[3952],
9239 "sanok.pl": &z[3953],
9240 "sejny.pl": &z[3954],
9241 "sex.pl": &z[3955],
9242 "shop.pl": &z[3956],
9243 "sklep.pl": &z[3957],
9244 "skoczow.pl": &z[3958],
9245 "slask.pl": &z[3959],
9246 "slupsk.pl": &z[3960],
9247 "sos.pl": &z[3961],
9248 "sosnowiec.pl": &z[3962],
9249 "stalowa-wola.pl": &z[3963],
9250 "starachowice.pl": &z[3964],
9251 "stargard.pl": &z[3965],
9252 "suwalki.pl": &z[3966],
9253 "swidnica.pl": &z[3967],
9254 "swiebodzin.pl": &z[3968],
9255 "swinoujscie.pl": &z[3969],
9256 "szczecin.pl": &z[3970],
9257 "szczytno.pl": &z[3971],
9258 "szkola.pl": &z[3972],
9259 "targi.pl": &z[3973],
9260 "tarnobrzeg.pl": &z[3974],
9261 "tgory.pl": &z[3975],
9262 "tm.pl": &z[3976],
9263 "torun.pl": &z[3977],
9264 "tourism.pl": &z[3978],
9265 "travel.pl": &z[3979],
9266 "turek.pl": &z[3980],
9267 "turystyka.pl": &z[3981],
9268 "tychy.pl": &z[3982],
9269 "ustka.pl": &z[3983],
9270 "walbrzych.pl": &z[3984],
9271 "warmia.pl": &z[3985],
9272 "warszawa.pl": &z[3986],
9273 "waw.pl": &z[3987],
9274 "wegrow.pl": &z[3988],
9275 "wielun.pl": &z[3989],
9276 "wlocl.pl": &z[3990],
9277 "wloclawek.pl": &z[3991],
9278 "wodzislaw.pl": &z[3992],
9279 "wolomin.pl": &z[3993],
9280 "wroc.pl": &z[3994],
9281 "wroclaw.pl": &z[3995],
9282 "zachpomor.pl": &z[3996],
9283 "zagan.pl": &z[3997],
9284 "zarow.pl": &z[3998],
9285 "zgora.pl": &z[3999],
9286 "zgorzelec.pl": &z[4000],
9287 "at.pn": &z[4001],
9288 "au.pn": &z[4002],
9289 "ca.pn": &z[4003],
9290 "ch.pn": &z[4004],
9291 "cn.pn": &z[4005],
9292 "co.pn": &z[4006],
9293 "de.pn": &z[4007],
9294 "edu.pn": &z[4008],
9295 "es.pn": &z[4009],
9296 "eu.pn": &z[4010],
9297 "fr.pn": &z[4011],
9298 "gov.pn": &z[4012],
9299 "in.pn": &z[4013],
9300 "it.pn": &z[4014],
9301 "jp.pn": &z[4015],
9302 "net.pn": &z[4016],
9303 "org.pn": &z[4017],
9304 "uk.pn": &z[4018],
9305 "us.pn": &z[4019],
9306 "ac.pr": &z[4020],
9307 "ag.pr": &z[4021],
9308 "ai.pr": &z[4022],
9309 "alumni.pr": &z[4023],
9310 "at.pr": &z[4024],
9311 "au.pr": &z[4025],
9312 "aw.pr": &z[4026],
9313 "bb.pr": &z[4027],
9314 "biz.pr": &z[4028],
9315 "bm.pr": &z[4029],
9316 "br.pr": &z[4030],
9317 "bs.pr": &z[4031],
9318 "ch.pr": &z[4032],
9319 "cl.pr": &z[4033],
9320 "cn.pr": &z[4034],
9321 "com.pr": &z[4035],
9322 "de.pr": &z[4036],
9323 "dm.pr": &z[4037],
9324 "do.pr": &z[4038],
9325 "edu.pr": &z[4039],
9326 "en.pr": &z[4040],
9327 "es.pr": &z[4041],
9328 "est.pr": &z[4042],
9329 "eu.pr": &z[4043],
9330 "exalumnos.pr": &z[4044],
9331 "fr.pr": &z[4045],
9332 "gd.pr": &z[4046],
9333 "gov.pr": &z[4047],
9334 "gp.pr": &z[4048],
9335 "ht.pr": &z[4049],
9336 "info.pr": &z[4050],
9337 "isla.pr": &z[4051],
9338 "it.pr": &z[4052],
9339 "jm.pr": &z[4053],
9340 "jp.pr": &z[4054],
9341 "ky.pr": &z[4055],
9342 "lc.pr": &z[4056],
9343 "ms.pr": &z[4057],
9344 "mx.pr": &z[4058],
9345 "name.pr": &z[4059],
9346 "net.pr": &z[4060],
9347 "nl.pr": &z[4061],
9348 "nom.pr": &z[4062],
9349 "org.pr": &z[4063],
9350 "pro.pr": &z[4064],
9351 "prof.pr": &z[4065],
9352 "tc.pr": &z[4066],
9353 "tt.pr": &z[4067],
9354 "uk.pr": &z[4068],
9355 "us.pr": &z[4069],
9356 "vg.pr": &z[4070],
9357 "vi.pr": &z[4071],
9358 "aaa.pro": &z[4072],
9359 "aca.pro": &z[4073],
9360 "acct.pro": &z[4074],
9361 "arc.pro": &z[4075],
9362 "avocat.pro": &z[4076],
9363 "bar.pro": &z[4077],
9364 "bus.pro": &z[4078],
9365 "cfp.pro": &z[4079],
9366 "chi.pro": &z[4080],
9367 "chiro.pro": &z[4081],
9368 "cpa.pro": &z[4082],
9369 "dds.pro": &z[4083],
9370 "den.pro": &z[4084],
9371 "dent.pro": &z[4085],
9372 "ed.pro": &z[4086],
9373 "eng.pro": &z[4087],
9374 "jur.pro": &z[4088],
9375 "law.pro": &z[4089],
9376 "med.pro": &z[4090],
9377 "min.pro": &z[4091],
9378 "nitr.pro": &z[4092],
9379 "nur.pro": &z[4093],
9380 "nurse.pro": &z[4094],
9381 "opt.pro": &z[4095],
9382 "pa.pro": &z[4096],
9383 "pha.pro": &z[4097],
9384 "pharma.pro": &z[4098],
9385 "pod.pro": &z[4099],
9386 "pr.pro": &z[4100],
9387 "prof.pro": &z[4101],
9388 "prx.pro": &z[4102],
9389 "pt.pro": &z[4103],
9390 "recht.pro": &z[4104],
9391 "rel.pro": &z[4105],
9392 "teach.pro": &z[4106],
9393 "vet.pro": &z[4107],
9394 "com.ps": &z[4108],
9395 "edu.ps": &z[4109],
9396 "gov.ps": &z[4110],
9397 "mobi.ps": &z[4111],
9398 "mun.ps": &z[4112],
9399 "net.ps": &z[4113],
9400 "org.ps": &z[4114],
9401 "plo.ps": &z[4115],
9402 "sch.ps": &z[4116],
9403 "co.pt": &z[4117],
9404 "com.pt": &z[4118],
9405 "edu.pt": &z[4119],
9406 "gov.pt": &z[4120],
9407 "int.pt": &z[4121],
9408 "net.pt": &z[4122],
9409 "nome.pt": &z[4123],
9410 "org.pt": &z[4124],
9411 "publ.pt": &z[4125],
9412 "belau.pw": &z[4126],
9413 "co.pw": &z[4127],
9414 "com.pw": &z[4128],
9415 "ed.pw": &z[4129],
9416 "edu.pw": &z[4130],
9417 "go.pw": &z[4131],
9418 "gov.pw": &z[4132],
9419 "ne.pw": &z[4133],
9420 "net.pw": &z[4134],
9421 "or.pw": &z[4135],
9422 "org.pw": &z[4136],
9423 "com.py": &z[4137],
9424 "coop.py": &z[4138],
9425 "edu.py": &z[4139],
9426 "gov.py": &z[4140],
9427 "mil.py": &z[4141],
9428 "net.py": &z[4142],
9429 "org.py": &z[4143],
9430 "una.py": &z[4144],
9431 "com.qa": &z[4145],
9432 "edu.qa": &z[4146],
9433 "gov.qa": &z[4147],
9434 "mil.qa": &z[4148],
9435 "name.qa": &z[4149],
9436 "net.qa": &z[4150],
9437 "org.qa": &z[4151],
9438 "sch.qa": &z[4152],
9439 "asso.re": &z[4153],
9440 "com.re": &z[4154],
9441 "nom.re": &z[4155],
9442 "arts.ro": &z[4156],
9443 "co.ro": &z[4157],
9444 "com.ro": &z[4158],
9445 "firm.ro": &z[4159],
9446 "info.ro": &z[4160],
9447 "ne.ro": &z[4161],
9448 "nom.ro": &z[4162],
9449 "nt.ro": &z[4163],
9450 "or.ro": &z[4164],
9451 "org.ro": &z[4165],
9452 "rec.ro": &z[4166],
9453 "ro.ro": &z[4167],
9454 "sa.ro": &z[4168],
9455 "srl.ro": &z[4169],
9456 "store.ro": &z[4170],
9457 "tm.ro": &z[4171],
9458 "www.ro": &z[4172],
9459 "ac.rs": &z[4173],
9460 "co.rs": &z[4174],
9461 "edu.rs": &z[4175],
9462 "gov.rs": &z[4176],
9463 "in.rs": &z[4177],
9464 "org.rs": &z[4178],
9465 "ac.ru": &z[4179],
9466 "adygeya.ru": &z[4180],
9467 "bashkiria.ru": &z[4181],
9468 "bir.ru": &z[4182],
9469 "cbg.ru": &z[4183],
9470 "com.ru": &z[4184],
9471 "dagestan.ru": &z[4185],
9472 "edu.ru": &z[4186],
9473 "gov.ru": &z[4187],
9474 "grozny.ru": &z[4188],
9475 "int.ru": &z[4189],
9476 "kalmykia.ru": &z[4190],
9477 "kustanai.ru": &z[4191],
9478 "marine.ru": &z[4192],
9479 "mil.ru": &z[4193],
9480 "mordovia.ru": &z[4194],
9481 "msk.ru": &z[4195],
9482 "mytis.ru": &z[4196],
9483 "nalchik.ru": &z[4197],
9484 "net.ru": &z[4198],
9485 "nov.ru": &z[4199],
9486 "org.ru": &z[4200],
9487 "pp.ru": &z[4201],
9488 "pyatigorsk.ru": &z[4202],
9489 "relarn.ru": &z[4203],
9490 "spb.ru": &z[4204],
9491 "vladikavkaz.ru": &z[4205],
9492 "vladimir.ru": &z[4206],
9493 "ac.rw": &z[4207],
9494 "co.rw": &z[4208],
9495 "com.rw": &z[4209],
9496 "edu.rw": &z[4210],
9497 "gouv.rw": &z[4211],
9498 "gov.rw": &z[4212],
9499 "int.rw": &z[4213],
9500 "mil.rw": &z[4214],
9501 "net.rw": &z[4215],
9502 "org.rw": &z[4216],
9503 "com.sa": &z[4217],
9504 "edu.sa": &z[4218],
9505 "gov.sa": &z[4219],
9506 "med.sa": &z[4220],
9507 "net.sa": &z[4221],
9508 "org.sa": &z[4222],
9509 "pub.sa": &z[4223],
9510 "sch.sa": &z[4224],
9511 "com.sb": &z[4225],
9512 "edu.sb": &z[4226],
9513 "gov.sb": &z[4227],
9514 "net.sb": &z[4228],
9515 "org.sb": &z[4229],
9516 "com.sc": &z[4230],
9517 "edu.sc": &z[4231],
9518 "gov.sc": &z[4232],
9519 "net.sc": &z[4233],
9520 "org.sc": &z[4234],
9521 "com.sd": &z[4235],
9522 "edu.sd": &z[4236],
9523 "gov.sd": &z[4237],
9524 "info.sd": &z[4238],
9525 "med.sd": &z[4239],
9526 "net.sd": &z[4240],
9527 "org.sd": &z[4241],
9528 "tv.sd": &z[4242],
9529 "a.se": &z[4243],
9530 "ac.se": &z[4244],
9531 "b.se": &z[4245],
9532 "bd.se": &z[4246],
9533 "c.se": &z[4247],
9534 "com.se": &z[4248],
9535 "d.se": &z[4249],
9536 "e.se": &z[4250],
9537 "f.se": &z[4251],
9538 "g.se": &z[4252],
9539 "h.se": &z[4253],
9540 "i.se": &z[4254],
9541 "k.se": &z[4255],
9542 "l.se": &z[4256],
9543 "m.se": &z[4257],
9544 "mil.se": &z[4258],
9545 "n.se": &z[4259],
9546 "o.se": &z[4260],
9547 "org.se": &z[4261],
9548 "p.se": &z[4262],
9549 "parti.se": &z[4263],
9550 "pp.se": &z[4264],
9551 "press.se": &z[4265],
9552 "r.se": &z[4266],
9553 "s.se": &z[4267],
9554 "t.se": &z[4268],
9555 "tm.se": &z[4269],
9556 "u.se": &z[4270],
9557 "w.se": &z[4271],
9558 "x.se": &z[4272],
9559 "y.se": &z[4273],
9560 "z.se": &z[4274],
9561 "com.sg": &z[4275],
9562 "edu.sg": &z[4276],
9563 "gov.sg": &z[4277],
9564 "net.sg": &z[4278],
9565 "org.sg": &z[4279],
9566 "per.sg": &z[4280],
9567 "co.sh": &z[4281],
9568 "com.sh": &z[4282],
9569 "edu.sh": &z[4283],
9570 "gov.sh": &z[4284],
9571 "net.sh": &z[4285],
9572 "nom.sh": &z[4286],
9573 "org.sh": &z[4287],
9574 "ae.si": &z[4288],
9575 "at.si": &z[4289],
9576 "cn.si": &z[4290],
9577 "co.si": &z[4291],
9578 "de.si": &z[4292],
9579 "uk.si": &z[4293],
9580 "us.si": &z[4294],
9581 "com.sl": &z[4295],
9582 "edu.sl": &z[4296],
9583 "gov.sl": &z[4297],
9584 "net.sl": &z[4298],
9585 "org.sl": &z[4299],
9586 "art.sn": &z[4300],
9587 "com.sn": &z[4301],
9588 "edu.sn": &z[4302],
9589 "gouv.sn": &z[4303],
9590 "org.sn": &z[4304],
9591 "perso.sn": &z[4305],
9592 "univ.sn": &z[4306],
9593 "com.so": &z[4307],
9594 "edu.so": &z[4308],
9595 "net.so": &z[4309],
9596 "org.so": &z[4310],
9597 "uber.space": &z[4311],
9598 "biz.ss": &z[4312],
9599 "com.ss": &z[4313],
9600 "edu.ss": &z[4314],
9601 "me.ss": &z[4315],
9602 "net.ss": &z[4316],
9603 "org.ss": &z[4317],
9604 "sch.ss": &z[4318],
9605 "co.st": &z[4319],
9606 "com.st": &z[4320],
9607 "consulado.st": &z[4321],
9608 "edu.st": &z[4322],
9609 "embaixada.st": &z[4323],
9610 "embaizada.st": &z[4324],
9611 "gov.st": &z[4325],
9612 "mil.st": &z[4326],
9613 "net.st": &z[4327],
9614 "org.st": &z[4328],
9615 "principe.st": &z[4329],
9616 "saotome.st": &z[4330],
9617 "store.st": &z[4331],
9618 "abkhazia.su": &z[4332],
9619 "adygeya.su": &z[4333],
9620 "aktyubinsk.su": &z[4334],
9621 "arkhangelsk.su": &z[4335],
9622 "armenia.su": &z[4336],
9623 "ashgabad.su": &z[4337],
9624 "azerbaijan.su": &z[4338],
9625 "balashov.su": &z[4339],
9626 "bashkiria.su": &z[4340],
9627 "bryansk.su": &z[4341],
9628 "bukhara.su": &z[4342],
9629 "chimkent.su": &z[4343],
9630 "dagestan.su": &z[4344],
9631 "east-kazakhstan.su": &z[4345],
9632 "exnet.su": &z[4346],
9633 "georgia.su": &z[4347],
9634 "grozny.su": &z[4348],
9635 "ivanovo.su": &z[4349],
9636 "jambyl.su": &z[4350],
9637 "kalmykia.su": &z[4351],
9638 "kaluga.su": &z[4352],
9639 "karacol.su": &z[4353],
9640 "karaganda.su": &z[4354],
9641 "karelia.su": &z[4355],
9642 "khakassia.su": &z[4356],
9643 "krasnodar.su": &z[4357],
9644 "kurgan.su": &z[4358],
9645 "kustanai.su": &z[4359],
9646 "lenug.su": &z[4360],
9647 "mangyshlak.su": &z[4361],
9648 "mordovia.su": &z[4362],
9649 "msk.su": &z[4363],
9650 "murmansk.su": &z[4364],
9651 "nalchik.su": &z[4365],
9652 "navoi.su": &z[4366],
9653 "north-kazakhstan.su": &z[4367],
9654 "nov.su": &z[4368],
9655 "obninsk.su": &z[4369],
9656 "penza.su": &z[4370],
9657 "pokrovsk.su": &z[4371],
9658 "sochi.su": &z[4372],
9659 "spb.su": &z[4373],
9660 "tashkent.su": &z[4374],
9661 "termez.su": &z[4375],
9662 "togliatti.su": &z[4376],
9663 "troitsk.su": &z[4377],
9664 "tselinograd.su": &z[4378],
9665 "tula.su": &z[4379],
9666 "tuva.su": &z[4380],
9667 "vladikavkaz.su": &z[4381],
9668 "vladimir.su": &z[4382],
9669 "vologda.su": &z[4383],
9670 "com.sv": &z[4384],
9671 "edu.sv": &z[4385],
9672 "gob.sv": &z[4386],
9673 "org.sv": &z[4387],
9674 "red.sv": &z[4388],
9675 "com.sy": &z[4389],
9676 "edu.sy": &z[4390],
9677 "gov.sy": &z[4391],
9678 "mil.sy": &z[4392],
9679 "net.sy": &z[4393],
9680 "org.sy": &z[4394],
9681 "ac.sz": &z[4395],
9682 "co.sz": &z[4396],
9683 "org.sz": &z[4397],
9684 "at.tc": &z[4398],
9685 "au.tc": &z[4399],
9686 "be.tc": &z[4400],
9687 "bg.tc": &z[4401],
9688 "biz.tc": &z[4402],
9689 "br.tc": &z[4403],
9690 "ch.tc": &z[4404],
9691 "com.tc": &z[4405],
9692 "cz.tc": &z[4406],
9693 "de.tc": &z[4407],
9694 "dk.tc": &z[4408],
9695 "edu.tc": &z[4409],
9696 "es.tc": &z[4410],
9697 "eu.tc": &z[4411],
9698 "hk.tc": &z[4412],
9699 "hu.tc": &z[4413],
9700 "ie.tc": &z[4414],
9701 "int.tc": &z[4415],
9702 "it.tc": &z[4416],
9703 "kr.tc": &z[4417],
9704 "mx.tc": &z[4418],
9705 "net.tc": &z[4419],
9706 "no.tc": &z[4420],
9707 "org.tc": &z[4421],
9708 "ph.tc": &z[4422],
9709 "pl.tc": &z[4423],
9710 "pro.tc": &z[4424],
9711 "ru.tc": &z[4425],
9712 "se.tc": &z[4426],
9713 "shop.tc": &z[4427],
9714 "th.tc": &z[4428],
9715 "ua.tc": &z[4429],
9716 "uk.tc": &z[4430],
9717 "us.tc": &z[4431],
9718 "com.td": &z[4432],
9719 "net.td": &z[4433],
9720 "org.td": &z[4434],
9721 "tourism.td": &z[4435],
9722 "at.tf": &z[4436],
9723 "bg.tf": &z[4437],
9724 "ca.tf": &z[4438],
9725 "ch.tf": &z[4439],
9726 "cz.tf": &z[4440],
9727 "de.tf": &z[4441],
9728 "edu.tf": &z[4442],
9729 "eu.tf": &z[4443],
9730 "int.tf": &z[4444],
9731 "net.tf": &z[4445],
9732 "pl.tf": &z[4446],
9733 "ru.tf": &z[4447],
9734 "sg.tf": &z[4448],
9735 "us.tf": &z[4449],
9736 "ac.th": &z[4450],
9737 "co.th": &z[4451],
9738 "go.th": &z[4452],
9739 "in.th": &z[4453],
9740 "mi.th": &z[4454],
9741 "net.th": &z[4455],
9742 "or.th": &z[4456],
9743 "ac.tj": &z[4457],
9744 "aero.tj": &z[4458],
9745 "biz.tj": &z[4459],
9746 "co.tj": &z[4460],
9747 "com.tj": &z[4461],
9748 "coop.tj": &z[4462],
9749 "dyn.tj": &z[4463],
9750 "edu.tj": &z[4464],
9751 "go.tj": &z[4465],
9752 "gov.tj": &z[4466],
9753 "info.tj": &z[4467],
9754 "int.tj": &z[4468],
9755 "mil.tj": &z[4469],
9756 "museum.tj": &z[4470],
9757 "my.tj": &z[4471],
9758 "name.tj": &z[4472],
9759 "net.tj": &z[4473],
9760 "org.tj": &z[4474],
9761 "per.tj": &z[4475],
9762 "pro.tj": &z[4476],
9763 "web.tj": &z[4477],
9764 "24.tl": &z[4478],
9765 "com.tl": &z[4479],
9766 "gov.tl": &z[4480],
9767 "in.tl": &z[4481],
9768 "na.tl": &z[4482],
9769 "net.tl": &z[4483],
9770 "org.tl": &z[4484],
9771 "co.tm": &z[4485],
9772 "com.tm": &z[4486],
9773 "edu.tm": &z[4487],
9774 "gov.tm": &z[4488],
9775 "mil.tm": &z[4489],
9776 "net.tm": &z[4490],
9777 "nom.tm": &z[4491],
9778 "org.tm": &z[4492],
9779 "agrinet.tn": &z[4493],
9780 "com.tn": &z[4494],
9781 "defense.tn": &z[4495],
9782 "edunet.tn": &z[4496],
9783 "ens.tn": &z[4497],
9784 "fin.tn": &z[4498],
9785 "gov.tn": &z[4499],
9786 "ind.tn": &z[4500],
9787 "info.tn": &z[4501],
9788 "intl.tn": &z[4502],
9789 "mincom.tn": &z[4503],
9790 "nat.tn": &z[4504],
9791 "net.tn": &z[4505],
9792 "org.tn": &z[4506],
9793 "perso.tn": &z[4507],
9794 "rnrt.tn": &z[4508],
9795 "rns.tn": &z[4509],
9796 "rnu.tn": &z[4510],
9797 "tourism.tn": &z[4511],
9798 "com.tp": &z[4512],
9799 "or.tp": &z[4513],
9800 "org.tp": &z[4514],
9801 "av.tr": &z[4515],
9802 "bbs.tr": &z[4516],
9803 "bel.tr": &z[4517],
9804 "biz.tr": &z[4518],
9805 "com.tr": &z[4519],
9806 "dr.tr": &z[4520],
9807 "edu.tr": &z[4521],
9808 "gen.tr": &z[4522],
9809 "gov.tr": &z[4523],
9810 "info.tr": &z[4524],
9811 "k12.tr": &z[4525],
9812 "mil.tr": &z[4526],
9813 "name.tr": &z[4527],
9814 "nc.tr": &z[4528],
9815 "net.tr": &z[4529],
9816 "org.tr": &z[4530],
9817 "pol.tr": &z[4531],
9818 "tel.tr": &z[4532],
9819 "tsk.tr": &z[4533],
9820 "tv.tr": &z[4534],
9821 "web.tr": &z[4535],
9822 "aero.tt": &z[4536],
9823 "at.tt": &z[4537],
9824 "au.tt": &z[4538],
9825 "be.tt": &z[4539],
9826 "biz.tt": &z[4540],
9827 "ca.tt": &z[4541],
9828 "cat.tt": &z[4542],
9829 "ch.tt": &z[4543],
9830 "co.tt": &z[4544],
9831 "com.tt": &z[4545],
9832 "coop.tt": &z[4546],
9833 "de.tt": &z[4547],
9834 "edu.tt": &z[4548],
9835 "es.tt": &z[4549],
9836 "eu.tt": &z[4550],
9837 "fr.tt": &z[4551],
9838 "gov.tt": &z[4552],
9839 "info.tt": &z[4553],
9840 "int.tt": &z[4554],
9841 "it.tt": &z[4555],
9842 "jobs.tt": &z[4556],
9843 "mobi.tt": &z[4557],
9844 "museum.tt": &z[4558],
9845 "name.tt": &z[4559],
9846 "net.tt": &z[4560],
9847 "nl.tt": &z[4561],
9848 "org.tt": &z[4562],
9849 "pro.tt": &z[4563],
9850 "tel.tt": &z[4564],
9851 "travel.tt": &z[4565],
9852 "uk.tt": &z[4566],
9853 "us.tt": &z[4567],
9854 "club.tw": &z[4568],
9855 "com.tw": &z[4569],
9856 "ebiz.tw": &z[4570],
9857 "edu.tw": &z[4571],
9858 "game.tw": &z[4572],
9859 "gov.tw": &z[4573],
9860 "idv.tw": &z[4574],
9861 "mil.tw": &z[4575],
9862 "net.tw": &z[4576],
9863 "org.tw": &z[4577],
9864 "xn--czrw28b.tw": &z[4578], // 商業.tw
9865 "xn--uc0atv.tw": &z[4579], // 組織.tw
9866 "xn--zf0ao64a.tw": &z[4580], // 網路.tw
9867 "ac.tz": &z[4581],
9868 "co.tz": &z[4582],
9869 "go.tz": &z[4583],
9870 "hotel.tz": &z[4584],
9871 "info.tz": &z[4585],
9872 "me.tz": &z[4586],
9873 "mil.tz": &z[4587],
9874 "mobi.tz": &z[4588],
9875 "ne.tz": &z[4589],
9876 "or.tz": &z[4590],
9877 "sc.tz": &z[4591],
9878 "tv.tz": &z[4592],
9879 "biz.ua": &z[4593],
9880 "cherkassy.ua": &z[4594],
9881 "cherkasy.ua": &z[4595],
9882 "chernigov.ua": &z[4596],
9883 "chernivtsi.ua": &z[4597],
9884 "chernovtsy.ua": &z[4598],
9885 "ck.ua": &z[4599],
9886 "cn.ua": &z[4600],
9887 "co.ua": &z[4601],
9888 "com.ua": &z[4602],
9889 "crimea.ua": &z[4603],
9890 "cv.ua": &z[4604],
9891 "dn.ua": &z[4605],
9892 "dnepropetrovsk.ua": &z[4606],
9893 "dnipropetrovsk.ua": &z[4607],
9894 "donetsk.ua": &z[4608],
9895 "dp.ua": &z[4609],
9896 "edu.ua": &z[4610],
9897 "gov.ua": &z[4611],
9898 "if.ua": &z[4612],
9899 "in.ua": &z[4613],
9900 "ivano-frankivsk.ua": &z[4614],
9901 "kh.ua": &z[4615],
9902 "kharkiv.ua": &z[4616],
9903 "kharkov.ua": &z[4617],
9904 "kherson.ua": &z[4618],
9905 "khmelnitskiy.ua": &z[4619],
9906 "kiev.ua": &z[4620],
9907 "kirovograd.ua": &z[4621],
9908 "km.ua": &z[4622],
9909 "kr.ua": &z[4623],
9910 "ks.ua": &z[4624],
9911 "kyiv.ua": &z[4625],
9912 "lg.ua": &z[4626],
9913 "lt.ua": &z[4627],
9914 "lugansk.ua": &z[4628],
9915 "lutsk.ua": &z[4629],
9916 "lviv.ua": &z[4630],
9917 "mk.ua": &z[4631],
9918 "net.ua": &z[4632],
9919 "nikolaev.ua": &z[4633],
9920 "od.ua": &z[4634],
9921 "odesa.ua": &z[4635],
9922 "odessa.ua": &z[4636],
9923 "org.ua": &z[4637],
9924 "pl.ua": &z[4638],
9925 "poltava.ua": &z[4639],
9926 "pp.ua": &z[4640],
9927 "rivne.ua": &z[4641],
9928 "rovno.ua": &z[4642],
9929 "rv.ua": &z[4643],
9930 "sebastopol.ua": &z[4644],
9931 "sm.ua": &z[4645],
9932 "sumy.ua": &z[4646],
9933 "te.ua": &z[4647],
9934 "ternopil.ua": &z[4648],
9935 "uz.ua": &z[4649],
9936 "uzhgorod.ua": &z[4650],
9937 "vinnica.ua": &z[4651],
9938 "vn.ua": &z[4652],
9939 "volyn.ua": &z[4653],
9940 "yalta.ua": &z[4654],
9941 "zaporizhzhe.ua": &z[4655],
9942 "zhitomir.ua": &z[4656],
9943 "zp.ua": &z[4657],
9944 "zt.ua": &z[4658],
9945 "ac.ug": &z[4659],
9946 "co.ug": &z[4660],
9947 "com.ug": &z[4661],
9948 "go.ug": &z[4662],
9949 "mil.ug": &z[4663],
9950 "ne.ug": &z[4664],
9951 "or.ug": &z[4665],
9952 "org.ug": &z[4666],
9953 "sc.ug": &z[4667],
9954 "ac.uk": &z[4668],
9955 "co.uk": &z[4669],
9956 "gov.uk": &z[4670],
9957 "ltd.uk": &z[4671],
9958 "me.uk": &z[4672],
9959 "mod.uk": &z[4673],
9960 "net.uk": &z[4674],
9961 "org.uk": &z[4675],
9962 "plc.uk": &z[4676],
9963 "sch.uk": &z[4677],
9964 "ak.us": &z[4678],
9965 "al.us": &z[4679],
9966 "ar.us": &z[4680],
9967 "as.us": &z[4681],
9968 "az.us": &z[4682],
9969 "ca.us": &z[4683],
9970 "co.us": &z[4684],
9971 "ct.us": &z[4685],
9972 "dc.us": &z[4686],
9973 "de.us": &z[4687],
9974 "dni.us": &z[4688],
9975 "fed.us": &z[4689],
9976 "fl.us": &z[4690],
9977 "ga.us": &z[4691],
9978 "gu.us": &z[4692],
9979 "hi.us": &z[4693],
9980 "ia.us": &z[4694],
9981 "id.us": &z[4695],
9982 "il.us": &z[4696],
9983 "in.us": &z[4697],
9984 "isa.us": &z[4698],
9985 "kids.us": &z[4699],
9986 "ks.us": &z[4700],
9987 "ky.us": &z[4701],
9988 "la.us": &z[4702],
9989 "ma.us": &z[4703],
9990 "md.us": &z[4704],
9991 "me.us": &z[4705],
9992 "mi.us": &z[4706],
9993 "mn.us": &z[4707],
9994 "mo.us": &z[4708],
9995 "ms.us": &z[4709],
9996 "mt.us": &z[4710],
9997 "nc.us": &z[4711],
9998 "nd.us": &z[4712],
9999 "ne.us": &z[4713],
10000 "nh.us": &z[4714],
10001 "nj.us": &z[4715],
10002 "nm.us": &z[4716],
10003 "nsn.us": &z[4717],
10004 "nv.us": &z[4718],
10005 "ny.us": &z[4719],
10006 "oh.us": &z[4720],
10007 "ok.us": &z[4721],
10008 "or.us": &z[4722],
10009 "pa.us": &z[4723],
10010 "pr.us": &z[4724],
10011 "ri.us": &z[4725],
10012 "sc.us": &z[4726],
10013 "sd.us": &z[4727],
10014 "tn.us": &z[4728],
10015 "tx.us": &z[4729],
10016 "ut.us": &z[4730],
10017 "va.us": &z[4731],
10018 "vi.us": &z[4732],
10019 "vt.us": &z[4733],
10020 "wa.us": &z[4734],
10021 "wi.us": &z[4735],
10022 "wv.us": &z[4736],
10023 "wy.us": &z[4737],
10024 "com.uy": &z[4738],
10025 "edu.uy": &z[4739],
10026 "gub.uy": &z[4740],
10027 "mil.uy": &z[4741],
10028 "net.uy": &z[4742],
10029 "org.uy": &z[4743],
10030 "ac.uz": &z[4744],
10031 "aero.uz": &z[4745],
10032 "biz.uz": &z[4746],
10033 "co.uz": &z[4747],
10034 "com.uz": &z[4748],
10035 "coop.uz": &z[4749],
10036 "edu.uz": &z[4750],
10037 "info.uz": &z[4751],
10038 "int.uz": &z[4752],
10039 "museum.uz": &z[4753],
10040 "name.uz": &z[4754],
10041 "net.uz": &z[4755],
10042 "org.uz": &z[4756],
10043 "pro.uz": &z[4757],
10044 "com.vc": &z[4758],
10045 "net.vc": &z[4759],
10046 "org.vc": &z[4760],
10047 "co.ve": &z[4761],
10048 "com.ve": &z[4762],
10049 "edu.ve": &z[4763],
10050 "gob.ve": &z[4764],
10051 "info.ve": &z[4765],
10052 "int.ve": &z[4766],
10053 "mil.ve": &z[4767],
10054 "net.ve": &z[4768],
10055 "org.ve": &z[4769],
10056 "tec.ve": &z[4770],
10057 "web.ve": &z[4771],
10058 "pro.vg": &z[4772],
10059 "biz.vi": &z[4773],
10060 "co.vi": &z[4774],
10061 "com.vi": &z[4775],
10062 "k12.vi": &z[4776],
10063 "net.vi": &z[4777],
10064 "org.vi": &z[4778],
10065 "ac.vn": &z[4779],
10066 "biz.vn": &z[4780],
10067 "com.vn": &z[4781],
10068 "edu.vn": &z[4782],
10069 "gov.vn": &z[4783],
10070 "health.vn": &z[4784],
10071 "info.vn": &z[4785],
10072 "int.vn": &z[4786],
10073 "name.vn": &z[4787],
10074 "net.vn": &z[4788],
10075 "org.vn": &z[4789],
10076 "pro.vn": &z[4790],
10077 "co.vu": &z[4791],
10078 "com.vu": &z[4792],
10079 "name.vu": &z[4793],
10080 "net.vu": &z[4794],
10081 "org.vu": &z[4795],
10082 "com.ws": &z[4796],
10083 "edu.ws": &z[4797],
10084 "gov.ws": &z[4798],
10085 "net.ws": &z[4799],
10086 "org.ws": &z[4800],
10087 "co.ye": &z[4801],
10088 "com.ye": &z[4802],
10089 "gov.ye": &z[4803],
10090 "ltd.ye": &z[4804],
10091 "me.ye": &z[4805],
10092 "net.ye": &z[4806],
10093 "org.ye": &z[4807],
10094 "plc.ye": &z[4808],
10095 "ac.yu": &z[4809],
10096 "cg.yu": &z[4810],
10097 "co.yu": &z[4811],
10098 "edu.yu": &z[4812],
10099 "gov.yu": &z[4813],
10100 "org.yu": &z[4814],
10101 "ac.za": &z[4815],
10102 "agric.za": &z[4816],
10103 "alt.za": &z[4817],
10104 "bourse.za": &z[4818],
10105 "city.za": &z[4819],
10106 "co.za": &z[4820],
10107 "cybernet.za": &z[4821],
10108 "db.za": &z[4822],
10109 "edu.za": &z[4823],
10110 "gov.za": &z[4824],
10111 "grondar.za": &z[4825],
10112 "iaccess.za": &z[4826],
10113 "imt.za": &z[4827],
10114 "inca.za": &z[4828],
10115 "landesign.za": &z[4829],
10116 "law.za": &z[4830],
10117 "mil.za": &z[4831],
10118 "net.za": &z[4832],
10119 "ngo.za": &z[4833],
10120 "nis.za": &z[4834],
10121 "nom.za": &z[4835],
10122 "olivetti.za": &z[4836],
10123 "org.za": &z[4837],
10124 "pix.za": &z[4838],
10125 "school.za": &z[4839],
10126 "tm.za": &z[4840],
10127 "web.za": &z[4841],
10128 "ac.zm": &z[4842],
10129 "co.zm": &z[4843],
10130 "com.zm": &z[4844],
10131 "edu.zm": &z[4845],
10132 "gov.zm": &z[4846],
10133 "net.zm": &z[4847],
10134 "org.zm": &z[4848],
10135 "sch.zm": &z[4849],
10136 "ac.zw": &z[4850],
10137 "co.zw": &z[4851],
10138 "com.zw": &z[4852],
10139 "org.zw": &z[4853],
10140 "001.xn--p1acf": &z[4854], // 001.рус
10141 "002.xn--p1acf": &z[4855], // 002.рус
10142 "003.xn--p1acf": &z[4856], // 003.рус
10143 "004.xn--p1acf": &z[4857], // 004.рус
10144 "005.xn--p1acf": &z[4858], // 005.рус
10145 "006.xn--p1acf": &z[4859], // 006.рус
10146 "007.xn--p1acf": &z[4860], // 007.рус
10147 "008.xn--p1acf": &z[4861], // 008.рус
10148 "009.xn--p1acf": &z[4862], // 009.рус
10149 "010.xn--p1acf": &z[4863], // 010.рус
10150 "011.xn--p1acf": &z[4864], // 011.рус
10151 "012.xn--p1acf": &z[4865], // 012.рус
10152 "013.xn--p1acf": &z[4866], // 013.рус
10153 "014.xn--p1acf": &z[4867], // 014.рус
10154 "015.xn--p1acf": &z[4868], // 015.рус
10155 "016.xn--p1acf": &z[4869], // 016.рус
10156 "017.xn--p1acf": &z[4870], // 017.рус
10157 "018.xn--p1acf": &z[4871], // 018.рус
10158 "019.xn--p1acf": &z[4872], // 019.рус
10159 "021.xn--p1acf": &z[4873], // 021.рус
10160 "022.xn--p1acf": &z[4874], // 022.рус
10161 "023.xn--p1acf": &z[4875], // 023.рус
10162 "024.xn--p1acf": &z[4876], // 024.рус
10163 "025.xn--p1acf": &z[4877], // 025.рус
10164 "026.xn--p1acf": &z[4878], // 026.рус
10165 "027.xn--p1acf": &z[4879], // 027.рус
10166 "028.xn--p1acf": &z[4880], // 028.рус
10167 "029.xn--p1acf": &z[4881], // 029.рус
10168 "030.xn--p1acf": &z[4882], // 030.рус
10169 "031.xn--p1acf": &z[4883], // 031.рус
10170 "032.xn--p1acf": &z[4884], // 032.рус
10171 "033.xn--p1acf": &z[4885], // 033.рус
10172 "034.xn--p1acf": &z[4886], // 034.рус
10173 "035.xn--p1acf": &z[4887], // 035.рус
10174 "036.xn--p1acf": &z[4888], // 036.рус
10175 "037.xn--p1acf": &z[4889], // 037.рус
10176 "038.xn--p1acf": &z[4890], // 038.рус
10177 "039.xn--p1acf": &z[4891], // 039.рус
10178 "040.xn--p1acf": &z[4892], // 040.рус
10179 "041.xn--p1acf": &z[4893], // 041.рус
10180 "042.xn--p1acf": &z[4894], // 042.рус
10181 "043.xn--p1acf": &z[4895], // 043.рус
10182 "044.xn--p1acf": &z[4896], // 044.рус
10183 "045.xn--p1acf": &z[4897], // 045.рус
10184 "046.xn--p1acf": &z[4898], // 046.рус
10185 "047.xn--p1acf": &z[4899], // 047.рус
10186 "048.xn--p1acf": &z[4900], // 048.рус
10187 "049.xn--p1acf": &z[4901], // 049.рус
10188 "050.xn--p1acf": &z[4902], // 050.рус
10189 "051.xn--p1acf": &z[4903], // 051.рус
10190 "052.xn--p1acf": &z[4904], // 052.рус
10191 "053.xn--p1acf": &z[4905], // 053.рус
10192 "054.xn--p1acf": &z[4906], // 054.рус
10193 "055.xn--p1acf": &z[4907], // 055.рус
10194 "056.xn--p1acf": &z[4908], // 056.рус
10195 "057.xn--p1acf": &z[4909], // 057.рус
10196 "058.xn--p1acf": &z[4910], // 058.рус
10197 "059.xn--p1acf": &z[4911], // 059.рус
10198 "060.xn--p1acf": &z[4912], // 060.рус
10199 "061.xn--p1acf": &z[4913], // 061.рус
10200 "062.xn--p1acf": &z[4914], // 062.рус
10201 "063.xn--p1acf": &z[4915], // 063.рус
10202 "064.xn--p1acf": &z[4916], // 064.рус
10203 "065.xn--p1acf": &z[4917], // 065.рус
10204 "066.xn--p1acf": &z[4918], // 066.рус
10205 "067.xn--p1acf": &z[4919], // 067.рус
10206 "068.xn--p1acf": &z[4920], // 068.рус
10207 "069.xn--p1acf": &z[4921], // 069.рус
10208 "070.xn--p1acf": &z[4922], // 070.рус
10209 "071.xn--p1acf": &z[4923], // 071.рус
10210 "072.xn--p1acf": &z[4924], // 072.рус
10211 "073.xn--p1acf": &z[4925], // 073.рус
10212 "074.xn--p1acf": &z[4926], // 074.рус
10213 "075.xn--p1acf": &z[4927], // 075.рус
10214 "076.xn--p1acf": &z[4928], // 076.рус
10215 "077.xn--p1acf": &z[4929], // 077.рус
10216 "078.xn--p1acf": &z[4930], // 078.рус
10217 "079.xn--p1acf": &z[4931], // 079.рус
10218 "083.xn--p1acf": &z[4932], // 083.рус
10219 "086.xn--p1acf": &z[4933], // 086.рус
10220 "087.xn--p1acf": &z[4934], // 087.рус
10221 "089.xn--p1acf": &z[4935], // 089.рус
10222 "094.xn--p1acf": &z[4936], // 094.рус
10223 "095.xn--p1acf": &z[4937], // 095.рус
10224 "xn--80aaac0ct.xn--p1acf": &z[4938], // абакан.рус
10225 "xn--80ae0bp.xn--p1acf": &z[4939], // авто.рус
10226 "xn--80awd.xn--p1acf": &z[4940], // алм.рус
10227 "xn--80aa1ag9a.xn--p1acf": &z[4941], // алтай.рус
10228 "xn--80aam8ar9di.xn--p1acf": &z[4942], // анадырь.рус
10229 "xn--80aaa5csg.xn--p1acf": &z[4943], // астана.рус
10230 "xn--80aaa6cmfh0a9d.xn--p1acf": &z[4944], // астрахань.рус
10231 "xn--80ag7c.xn--p1acf": &z[4945], // ахг.рус
10232 "xn--80ab2azb.xn--p1acf": &z[4946], // баку.рус
10233 "xn--80aab6birx.xn--p1acf": &z[4947], // барнаул.рус
10234 "xn--90ais.xn--p1acf": &z[4948], // бел.рус
10235 "xn--90aedc4atap.xn--p1acf": &z[4949], // белгород.рус
10236 "xn--90amc.xn--p1acf": &z[4950], // биз.рус
10237 "xn--80abamkjb7bdt.xn--p1acf": &z[4951], // биробиджан.рус
10238 "xn--90aiiib5f.xn--p1acf": &z[4952], // бишкек.рус
10239 "xn--80abedla9acxg1b7f.xn--p1acf": &z[4953], // благовещенск.рус
10240 "xn--90aayernio.xn--p1acf": &z[4954], // бобруйск.рус
10241 "xn--90ai6aff.xn--p1acf": &z[4955], // брест.рус
10242 "xn--90asilg6f.xn--p1acf": &z[4956], // брянск.рус
10243 "xn--90aoxid7ec.xn--p1acf": &z[4957], // бурятия.рус
10244 "xn--b1aadecsaihi0amca3a.xn--p1acf": &z[4958], // великийновгород.рус
10245 "xn--b1amjiu8dp.xn--p1acf": &z[4959], // вильнюс.рус
10246 "xn--90abjlm5be.xn--p1acf": &z[4960], // витебск.рус
10247 "xn--80adbhunc2aa3al.xn--p1acf": &z[4961], // владивосток.рус
10248 "xn--80aaafckyesce.xn--p1acf": &z[4962], // владикавказ.рус
10249 "xn--80adhqaok7a.xn--p1acf": &z[4963], // владимир.рус
10250 "xn--80add5ao.xn--p1acf": &z[4964], // волга.рус
10251 "xn--80addag2buct.xn--p1acf": &z[4965], // волгоград.рус
10252 "xn--80adde7arb.xn--p1acf": &z[4966], // вологда.рус
10253 "xn--b1agd0aean.xn--p1acf": &z[4967], // воронеж.рус
10254 "xn--c1aescj1g.xn--p1acf": &z[4968], // гомель.рус
10255 "xn--c1ac1acci.xn--p1acf": &z[4969], // гродно.рус
10256 "xn--c1aigpdl4f.xn--p1acf": &z[4970], // грозный.рус
10257 "xn--e1aky.xn--p1acf": &z[4971], // ект.рус
10258 "xn--80adia6bo.xn--p1acf": &z[4972], // ереван.рус
10259 "xn--80adbv1agb.xn--p1acf": &z[4973], // иваново.рус
10260 "xn--b1afchn5b.xn--p1acf": &z[4974], // ижевск.рус
10261 "xn--h1aeawgfg.xn--p1acf": &z[4975], // иркутск.рус
10262 "xn--80aauks4g.xn--p1acf": &z[4976], // казань.рус
10263 "xn--80aaifraljtb8a.xn--p1acf": &z[4977], // калининград.рус
10264 "xn--80aai0ag2c.xn--p1acf": &z[4978], // калуга.рус
10265 "xn--b1afaslnbn.xn--p1acf": &z[4979], // кемерово.рус
10266 "xn--b1afih.xn--p1acf": &z[4980], // киев.рус
10267 "xn--b1alfrj.xn--p1acf": &z[4981], // киров.рус
10268 "xn--b1afiaiu9e.xn--p1acf": &z[4982], // кишинев.рус
10269 "xn--j1aef.xn--p1acf": &z[4983], // ком.рус
10270 "xn--h1adgh.xn--p1acf": &z[4984], // коми.рус
10271 "xn--80atghalgi.xn--p1acf": &z[4985], // кострома.рус
10272 "xn--80aalwqglfe.xn--p1acf": &z[4986], // краснодар.рус
10273 "xn--80atblfjdfd2l.xn--p1acf": &z[4987], // красноярск.рус
10274 "xn--j1ael8b.xn--p1acf": &z[4988], // крым.рус
10275 "xn--80afuomr.xn--p1acf": &z[4989], // курган.рус
10276 "xn--j1aarei.xn--p1acf": &z[4990], // курск.рус
10277 "xn--g1afe6db.xn--p1acf": &z[4991], // кызыл.рус
10278 "xn--e1afhbv7b.xn--p1acf": &z[4992], // липецк.рус
10279 "xn--80aaakg8bm.xn--p1acf": &z[4993], // магадан.рус
10280 "xn--80aai8a2a.xn--p1acf": &z[4994], // магас.рус
10281 "xn--80asdfng.xn--p1acf": &z[4995], // майкоп.рус
10282 "xn--80aqdibz7g.xn--p1acf": &z[4996], // марийэл.рус
10283 "xn--80aqjbv3f.xn--p1acf": &z[4997], // мариэл.рус
10284 "xn--80aaaa2chc7eta.xn--p1acf": &z[4998], // махачкала.рус
10285 "xn--d1abu.xn--p1acf": &z[4999], // мед.рус
10286 "xn--h1aeefu.xn--p1acf": &z[5000], // минск.рус
10287 "xn--h1ahn.xn--p1acf": &z[5001], // мир.рус
10288 "xn--b1abpmcm0l.xn--p1acf": &z[5002], // могилёв.рус
10289 "xn--j1adp.xn--p1acf": &z[5003], // мск.рус
10290 "xn--80aueagpkl.xn--p1acf": &z[5004], // мурманск.рус
10291 "xn--80aqgci6d8a.xn--p1acf": &z[5005], // нальчик.рус
10292 "xn----7sbb1ccbue7h4a.xn--p1acf": &z[5006], // нарьян-мар.рус
10293 "xn--b1avn.xn--p1acf": &z[5007], // нвс.рус
10294 "xn--m1aa.xn--p1acf": &z[5008], // нн.рус
10295 "xn--90absbknhbvge.xn--p1acf": &z[5009], // новосибирск.рус
10296 "xn--j1adfn.xn--p1acf": &z[5010], // омск.рус
10297 "xn--c1avg.xn--p1acf": &z[5011], // орг.рус
10298 "xn--90aee6admdx.xn--p1acf": &z[5012], // оренбург.рус
10299 "xn--k1afg2e.xn--p1acf": &z[5013], // орёл.рус
10300 "xn--80ajgxi.xn--p1acf": &z[5014], // пенза.рус
10301 "xn--e1aohf5d.xn--p1acf": &z[5015], // пермь.рус
10302 "xn--80aegbkvxddlre.xn--p1acf": &z[5016], // петрозаводск.рус
10303 "xn--b1apmck.xn--p1acf": &z[5017], // псков.рус
10304 "xn--c1ajhpcjhd0j.xn--p1acf": &z[5018], // пятигорск.рус
10305 "xn--80afo5a.xn--p1acf": &z[5019], // рига.рус
10306 "xn-----7kcgn5cdbagnnnx.xn--p1acf": &z[5020], // ростов-на-дону.рус
10307 "xn--b1a1ade.xn--p1acf": &z[5021], // рств.рус
10308 "xn--80antj7do.xn--p1acf": &z[5022], // рязань.рус
10309 "xn--80aamc3a6ac9a.xn--p1acf": &z[5023], // салехард.рус
10310 "xn--80aaa0cvac.xn--p1acf": &z[5024], // самара.рус
10311 "xn--80aa4alnee.xn--p1acf": &z[5025], // саранск.рус
10312 "xn--80aag1ciek.xn--p1acf": &z[5026], // саратов.рус
10313 "xn--80adi0aoagldk8i.xn--p1acf": &z[5027], // севастополь.рус
10314 "xn--90anb6ab4e.xn--p1acf": &z[5028], // сибирь.рус
10315 "xn--e1afkclaggf6a2g.xn--p1acf": &z[5029], // симферополь.рус
10316 "xn--e1akbdhdtf.xn--p1acf": &z[5030], // смоленск.рус
10317 "xn--h1aliz.xn--p1acf": &z[5031], // сочи.рус
10318 "xn--90a1af.xn--p1acf": &z[5032], // спб.рус
10319 "xn--80ae1alafffj1i.xn--p1acf": &z[5033], // ставрополь.рус
10320 "xn--80aqialz.xn--p1acf": &z[5034], // таллин.рус
10321 "xn--80acd2blu.xn--p1acf": &z[5035], // тамбов.рус
10322 "xn--80akonve2b.xn--p1acf": &z[5036], // ташкент.рус
10323 "xn--b1ag7af7c.xn--p1acf": &z[5037], // тверь.рус
10324 "xn--j1adfnc.xn--p1acf": &z[5038], // томск.рус
10325 "xn--80avue.xn--p1acf": &z[5039], // тула.рус
10326 "xn--p1add.xn--p1acf": &z[5040], // тур.рус
10327 "xn--e1aner7ci.xn--p1acf": &z[5041], // тюмень.рус
10328 "xn--b1aqbiftj7e1a.xn--p1acf": &z[5042], // ульяновск.рус
10329 "xn--80a1bd.xn--p1acf": &z[5043], // уфа.рус
10330 "xn--80aacf4bwnk3a.xn--p1acf": &z[5044], // хабаровск.рус
10331 "xn--80ablvtof7b4b.xn--p1acf": &z[5045], // чебоксары.рус
10332 "xn--90ahkico2a6b9d.xn--p1acf": &z[5046], // челябинск.рус
10333 "xn--e1aaob1aia6b.xn--p1acf": &z[5047], // черкесск.рус
10334 "xn--80ap4as.xn--p1acf": &z[5048], // чита.рус
10335 "xn--80apizf6d.xn--p1acf": &z[5049], // элиста.рус
10336 "xn--80af3b0c.xn--p1acf": &z[5050], // югра.рус
10337 "xn--41a.xn--p1acf": &z[5051], // я.рус
10338 "xn--j1aaude4e.xn--p1acf": &z[5052], // якутск.рус
10339 "xn--80aezclli6gta.xn--p1acf": &z[5053], // ярославль.рус
10340 "xn--j1aef.xn--p1ai": &z[5054], // ком.рф
10341 "xn--e1apq.xn--p1ai": &z[5055], // нет.рф
10342 "xn--c1avg.xn--p1ai": &z[5056], // орг.рф
10343 "xn--o-btb9b.xn--90a3ac": &z[5057], // oбр.срб
10344 "xn--o-htb.xn--90a3ac": &z[5058], // oд.срб
10345 "xn--80au.xn--90a3ac": &z[5059], // ак.срб
10346 "xn--o1ac.xn--90a3ac": &z[5060], // пр.срб
10347 "xn--o1ach.xn--90a3ac": &z[5061], // упр.срб
10348 "xn--fhbed7t1n.xn--mgbbh1a71e": &z[5062], // كمپنی.بھارت
10349 "xn--i1b1b4ch5i.xn--h2brj9c": &z[5063], // कंपनी.भारत
10350 "xn--p5b2bfp1g0b0b.xn--45brj9c": &z[5064], // কম্পেনি.ভারত
10351 "xn--p5b2bfp5fh3fra.xn--45brj9c": &z[5065], // কোম্পানি.ভারত
10352 "xn--d9b2bf3g1k.xn--s9brj9c": &z[5066], // ਕੰਪਨੀ.ਭਾਰਤ
10353 "xn--hdc1b4ch5i.xn--gecrj9c": &z[5067], // કંપની.ભારત
10354 "xn--vlccpku2dp3h.xn--xkc2dl3a5ee0h": &z[5068], // நிறுவனம்.இந்தியா
10355 "xn--12co0c3b4eva.xn--o3cw4h": &z[5069], // ธุรกิจ.ไทย
10356 "xn--gmqw5a.xn--j6w193g": &z[5070], // 個人.香港
10357 "xn--55qx5d.xn--j6w193g": &z[5071], // 公司.香港
10358 "xn--mxtq1m.xn--j6w193g": &z[5072], // 政府.香港
10359 "xn--wcvs22d.xn--j6w193g": &z[5073], // 教育.香港
10360 "xn--uc0atv.xn--j6w193g": &z[5074], // 組織.香港
10361 "xn--od0alg.xn--j6w193g": &z[5075], // 網絡.香港
10362 "lda.co.ao": &z[5076],
10363 "sa.co.ao": &z[5077],
10364 "esc.edu.ar": &z[5078],
10365 "act.edu.au": &z[5079],
10366 "nsw.edu.au": &z[5080],
10367 "nt.edu.au": &z[5081],
10368 "qld.edu.au": &z[5082],
10369 "sa.edu.au": &z[5083],
10370 "tas.edu.au": &z[5084],
10371 "vic.edu.au": &z[5085],
10372 "wa.edu.au": &z[5086],
10373 "fed.rep.br": &z[5087],
10374 "wireless.keyword.cn": &z[5088],
10375 "ltd.co.im": &z[5089],
10376 "plc.co.im": &z[5090],
10377 "lg.gov.ng": &z[5091],
10378 "co.net.nz": &z[5092],
10379 "al.eu.org": &z[5093],
10380 "asso.eu.org": &z[5094],
10381 "at.eu.org": &z[5095],
10382 "au.eu.org": &z[5096],
10383 "be.eu.org": &z[5097],
10384 "bg.eu.org": &z[5098],
10385 "ca.eu.org": &z[5099],
10386 "cd.eu.org": &z[5100],
10387 "ch.eu.org": &z[5101],
10388 "cn.eu.org": &z[5102],
10389 "cy.eu.org": &z[5103],
10390 "cz.eu.org": &z[5104],
10391 "de.eu.org": &z[5105],
10392 "dk.eu.org": &z[5106],
10393 "edu.eu.org": &z[5107],
10394 "ee.eu.org": &z[5108],
10395 "es.eu.org": &z[5109],
10396 "fi.eu.org": &z[5110],
10397 "fr.eu.org": &z[5111],
10398 "gr.eu.org": &z[5112],
10399 "hr.eu.org": &z[5113],
10400 "hu.eu.org": &z[5114],
10401 "ie.eu.org": &z[5115],
10402 "il.eu.org": &z[5116],
10403 "in.eu.org": &z[5117],
10404 "int.eu.org": &z[5118],
10405 "is.eu.org": &z[5119],
10406 "it.eu.org": &z[5120],
10407 "jp.eu.org": &z[5121],
10408 "kr.eu.org": &z[5122],
10409 "lt.eu.org": &z[5123],
10410 "lu.eu.org": &z[5124],
10411 "lv.eu.org": &z[5125],
10412 "me.eu.org": &z[5126],
10413 "mk.eu.org": &z[5127],
10414 "mt.eu.org": &z[5128],
10415 "my.eu.org": &z[5129],
10416 "net.eu.org": &z[5130],
10417 "ng.eu.org": &z[5131],
10418 "nl.eu.org": &z[5132],
10419 "no.eu.org": &z[5133],
10420 "nz.eu.org": &z[5134],
10421 "pl.eu.org": &z[5135],
10422 "pt.eu.org": &z[5136],
10423 "ro.eu.org": &z[5137],
10424 "ru.eu.org": &z[5138],
10425 "se.eu.org": &z[5139],
10426 "si.eu.org": &z[5140],
10427 "sk.eu.org": &z[5141],
10428 "tr.eu.org": &z[5142],
10429 "uk.eu.org": &z[5143],
10430 "us.eu.org": &z[5144],
10431 "co.at.pn": &z[5145],
10432 "com.au.pn": &z[5146],
10433 "co.uk.pn": &z[5147],
10434 "co.at.tc": &z[5148],
10435 "com.au.tc": &z[5149],
10436 "co.uk.tc": &z[5150],
10437 "me.uk.tc": &z[5151],
10438 "org.uk.tc": &z[5152],
10439 "co.at.tt": &z[5153],
10440 "com.au.tt": &z[5154],
10441 "co.uk.tt": &z[5155],
10442 "me.uk.tt": &z[5156],
10443 "org.uk.tt": &z[5157],
10444 "barking-dagenham.sch.uk": &z[5158],
10445 "barnet.sch.uk": &z[5159],
10446 "barnsley.sch.uk": &z[5160],
10447 "bathnes.sch.uk": &z[5161],
10448 "beds.sch.uk": &z[5162],
10449 "bexley.sch.uk": &z[5163],
10450 "bham.sch.uk": &z[5164],
10451 "blackburn.sch.uk": &z[5165],
10452 "blackpool.sch.uk": &z[5166],
10453 "bolton.sch.uk": &z[5167],
10454 "bournemouth.sch.uk": &z[5168],
10455 "bracknell-forest.sch.uk": &z[5169],
10456 "bradford.sch.uk": &z[5170],
10457 "brent.sch.uk": &z[5171],
10458 "doncaster.sch.uk": &z[5172],
10459 "bg.ac.yu": &z[5173],
10460 "ecape.school.za": &z[5174],
10461 "fs.school.za": &z[5175],
10462 "gp.school.za": &z[5176],
10463 "kzn.school.za": &z[5177],
10464 "lp.school.za": &z[5178],
10465 "mpm.school.za": &z[5179],
10466 "ncape.school.za": &z[5180],
10467 "nw.school.za": &z[5181],
10468 "wcape.school.za": &z[5182],
1044510469 }
20222022 agr.br
20232023 am.br
20242024 aparecida.br
2025 app.br
20252026 arq.br
20262027 art.br
20272028 ato.br
20282029 b.br
20292030 belem.br
20302031 bhz.br
2032 bib.br
20312033 bio.br
20322034 blog.br
20332035 bmd.br
20402042 cnt.br
20412043 com.br
20422044 coop.br
2045 coz.br
20432046 curitiba.br
2047 des.br
2048 det.br
2049 dev.br
20442050 ecn.br
20452051 eco.br
20462052 edu.br
20472053 emp.br
2054 enf.br
20482055 eng.br
20492056 esp.br
20502057 etc.br
20592066 foz.br
20602067 fst.br
20612068 g12.br
2069 geo.br
20622070 ggf.br
20632071 gov.br
20642072 gru.br
20692077 jor.br
20702078 jus.br
20712079 lel.br
2080 log.br
20722081 macapa.br
20732082 maceio.br
20742083 manaus.br
20972106 rio.br
20982107 salvador.br
20992108 sec3.br
2109 seg.br
21002110 sjc.br
21012111 slg.br
21022112 srv.br
21032113 taxi.br
2114 tec.br
21042115 teo.br
21052116 tmp.br
21062117 trd.br
22692280 sa.com
22702281 se.com
22712282 uk.com
2283 ukots.com
22722284 us.com
22732285 uy.com
22742286 za.com
33313343 gov.ls
33323344 net.ls
33333345 org.ls
3334 parliament.ls
3346 sc.ls
33353347 gov.lt
33363348 asn.lv
33373349 com.lv
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": false,
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 }