forked from zonedb/zonedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zones.go
9976 lines (9961 loc) · 862 KB
/
zones.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Automatically generated
package zonedb
func init() {
initZones() // Separate function to report allocs in initialization
}
func initZones() {
z = y
}
// Type s is an alias for []string to generate smaller source code
type s []string
// Constants to generate smaller source code
const (
t = true
f = false
e = ""
)
// Nil variables to generate smaller source code
var (
n []string // == nil
x []Zone // nil (no subdomains)
r *Zone // nil (root zone for TLDs)
)
// Tags are stored in a single integer as a bit field.
type Tags uint32
// Tag values corresponding to bit shifts (1 << iota)
const (
TagAdult = 1
TagBrand = 2
TagCity = 4
TagClosed = 8
TagCommunity = 16
TagCountry = 32
TagGeneric = 64
TagGeo = 128
TagInfrastructure = 256
TagPrivate = 512
TagRegion = 1024
TagRetired = 2048
TagSponsored = 4096
TagWithdrawn = 8192
numTags = 14
)
// TagStrings maps integer tag values to strings.
var TagStrings = map[Tags]string{
TagAdult: "adult",
TagBrand: "brand",
TagCity: "city",
TagClosed: "closed",
TagCommunity: "community",
TagCountry: "country",
TagGeneric: "generic",
TagGeo: "geo",
TagInfrastructure: "infrastructure",
TagPrivate: "private",
TagRegion: "region",
TagRetired: "retired",
TagSponsored: "sponsored",
TagWithdrawn: "withdrawn",
}
// TagValues maps tag names to integer values.
var TagValues = map[string]Tags{
"adult": TagAdult,
"brand": TagBrand,
"city": TagCity,
"closed": TagClosed,
"community": TagCommunity,
"country": TagCountry,
"generic": TagGeneric,
"geo": TagGeo,
"infrastructure": TagInfrastructure,
"private": TagPrivate,
"region": TagRegion,
"retired": TagRetired,
"sponsored": TagSponsored,
"withdrawn": TagWithdrawn,
}
// Zones is a slice of all Zones in the database.
var Zones = z[:]
// TLDs is a slice of all top-level domain Zones.
var TLDs = z[:1750]
// z is a static array of Zones.
// Other global variables have pointers into this array.
var z [4936]Zone
// y and z are separated to fix circular references.
var y = [4936]Zone{
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"ac", r, z[1750:1755], s{"a0.nic.ac", "a2.nic.ac", "b0.nic.ac", "c0.nic.ac", "ns-a1.ac", "ns-a3.ac"}, n, n, "whois.nic.ac", e, "http://nic.ac", 0xa0, t},
{"academy", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.academy", e, e, 0x40, t},
{"accenture", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"acer", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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, f},
{"active", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"ad", r, z[1755:1756], s{"ad.cctld.authdns.ripe.net", "ad.ns.nic.es", "dnsc.ad", "dnsm.ad", "ns-ext.isc.org", "ns3.nic.fr"}, n, n, e, e, "http://www.nic.ad/", 0xe0, t},
{"adac", r, x, s{"a.nic.adac", "b.nic.adac", "c.nic.adac", "d.nic.adac"}, n, n, "whois.nic.adac", e, "https://newgtlds.icann.org/", 0x42, t},
{"ads", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
{"adult", r, x, s{"a0.nic.adult", "a2.nic.adult", "b0.nic.adult", "b2.nic.adult", "c0.nic.adult", "d0.nic.adult"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x41, t},
{"ae", r, z[1756:1765], s{"ns1.aedns.ae", "ns2.aedns.ae", "nsext-pch.aedns.ae", "sec3.apnic.net", "sns-pb.isc.org"}, n, n, "whois.aeda.net.ae", e, "http://www.nic.ae/", 0xa0, t},
{"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},
{"aero", r, z[1765:1768], 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},
{"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},
{"af", r, z[1768:1778], s{"ns.anycast.nic.af", "ns.cocca.fr", "ns.coccaregistry.org"}, n, n, "whois.nic.af", e, "http://www.nic.af/", 0xa0, f},
{"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},
{"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},
{"africa", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2.dns.business"}, n, s{"Africa"}, "africa-whois.registry.net.za", e, "https://newgtlds.icann.org/", 0xc0, f},
{"africamagic", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"ag", r, z[1778:1784], 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},
{"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},
{"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},
{"ai", r, z[1784:1788], s{"ns.cocca.fr", "pch.whois.ai"}, n, n, "whois.nic.ai", e, "http://nic.com.ai", 0xa0, f},
{"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},
{"aigo", r, x, s{"a0.nic.aigo", "a2.nic.aigo", "b0.nic.aigo", "c0.nic.aigo"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"airtel", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.airtel", e, "https://newgtlds.icann.org/", 0x42, f},
{"akdn", r, x, s{"a0.nic.akdn", "a2.nic.akdn", "b0.nic.akdn", "c0.nic.akdn"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"al", r, z[1788:1798], s{"munnari.oz.au", "ns1.nic.al", "nsx.nic.al", "rip.psg.com"}, n, n, e, "http://www.akep.al/sq/kerkoni-domain", "http://www.ert.gov.al/ert_eng/domain.html", 0xa0, f},
{"alcon", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"alfaromeo", r, x, s{"a0.nic.alfaromeo", "a2.nic.alfaromeo", "b0.nic.alfaromeo", "c0.nic.alfaromeo"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"alibaba", r, x, s{"a0.nic.alibaba", "a2.nic.alibaba", "b0.nic.alibaba", "c0.nic.alibaba"}, n, n, "whois.nic.alibaba", e, "https://newgtlds.icann.org/", 0x42, f},
{"alipay", r, x, s{"a0.nic.alipay", "a2.nic.alipay", "b0.nic.alipay", "c0.nic.alipay"}, n, n, "whois.nic.alipay", e, "https://newgtlds.icann.org/", 0x42, f},
{"allfinanz", r, x, s{"a.nic.allfinanz", "b.nic.allfinanz", "c.nic.allfinanz", "d.nic.allfinanz"}, n, n, "whois.nic.allfinanz", e, "https://newgtlds.icann.org/", 0x42, f},
{"allfinanzberater", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"allfinanzberatung", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"allstate", r, x, s{"a0.nic.allstate", "a2.nic.allstate", "b0.nic.allstate", "c0.nic.allstate"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"ally", r, x, s{"a0.nic.ally", "a2.nic.ally", "b0.nic.ally", "c0.nic.ally"}, n, n, "whois.nic.ally", e, "https://newgtlds.icann.org/", 0x42, f},
{"alsace", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, s{"FR-A"}, "whois-alsace.nic.fr", e, "https://newgtlds.icann.org/", 0x4c0, f},
{"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},
{"am", r, z[1798:1805], s{"fork.sth.dnsnode.net", "ns-cdn.amnic.net", "ns-pch.amnic.net", "ns-pri.nic.am", "sns-pb.isc.org"}, n, n, "whois.amnic.net", e, "https://www.amnic.net/", 0xa0, t},
{"amazon", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"amp", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"amsterdam", r, x, s{"ns1.nic.amsterdam", "ns2.nic.amsterdam", "ns3.nic.amsterdam", "sns-pb.isc.org"}, n, s{"Amsterdam", "NL-NH"}, "whois.nic.amsterdam", e, "http://nic.amsterdam/", 0xc4, f},
{"an", r, z[1805:1809], n, n, n, e, e, "http://www.una.an/an_domreg/", 0x8a8, f},
{"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},
{"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},
{"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},
{"ansons", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"anthem", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"antivirus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"anz", r, x, s{"a.nic.anz", "b.nic.anz", "c.nic.anz", "d.nic.anz"}, n, n, "whois.nic.anz", e, "https://newgtlds.icann.org/", 0x42, f},
{"ao", r, z[1809:1815], s{"ao01.dns.pt", "ao03.dns.pt", "auth02.ns.uu.net", "ns-ext.isc.org", "ns02.dns.ao", "sns-pb.isc.org"}, n, n, e, e, "http://www.dns.ao/", 0xa0, f},
{"aol", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.aol", e, "https://newgtlds.icann.org/", 0x42, f},
{"apartments", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.apartments", e, "https://newgtlds.icann.org/", 0x40, t},
{"app", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
{"apple", r, x, s{"a0.nic.apple", "a2.nic.apple", "b0.nic.apple", "c0.nic.apple"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"aq", r, z[1815:1816], s{"a.aq.dyntld.net", "b.aq.dyntld.net", "fork.sth.dnsnode.net", "ns99.dns.net.nz"}, n, n, e, e, "http://www.gobin.info/domainname/aq.txt", 0xa0, f},
{"aquarelle", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois-aquarelle.nic.fr", e, "https://newgtlds.icann.org/", 0x42, t},
{"aquitaine", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"ar", r, z[1816:1825], s{"a.dns.ar", "ar.cctld.authdns.ripe.net", "b.dns.ar", "c.dns.ar", "e.dns.ar", "ns2.switch.ch"}, n, n, "whois.nic.ar", "http://www.nic.ar/", "http://www.nic.ar/", 0xa8, t},
{"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},
{"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},
{"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},
{"architect", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"arpa", r, z[1825:1831], 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},
{"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},
{"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},
{"as", r, x, s{"c.ci-servers.net", "ns99.dns.net.nz", "pch.nic.as", "tld.gdns.net"}, n, n, "whois.nic.as", e, "http://nic.as/", 0xe0, t},
{"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},
{"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},
{"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},
{"astrium", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"at", r, z[1831:1836], 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},
{"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},
{"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},
{"au", r, z[1836:1856], s{"a.au", "b.au", "c.au", "d.au", "q.au", "r.au", "s.au", "t.au", "u.au", "v.au"}, n, n, "whois.auda.org.au", e, "http://www.auda.org.au/", 0xa8, f},
{"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},
{"audi", r, x, s{"a0.nic.audi", "a2.nic.audi", "b0.nic.audi", "c0.nic.audi"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
{"audible", r, x, s{"dns1.nic.audible", "dns2.nic.audible", "dns3.nic.audible", "dns4.nic.audible", "ns4.dns.nic.audible", "ns5.dns.nic.audible", "ns6.dns.nic.audible"}, n, n, "whois.nic.audible", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"author", r, x, s{"dns1.nic.author", "dns2.nic.author", "dns3.nic.author", "dns4.nic.author", "ns4.dns.nic.author", "ns5.dns.nic.author", "ns6.dns.nic.author"}, n, n, "whois.nic.author", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"autoinsurance", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
{"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},
{"avery", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"avianca", r, x, s{"a0.nic.avianca", "a2.nic.avianca", "b0.nic.avianca", "c0.nic.avianca"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"aw", r, z[1856:1857], s{"aw01.setarnet.aw", "aw02.setarnet.aw", "ns1.dns.aw", "ns3.dns.aw", "sns-pb.isc.org"}, n, n, "whois.nic.aw", e, "http://www.setarnet.aw/", 0xa0, f},
{"aws", r, x, s{"ns1.dns.nic.aws", "ns2.dns.nic.aws", "ns3.dns.nic.aws", "ns4.dns.nic.aws", "ns5.dns.nic.aws", "ns6.dns.nic.aws"}, n, n, "whois.nic.aws", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"axis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"az", r, z[1857:1878], s{"az.hostmaster.ua", "rip.psg.com"}, n, n, e, "http://www.nic.az/", "http://www.nic.az/", 0xa0, f},
{"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},
{"ba", r, z[1878:1891], s{"auth03.ns.uu.net", "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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"bank", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bank", e, "https://newgtlds.icann.org/", 0x40, f},
{"banque", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"bar", r, x, s{"a.nic.bar", "b.nic.bar", "c.nic.bar", "d.nic.bar"}, n, n, "whois.nic.bar", e, e, 0x40, t},
{"barcelona", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.barcelona", e, "https://newgtlds.icann.org/", 0x40, f},
{"barclaycard", r, x, s{"a.nic.barclaycard", "b.nic.barclaycard", "c.nic.barclaycard", "d.nic.barclaycard"}, n, n, "whois.nic.barclaycard", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"bb", r, z[1891:1900], s{"ns1.barbadosdomain.net", "ns2.barbadosdomain.net"}, n, n, e, "http://whois.telecoms.gov.bb/search_domain.php", "http://www.barbadosdomains.net/", 0xa0, f},
{"bbb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"bbc", r, x, s{"dns1.nic.bbc", "dns2.nic.bbc", "dns3.nic.bbc", "dns4.nic.bbc", "dnsa.nic.bbc", "dnsb.nic.bbc", "dnsc.nic.bbc", "dnsd.nic.bbc"}, n, n, "whois.nic.bbc", e, "https://newgtlds.icann.org/", 0x42, f},
{"bbt", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bbt", e, "https://newgtlds.icann.org/", 0x42, f},
{"bbva", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bbva", e, "https://newgtlds.icann.org/", 0x42, t},
{"bcg", r, x, s{"a0.nic.bcg", "a2.nic.bcg", "b0.nic.bcg", "c0.nic.bcg"}, n, n, "whois.nic.bcg", e, "https://newgtlds.icann.org/", 0x42, f},
{"bcn", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.bcn", e, "https://newgtlds.icann.org/", 0x40, f},
{"bd", r, z[1900:1907], s{"bd-ns.anycast.pch.net", "dns.bd", "jamuna.btcl.net.bd", "surma.btcl.net.bd"}, n, n, e, "http://whois.btcl.net.bd/", "http://www.bttb.net.bd/", 0xa8, t},
{"be", r, x, s{"a.ns.dns.be", "b.ns.dns.be", "c.ns.dns.be", "d.ns.dns.be", "x.ns.dns.be", "y.ns.dns.be"}, n, n, "whois.dns.be", e, e, 0xa0, t},
{"beats", r, x, s{"a0.nic.beats", "a2.nic.beats", "b0.nic.beats", "c0.nic.beats"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"beauty", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.beauty", e, "https://newgtlds.icann.org/", 0x40, t},
{"beer", r, x, s{"dns1.nic.beer", "dns2.nic.beer", "dns3.nic.beer", "dns4.nic.beer", "dnsa.nic.beer", "dnsb.nic.beer", "dnsc.nic.beer", "dnsd.nic.beer"}, n, n, "whois.nic.beer", e, "http://nic.beer/", 0x40, t},
{"beknown", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"bentley", r, x, s{"dns1.nic.bentley", "dns2.nic.bentley", "dns3.nic.bentley", "dns4.nic.bentley", "dnsa.nic.bentley", "dnsb.nic.bentley", "dnsc.nic.bentley", "dnsd.nic.bentley"}, n, n, "whois.nic.bentley", e, "https://newgtlds.icann.org/", 0x42, f},
{"berlin", r, x, s{"a.dns.nic.berlin", "m.dns.nic.berlin", "n.dns.nic.berlin"}, n, s{"Berlin", "DE-BE"}, "whois.nic.berlin", e, e, 0xc4, t},
{"best", r, x, s{"a.nic.best", "b.nic.best", "c.nic.best", "d.nic.best"}, n, n, "whois.nic.best", e, "http://nic.best/", 0x40, t},
{"bestbuy", r, x, s{"a0.nic.bestbuy", "a2.nic.bestbuy", "b0.nic.bestbuy", "c0.nic.bestbuy"}, n, n, "whois.nic.bestbuy", e, "https://newgtlds.icann.org/", 0x42, f},
{"bet", r, x, s{"a0.nic.bet", "a2.nic.bet", "b0.nic.bet", "c0.nic.bet"}, n, n, "whois.afilias.net", e, "http://nic.bet/", 0x40, f},
{"bf", r, z[1907:1908], s{"censvrns0001.ird.fr", "nahouri.onatel.bf", "ns-bf.afrinic.net"}, n, n, e, e, e, 0xa0, t},
{"bg", r, z[1908:1944], s{"ns.register.bg", "ns2.register.bg", "ns3.register.bg", "ns4.register.bg", "ns5.register.bg", "sns-pb.isc.org"}, n, n, "whois.register.bg", e, "https://www.register.bg/user/", 0xa0, t},
{"bh", r, z[1944:1952], s{"ns.batelco.com.bh", "ns2.batelco.com.bh", "ns3.batelco.com.bh", "ns4.batelco.com.bh"}, n, n, e, e, e, 0xa0, f},
{"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},
{"bi", r, z[1952:1962], 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},
{"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},
{"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},
{"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},
{"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},
{"bingo", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.bingo", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"biz", r, z[1962:1964], s{"a.gtld.biz", "b.gtld.biz", "c.gtld.biz", "e.gtld.biz", "f.gtld.biz", "k.gtld.biz"}, n, n, "whois.biz", e, e, 0x40, t},
{"bj", r, z[1964:1971], s{"bj.cctld.authdns.ripe.net", "bow.rain.fr", "nakayo.leland.bj", "ns-bj.afrinic.net", "ns1.intnet.bj"}, n, n, "whois.nic.bj", e, e, 0xa0, f},
{"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},
{"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},
{"blanco", r, x, n, n, n, "whois.nic.blanco", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"blog", r, z[1971:1997], s{"dns1.nic.blog", "dns2.nic.blog", "dns3.nic.blog", "dns4.nic.blog", "dnsa.nic.blog", "dnsb.nic.blog", "dnsc.nic.blog", "dnsd.nic.blog"}, n, n, "whois.nic.blog", e, "http://nic.blog/", 0x40, f},
{"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},
{"bloomingdales", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"blue", r, x, s{"a0.nic.blue", "a2.nic.blue", "b0.nic.blue", "c0.nic.blue"}, n, n, "whois.afilias.net", e, "http://nic.blue/", 0x40, f},
{"bm", r, z[1997:2002], 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},
{"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},
{"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},
{"bn", r, z[2002:2007], s{"bn-ns.anycast.pch.net", "ns1.bnnic.bn", "ns2.bnnic.bn", "ns4.apnic.net"}, n, n, "whois.bnnic.bn", e, "http://www.brunet.bn/products_webrelated_domain_main.htm", 0xa0, f},
{"bnl", r, x, s{"a0.nic.bnl", "a2.nic.bnl", "b0.nic.bnl", "c0.nic.bnl"}, n, n, "whois.nic.bnl", e, "https://newgtlds.icann.org/", 0x42, f},
{"bnpparibas", r, x, s{"a0.nic.bnpparibas", "a2.nic.bnpparibas", "b0.nic.bnpparibas", "c0.nic.bnpparibas"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"bo", r, z[2007:2016], s{"anycast.ns.nic.bo", "ns.dns.br", "ns.nic.bo", "ns2.nic.fr"}, n, n, "whois.nic.bo", e, e, 0xa0, f},
{"boats", r, x, s{"a0.nic.boats", "a2.nic.boats", "b0.nic.boats", "c0.nic.boats"}, n, n, "whois.afilias-srs.net", e, "http://nic.boats/", 0x40, f},
{"boehringer", r, x, s{"a0.nic.boehringer", "a2.nic.boehringer", "b0.nic.boehringer", "c0.nic.boehringer"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"bofa", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.bofa", e, "https://newgtlds.icann.org/", 0x42, f},
{"bom", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"book", r, x, s{"dns1.nic.book", "dns2.nic.book", "dns3.nic.book", "dns4.nic.book", "ns4.dns.nic.book", "ns5.dns.nic.book", "ns6.dns.nic.book"}, n, n, "whois.nic.book", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"boots", r, x, n, n, n, "whois.nic.boots", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"bostik", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois-bostik.nic.fr", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"bot", r, x, s{"ns1.dns.nic.bot", "ns2.dns.nic.bot", "ns3.dns.nic.bot", "ns4.dns.nic.bot", "ns5.dns.nic.bot", "ns6.dns.nic.bot"}, n, n, "whois.nic.bot", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"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},
{"br", r, z[2016:2110], 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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"brussels", r, x, s{"a.nic.brussels", "b.nic.brussels", "c.ns.dns.be", "d.ns.dns.be", "x.nic.brussels", "y.ns.dns.be"}, n, s{"Brussels", "BE-BRU"}, "whois.nic.brussels", e, "https://newgtlds.icann.org/", 0xc4, t},
{"bs", r, z[2110:2116], s{"anyns.dns.bs", "anyns.pch.net", "ns36.cdns.net"}, n, n, e, "http://www.nic.bs/cgi-bin/search.pl", e, 0xa0, t},
{"bt", r, z[2116:2121], 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},
{"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},
{"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},
{"buick", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"build", r, x, s{"a.nic.build", "b.nic.build", "c.nic.build", "d.nic.build"}, n, n, "whois.nic.build", e, "http://nic.build/", 0x40, f},
{"builders", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.builders", e, e, 0x40, t},
{"business", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.business", e, "https://newgtlds.icann.org/", 0x40, t},
{"buy", r, x, s{"dns1.nic.buy", "dns2.nic.buy", "dns3.nic.buy", "dns4.nic.buy", "ns4.dns.nic.buy", "ns5.dns.nic.buy", "ns6.dns.nic.buy"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"bv", r, x, s{"nac.no", "nn.uninett.no", "server.nordu.net"}, n, n, "whois.norid.no", e, e, 0xa8, f},
{"bw", r, z[2121:2125], 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},
{"bway", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"by", r, z[2125:2130], s{"dns1.tld.tutby.com", "dns2.tld.tutby.com", "dns3.tld.tutby.com", "dns4.tld.tutby.com", "dns5.tld.tutby.com", "dns7.tld.tutby.com"}, n, n, "whois.cctld.by", e, "http://tld.by/", 0xa0, f},
{"bz", r, z[2130:2137], 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},
{"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},
{"ca", r, z[2137:2153], 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},
{"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},
{"cadillac", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"call", r, x, s{"dns1.nic.call", "dns2.nic.call", "dns3.nic.call", "dns4.nic.call", "ns4.dns.nic.call", "ns5.dns.nic.call", "ns6.dns.nic.call"}, n, n, "whois.nic.call", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"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},
{"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},
{"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},
{"canalplus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"cancerresearch", r, x, s{"a.nic.cancerresearch", "b.nic.cancerresearch", "c.nic.cancerresearch", "d.nic.cancerresearch"}, n, n, "whois.nic.cancerresearch", e, "https://newgtlds.icann.org/", 0x40, f},
{"canon", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.canon", e, "https://newgtlds.icann.org/", 0x42, t},
{"capetown", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2.dns.business"}, n, s{"Cape Town"}, "capetown-whois.registry.net.za", e, e, 0xc4, t},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"carinsurance", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
{"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},
{"cartier", r, x, s{"ns1.dns.nic.cartier", "ns2.dns.nic.cartier", "ns3.dns.nic.cartier", "ns4.dns.nic.cartier", "ns5.dns.nic.cartier", "ns6.dns.nic.cartier"}, n, n, "whois.nic.cartier", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"caseih", r, x, s{"a0.nic.caseih", "a2.nic.caseih", "b0.nic.caseih", "c0.nic.caseih"}, n, n, "whois.nic.caseih", e, "https://newgtlds.icann.org/", 0x42, f},
{"cash", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.cash", e, e, 0x40, t},
{"cashbackbonus", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x48, f},
{"casino", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.casino", e, "https://newgtlds.icann.org/", 0x40, t},
{"cat", r, x, s{"anyc1.irondns.net", "cat.pch.net", "ns.nic.cat", "ns1.nic.es", "nsc.nic.de", "sns-pb.isc.org", "switch.nic.cat"}, n, s{"ES-CT"}, "whois.nic.cat", e, "http://www.domini.cat/", 0x1440, t},
{"catalonia", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"cc", r, z[2153:2157], s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "ccwhois.verisign-grs.com", e, e, 0xe0, t},
{"cd", r, z[2157:2163], 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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"ch", r, x, s{"a.nic.ch", "b.nic.ch", "c.nic.ch", "d.nic.ch", "e.nic.ch", "f.nic.ch", "g.nic.ch", "h.nic.ch"}, n, n, "whois.nic.ch", e, e, 0xa0, t},
{"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},
{"changiairport", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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, f},
{"chartis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"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},
{"chesapeake", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"chevrolet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"chevy", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"chk", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"chloe", r, x, n, n, n, "whois.nic.chloe", e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"chrysler", r, x, s{"a0.nic.chrysler", "a2.nic.chrysler", "b0.nic.chrysler", "c0.nic.chrysler"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"ci", r, z[2163:2178], 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, "whois.nic.ci", e, e, 0xa0, f},
{"cimb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"circle", r, x, s{"dns1.nic.circle", "dns2.nic.circle", "dns3.nic.circle", "dns4.nic.circle", "ns4.dns.nic.circle", "ns5.dns.nic.circle", "ns6.dns.nic.circle"}, n, n, "whois.nic.circle", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"ck", r, z[2178:2186], 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},
{"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},
{"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},
{"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},
{"click", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.click/", 0x40, t},
{"clinic", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.clinic", e, e, 0x40, t},
{"clinique", r, x, s{"a0.nic.clinique", "a2.nic.clinique", "b0.nic.clinique", "c0.nic.clinique"}, n, n, "whois.nic.clinique", e, "https://newgtlds.icann.org/", 0x42, f},
{"clothing", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.clothing", e, e, 0x40, t},
{"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},
{"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},
{"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},
{"cm", r, z[2186:2190], s{"auth02.ns.uu.net", "cm.cctld.authdns.ripe.net", "kim.camnet.cm", "lom.camnet.cm", "ns.itu.ch", "sanaga.camnet.cm"}, n, n, "whois.netcom.cm", "http://antic.cm", e, 0xa0, f},
{"cn", r, z[2190:2232], 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},
{"co", r, z[2232:2239], 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},
{"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},
{"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},
{"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},
{"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},
{"cologne", r, x, s{"ns1.ryce-rsp.com", "nsa.netnod.se", "nsp.netnod.se", "nsu.netnod.se"}, n, s{"Cologne", "Koeln"}, "whois.ryce-rsp.com", e, e, 0xc4, t},
{"com", r, z[2239:2269], 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},
{"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},
{"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},
{"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},
{"company", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.company", e, e, 0x40, t},
{"compare", r, x, s{"a.nic.compare", "b.nic.compare", "c.nic.compare", "d.nic.compare"}, n, n, "whois.nic.compare", e, "http://nic.compare", 0x40, f},
{"computer", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.computer", e, e, 0x40, t},
{"comsec", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.comsec", e, "https://newgtlds.icann.org/", 0x42, t},
{"condos", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.condos", e, e, 0x40, t},
{"connectors", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
{"construction", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.construction", e, e, 0x40, t},
{"consulting", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.consulting", e, e, 0x40, t},
{"contact", r, x, s{"a.nic.contact", "b.nic.contact", "c.nic.contact", "d.nic.contact"}, n, n, "whois.nic.contact", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"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},
{"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},
{"cool", r, z[2269:2270], s{"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},
{"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},
{"corp", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
{"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},
{"country", r, x, s{"a.ns.nic.country", "b.ns.nic.country", "c.ns.nic.country", "d.ns.nic.country"}, n, n, "whois.uniregistry.net", e, "http://nic.country/", 0x40, t},
{"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},
{"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},
{"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},
{"cpa", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"cr", r, z[2270:2278], s{"a.lactld.org", "a.ns.cr", "ca1.nic.cr", "ca2.nic.cr", "de.nic.cr", "ns-ext.nic.cl", "ns3.nic.mx", "p.nic.cr"}, n, n, "whois.nic.cr", "http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do", e, 0xa0, f},
{"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},
{"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},
{"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},
{"cricket", r, x, s{"ns1.dns.nic.cricket", "ns2.dns.nic.cricket", "ns3.dns.nic.cricket", "ns4.dns.nic.cricket", "ns5.dns.nic.cricket", "ns6.dns.nic.cricket"}, n, n, "whois.nic.cricket", e, "https://www.famousfourmedia.com/", 0x40, t},
{"crown", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"crs", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.crs", e, "http://nic.crs/", 0x42, f},
{"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},
{"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},
{"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},
{"cu", r, z[2278:2289], 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},
{"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},
{"cv", r, z[2289:2297], s{"auth02.ns.uu.net", "c.dns.pt", "cv01.dns.pt", "ns-ext.isc.org", "ns.dns.cv", "sns-pb.isc.org"}, n, n, e, "http://www.dns.cv/", e, 0xa0, f},
{"cw", r, z[2297:2299], 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},
{"cx", r, z[2299:2304], s{"ns.anycast.nic.cx", "ns.cocca.fr"}, n, n, "whois.nic.cx", e, e, 0xa0, f},
{"cy", r, z[2304:2317], s{"cy-ns.anycast.pch.net", "cynic.dns.cy", "cynic4.dns.cy", "cynic6.dns.cy", "estia.ics.forth.gr", "ns02.savvis.net", "ns1.ucy.ac.cy", "ns2.ucy.ac.cy", "ns4.apnic.net"}, n, n, e, "http://www.nic.cy/nslookup/online_database.php", e, 0xa8, f},
{"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},
{"cyou", r, x, s{"a0.nic.cyou", "a2.nic.cyou", "b0.nic.cyou", "c0.nic.cyou"}, n, n, "whois.nic.cyou", e, "https://newgtlds.icann.org/", 0x40, f},
{"cz", r, z[2317:2318], 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},
{"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},
{"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},
{"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},
{"data", r, x, s{"a0.nic.data", "a2.nic.data", "b0.nic.data", "c0.nic.data"}, n, n, "whois.nic.data", e, "https://newgtlds.icann.org/", 0x40, f},
{"date", r, x, s{"ns1.dns.nic.date", "ns2.dns.nic.date", "ns3.dns.nic.date", "ns4.dns.nic.date", "ns5.dns.nic.date", "ns6.dns.nic.date"}, n, n, "whois.nic.date", e, "https://www.famousfourmedia.com/", 0x40, t},
{"dating", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dating", e, e, 0x40, t},
{"datsun", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"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},
{"de", r, z[2318:2321], 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},
{"deal", r, x, s{"dns1.nic.deal", "dns2.nic.deal", "dns3.nic.deal", "dns4.nic.deal", "ns4.dns.nic.deal", "ns5.dns.nic.deal", "ns6.dns.nic.deal"}, n, n, "whois.nic.deal", e, "https://newgtlds.icann.org/", 0x40, t},
{"dealer", r, x, s{"ns1.dns.nic.dealer", "ns2.dns.nic.dealer", "ns3.dns.nic.dealer", "ns4.dns.nic.dealer", "ns5.dns.nic.dealer", "ns6.dns.nic.dealer"}, n, n, "whois.nic.dealer", e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"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},
{"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},
{"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},
{"delmonte", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"democrat", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.democrat", e, e, 0x40, t},
{"dental", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dental", e, e, 0x40, t},
{"dentist", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dentist", e, "https://newgtlds.icann.org/", 0x40, t},
{"desi", r, x, s{"a.nic.desi", "b.nic.desi", "c.nic.desi", "d.nic.desi"}, n, n, "whois.nic.desi", e, e, 0x40, t},
{"design", r, x, s{"a.nic.design", "b.nic.design", "c.nic.design", "d.nic.design"}, n, n, "whois.nic.design", e, "https://newgtlds.icann.org/", 0x40, t},
{"deutschepost", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"dev", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
{"dhl", r, x, s{"a.nic.dhl", "b.nic.dhl", "c.nic.dhl", "d.nic.dhl"}, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
{"diamonds", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.diamonds", e, e, 0x40, t},
{"diet", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.diet/", 0x40, t},
{"digikey", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"digital", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.digital", e, e, 0x40, t},
{"direct", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.direct", e, e, 0x40, t},
{"directory", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.directory", e, e, 0x40, t},
{"discount", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.discount", e, e, 0x40, t},
{"discover", r, x, s{"ns1.dns.nic.discover", "ns2.dns.nic.discover", "ns3.dns.nic.discover", "ns4.dns.nic.discover", "ns5.dns.nic.discover", "ns6.dns.nic.discover"}, n, n, "whois.nic.discover", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"dk", r, z[2321:2323], s{"a.nic.dk", "b.nic.dk", "c.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},
{"dm", r, z[2323:2329], s{"ns.blacknightsolutions.com", "ns2.blacknightsolutions.com", "ns2.nic.dm", "ns34.cdns.net"}, n, n, "whois.nic.dm", e, e, 0xa0, t},
{"dnb", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"do", r, z[2329:2340], 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", "sns-pb.isc.org"}, n, n, "whois.nic.do", "http://www.nic.do/whois-h.php3", "http://www.nic.do/", 0xa0, f},
{"docomo", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"dodge", r, x, s{"a0.nic.dodge", "a2.nic.dodge", "b0.nic.dodge", "c0.nic.dodge"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"dog", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.dog", e, "https://newgtlds.icann.org/", 0x40, t},
{"doha", r, x, s{"a.nic.doha", "b.nic.doha", "c.nic.doha", "d.nic.doha"}, n, s{"Doha", "QA-DA"}, "whois.nic.doha", e, "https://newgtlds.icann.org/", 0xc4, f},
{"domains", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.domains", e, e, 0x40, t},
{"doosan", r, x, n, n, n, "whois.nic.xn--cg4bki", e, "https://newgtlds.icann.org/", 0x2042, f},
{"dot", r, x, s{"a0.nic.dot", "a2.nic.dot", "b0.nic.dot", "c0.nic.dot"}, n, n, "whois.nic.dot", e, "https://newgtlds.icann.org/", 0x40, f},
{"dotafrica", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
{"download", r, x, s{"ns1.dns.nic.download", "ns2.dns.nic.download", "ns3.dns.nic.download", "ns4.dns.nic.download", "ns5.dns.nic.download", "ns6.dns.nic.download"}, n, n, "whois.nic.download", e, "https://www.famousfourmedia.com/", 0x40, t},
{"drive", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
{"dstv", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"dtv", r, x, s{"a0.nic.dtv", "a2.nic.dtv", "b0.nic.dtv", "c0.nic.dtv"}, n, n, "whois.nic.dtv", e, "https://newgtlds.icann.org/", 0x42, f},
{"dubai", r, x, s{"gtld.alpha.aridns.net.au", "gtld.beta.aridns.net.au", "gtld.delta.aridns.net.au", "gtld.gamma.aridns.net.au"}, n, s{"AE-DU", "Dubai"}, "whois.nic.dubai", e, "https://newgtlds.icann.org/", 0xc4, f},
{"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},
{"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},
{"duns", r, x, s{"ns1.dns.nic.duns", "ns2.dns.nic.duns", "ns3.dns.nic.duns", "ns4.dns.nic.duns", "ns5.dns.nic.duns", "ns6.dns.nic.duns"}, n, n, "whois.nic.duns", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"durban", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2.dns.business"}, n, s{"Durban"}, "durban-whois.registry.net.za", e, e, 0xc4, t},
{"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},
{"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},
{"dwg", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"dz", r, z[2340:2348], 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},
{"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},
{"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},
{"ec", r, z[2348:2359], s{"a.lactld.org", "n2.nic.ec", "n3.dns.ec", "sns-pb.isc.org"}, n, n, "whois.nic.ec", e, e, 0xa0, f},
{"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},
{"ecom", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"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},
{"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},
{"ee", r, z[2359:2373], 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},
{"eg", r, z[2373:2385], s{"frcu.eun.eg", "ns5.univie.ac.at", "rip.psg.com"}, n, n, e, "http://lookup.egregistry.eg/english.aspx", e, 0xa0, f},
{"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},
{"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},
{"emerson", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"energy", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.energy", e, "https://newgtlds.icann.org/", 0x40, t},
{"engineer", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.engineer", e, e, 0x40, t},
{"engineering", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.engineering", e, e, 0x40, t},
{"enterprises", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.enterprises", e, "https://newgtlds.icann.org/", 0x40, t},
{"epost", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, t},
{"epson", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.aridnrs.net.au", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"er", r, z[2385:2392], s{"er.cctld.authdns.ripe.net", "sawanew.noc.net.er", "zaranew.noc.net.er"}, n, n, e, e, e, 0xa8, f},
{"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},
{"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},
{"es", r, z[2392:2397], s{"a.nic.es", "f.nic.es", "g.nic.es", "ns-es.nic.fr", "ns-ext.nic.cl", "ns1.cesca.es", "sns-pb.isc.org"}, n, n, "whois.nic.es", e, e, 0xa0, t},
{"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},
{"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},
{"esurance", r, x, s{"a0.nic.esurance", "a2.nic.esurance", "b0.nic.esurance", "c0.nic.esurance"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"et", r, z[2397:2405], s{"a.nic.et", "b.nic.et"}, n, n, e, e, "http://www.ethionet.et/?q=ipservicedomainname", 0xa0, f},
{"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},
{"eu", r, z[2405:2408], s{"cz.dns.eu", "nl.dns.eu", "si.dns.eu", "uk.dns.eu", "x.dns.eu", "y.dns.eu", "z.dns.eu"}, n, n, "whois.eu", e, e, 0xa0, t},
{"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},
{"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},
{"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},
{"everbank", r, x, s{"ns1.dns.nic.everbank", "ns2.dns.nic.everbank", "ns3.dns.nic.everbank", "ns4.dns.nic.everbank", "ns5.dns.nic.everbank", "ns6.dns.nic.everbank"}, n, n, "whois.nic.everbank", e, "https://newgtlds.icann.org/", 0x42, f},
{"exchange", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.exchange", e, e, 0x40, t},
{"expert", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.expert", e, e, 0x40, t},
{"exposed", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.exposed", e, e, 0x40, t},
{"express", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.express", e, "https://newgtlds.icann.org/", 0x40, t},
{"extraspace", r, x, s{"a0.nic.extraspace", "a2.nic.extraspace", "b0.nic.extraspace", "c0.nic.extraspace"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"fage", r, x, s{"a0.nic.fage", "a2.nic.fage", "b0.nic.fage", "c0.nic.fage"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"fail", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fail", e, e, 0x40, t},
{"fairwinds", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.fairwinds", e, "https://newgtlds.icann.org/", 0x42, t},
{"faith", r, x, s{"ns1.dns.nic.faith", "ns2.dns.nic.faith", "ns3.dns.nic.faith", "ns4.dns.nic.faith", "ns5.dns.nic.faith", "ns6.dns.nic.faith"}, n, n, "whois.nic.faith", e, "https://www.famousfourmedia.com/", 0x40, t},
{"family", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.family", e, "https://newgtlds.icann.org/", 0x40, t},
{"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, f},
{"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},
{"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},
{"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},
{"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},
{"fast", r, x, s{"dns1.nic.fast", "dns2.nic.fast", "dns3.nic.fast", "dns4.nic.fast", "ns4.dns.nic.fast", "ns5.dns.nic.fast", "ns6.dns.nic.fast"}, n, n, "whois.nic.fast", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"feedback", r, x, s{"a.nic.feedback", "b.nic.feedback", "c.nic.feedback", "d.nic.feedback"}, n, n, "whois.nic.feedback", e, "https://newgtlds.icann.org/", 0x40, t},
{"ferrari", r, x, s{"a0.nic.ferrari", "a2.nic.ferrari", "b0.nic.ferrari", "c0.nic.ferrari"}, n, n, "whois.nic.ferrari", e, "https://newgtlds.icann.org/", 0x42, f},
{"ferrero", r, x, s{"ns1.dns.nic.ferrero", "ns2.dns.nic.ferrero", "ns3.dns.nic.ferrero", "ns4.dns.nic.ferrero", "ns5.dns.nic.ferrero", "ns6.dns.nic.ferrero"}, n, n, "whois.nic.ferrero", e, "https://newgtlds.icann.org/", 0x42, t},
{"fi", r, x, s{"a.fi", "b.fi", "c.fi", "d.fi", "e.fi", "f.fi", "g.fi", "h.fi", "i.fi"}, n, n, "whois.fi", e, e, 0xa0, t},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"financialaid", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"finish", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"fire", r, x, s{"dns1.nic.fire", "dns2.nic.fire", "dns3.nic.fire", "dns4.nic.fire", "ns4.dns.nic.fire", "ns5.dns.nic.fire", "ns6.dns.nic.fire"}, n, n, "whois.nic.fire", e, "https://newgtlds.icann.org/", 0x42, t},
{"firestone", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.firestone", e, "https://newgtlds.icann.org/", 0x42, f},
{"firmdale", r, x, s{"ns1.nic.firmdale", "ns2.nic.firmdale"}, n, n, "whois.nic.firmdale", e, "https://newgtlds.icann.org/", 0x42, f},
{"fish", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fish", e, e, 0x40, t},
{"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},
{"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},
{"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},
{"fj", r, z[2408:2419], 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},
{"fk", r, z[2419:2425], s{"ns1.horizon.net.fk", "ns2.horizon.net.fk"}, n, n, e, "http://whois.marcaria.com", e, 0xa8, f},
{"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},
{"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},
{"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},
{"florist", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.florist", e, e, 0x40, t},
{"flowers", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.flowers/", 0x40, t},
{"fls", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"flsmidth", r, x, n, n, n, "whois.ksregistry.net", e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"fm", r, z[2425:2431], 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},
{"fo", r, z[2431:2453], s{"a.nic.fo", "b.nic.fo", "c.nic.fo", "d.nic.fo"}, n, n, "whois.nic.fo", e, e, 0xa0, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"fr", r, z[2453:2471], s{"d.ext.nic.fr", "d.nic.fr", "e.ext.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois.nic.fr", e, e, 0xa0, t},
{"free", r, x, s{"dns1.nic.free", "dns2.nic.free", "dns3.nic.free", "dns4.nic.free", "ns4.dns.nic.free", "ns5.dns.nic.free", "ns6.dns.nic.free"}, n, n, "whois.nic.free", e, "https://newgtlds.icann.org/", 0x40, t},
{"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},
{"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},
{"frogans", r, x, s{"a0.nic.frogans", "a2.nic.frogans", "b0.nic.frogans", "c0.nic.frogans"}, n, n, "whois.nic.frogans", e, "https://newgtlds.icann.org/", 0x42, t},
{"frontdoor", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.frontdoor", e, "https://newgtlds.icann.org/", 0x40, f},
{"frontier", r, x, s{"ns1.dns.nic.frontier", "ns2.dns.nic.frontier", "ns3.dns.nic.frontier", "ns4.dns.nic.frontier", "ns5.dns.nic.frontier", "ns6.dns.nic.frontier"}, n, n, "whois.nic.frontier", e, "https://newgtlds.icann.org/", 0x42, f},
{"ftr", r, x, s{"ns1.dns.nic.ftr", "ns2.dns.nic.ftr", "ns3.dns.nic.ftr", "ns4.dns.nic.ftr", "ns5.dns.nic.ftr", "ns6.dns.nic.ftr"}, n, n, "whois.nic.ftr", e, "https://newgtlds.icann.org/", 0x42, f},
{"fujitsu", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, f},
{"fujixerox", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.fujixerox", e, "https://newgtlds.icann.org/", 0x42, t},
{"fun", r, x, s{"a.nic.fun", "b.nic.fun", "c.nic.fun", "d.nic.fun"}, n, n, "whois.nic.fun", e, "https://newgtlds.icann.org/", 0x40, t},
{"fund", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.fund", e, e, 0x40, t},
{"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},
{"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},
{"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},
{"ga", r, z[2471:2484], s{"a.ns.ga", "b.ns.ga", "c.ns.ga", "d.ns.ga"}, n, n, "whois.dot.ga", e, e, 0xa0, t},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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, f},
{"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},
{"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},
{"garnier", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"gay", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"gb", r, z[2484:2485], s{"ns.uu.net", "ns0.ja.net", "ns4.ja.net"}, n, n, e, e, e, 0xa8, f},
{"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},
{"gcc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"gd", r, z[2485:2492], s{"a.nic.gd", "b.nic.gd", "c.nic.gd", "d.nic.gd"}, n, n, "whois.nic.gd", e, e, 0xa0, f},
{"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},
{"ge", r, z[2492:2500], s{"ge.hostmaster.ua", "ns.nic.ge", "ns.uu.net", "ns2.nic.fr", "ns2.nic.ge"}, n, n, "whois.registration.ge", "http://www.registration.ge/", "http://www.nic.net.ge/", 0xa0, f},
{"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, f},
{"gecompany", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"ged", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"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},
{"gg", r, z[2500:2511], s{"c.ci-servers.org", "d.ci-servers.je", "e.ci-servers.gg", "ns0.ja.net", "ns99.dns.net.nz"}, n, n, "whois.gg", e, e, 0xa0, f},
{"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},
{"gh", r, z[2511:2517], s{"ns.dns.br", "ns1.nic.gh", "ns2.nic.gh"}, n, n, e, "http://www.nic.gh/customer/search_c.htm", e, 0xa8, f},
{"gi", r, z[2517:2523], 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},
{"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},
{"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},
{"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},
{"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},
{"gl", r, z[2523:2528], s{"a.gl.dyntld.net", "a.nuuk.nic.gl", "b.gl.dyntld.net", "d.nic.gl"}, n, n, "whois.nic.gl", e, e, 0xa0, t},
{"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},
{"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},
{"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},
{"global", r, x, s{"a0.nic.global", "a2.nic.global", "b0.nic.global", "c0.nic.global"}, n, n, "whois.nic.global", e, e, 0x40, t},
{"globalx", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"globo", r, x, s{"a.dns.br", "b.dns.br", "c.dns.br", "d.dns.br", "e.dns.br", "f.dns.br"}, n, n, "whois.gtlds.nic.br", e, "https://newgtlds.icann.org/", 0x42, t},
{"gm", r, x, s{"ns-gm.afrinic.net", "ns1.nic.gm", "ns2.nic.gm"}, n, n, e, "http://www.nic.gm/htmlpages/whois.htm", e, 0xa0, f},
{"gmail", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
{"gmbh", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.gmbh", e, "https://newgtlds.icann.org/", 0x40, t},
{"gmc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"gmo", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.gmoregistry.net", e, "https://newgtlds.icann.org/", 0x42, t},
{"gmx", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois-fe1.gmx.tango.knipp.de", e, "https://newgtlds.icann.org/", 0x42, t},
{"gn", r, z[2528:2534], s{"fork.sth.dnsnode.net", "ns-gn.afrinic.net", "rip.psg.com"}, n, n, e, e, e, 0xa8, f},
{"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},
{"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},
{"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},
{"golf", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.golf", e, "https://newgtlds.icann.org/", 0x40, t},
{"goo", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.gmo", e, "https://newgtlds.icann.org/", 0x42, t},
{"goodhands", r, x, n, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"goodyear", r, x, s{"a0.nic.goodyear", "a2.nic.goodyear", "b0.nic.goodyear", "c0.nic.goodyear"}, n, n, "whois.nic.goodyear", e, "https://newgtlds.icann.org/", 0x42, f},
{"goog", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
{"google", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x42, t},
{"gop", r, x, s{"dns1.nic.gop", "dns2.nic.gop", "dns3.nic.gop", "dns4.nic.gop", "dnsa.nic.gop", "dnsb.nic.gop", "dnsc.nic.gop", "dnsd.nic.gop"}, n, n, "whois.nic.gop", e, "http://nic.gop/", 0x40, f},
{"got", r, x, s{"dns1.nic.got", "dns2.nic.got", "dns3.nic.got", "dns4.nic.got", "ns4.dns.nic.got", "ns5.dns.nic.got", "ns6.dns.nic.got"}, n, n, "whois.nic.got", e, "https://newgtlds.icann.org/", 0x42, t},
{"gotv", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"gp", r, z[2534:2545], s{"gp.cctld.authdns.ripe.net", "ns1.nic.gp"}, n, n, "whois.nic.gp", "https://www.dom-enic.com/whois.html", e, 0xa0, f},
{"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},
{"gr", r, z[2545:2550], 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},
{"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},
{"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},
{"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},
{"gree", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"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},
{"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},
{"gs", r, x, s{"ns.anycast.nic.gs", "ns.cocca.fr"}, n, n, "whois.nic.gs", e, e, 0xa0, f},
{"gt", r, z[2550:2557], s{"a.lactld.org", "ns-ext.nic.cl", "ns.dns.br", "ns3.nic.mx", "pch.gt", "sns-pb.isc.org"}, n, n, e, "http://www.gt/", e, 0xa0, f},
{"gu", r, z[2557:2564], 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},
{"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},
{"guardianlife", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"guardianmedia", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"gw", r, x, s{"gw01.dns.pt", "gw03.dns.pt", "sns-pb.isc.org"}, n, n, e, "http://nic.gw/en/whois/", e, 0xa0, f},
{"gy", r, z[2564:2568], s{"gy-ns.anycast.pch.net", "ns.cocca.fr", "sns-pb.isc.org"}, n, n, "whois.registry.gy", e, e, 0xa0, f},
{"hair", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, e, e, "https://newgtlds.icann.org/", 0x40, t},
{"halal", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"heart", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2040, f},
{"heinz", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"help", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.help/", 0x40, t},
{"helsinki", r, x, s{"a0.nic.helsinki", "a2.nic.helsinki", "b0.nic.helsinki", "c0.nic.helsinki"}, n, n, "whois.nic.helsinki", e, "https://newgtlds.icann.org/", 0x40, f},
{"here", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
{"hermes", r, x, s{"a0.nic.hermes", "a2.nic.hermes", "b0.nic.hermes", "c0.nic.hermes"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"hgtv", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.hgtv", e, "https://newgtlds.icann.org/", 0x42, f},
{"hilton", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"hiphop", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.hiphop", 0x40, t},
{"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},
{"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},
{"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},
{"hk", r, z[2568:2577], 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},
{"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},
{"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},
{"hn", r, z[2577:2583], s{"nicmx-anycast.rds.org.hn", "pch-anycast.rds.org.hn", "sns-pb.isc.org"}, n, n, "whois.nic.hn", e, e, 0xa0, f},
{"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},
{"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},
{"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},
{"home", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
{"homedepot", r, x, s{"a0.nic.homedepot", "a2.nic.homedepot", "b0.nic.homedepot", "c0.nic.homedepot"}, n, n, "whois.nic.homedepot", e, "https://newgtlds.icann.org/", 0x42, f},
{"homegoods", r, x, s{"ns1.dns.nic.homegoods", "ns2.dns.nic.homegoods", "ns3.dns.nic.homegoods", "ns4.dns.nic.homegoods", "ns5.dns.nic.homegoods", "ns6.dns.nic.homegoods"}, n, n, "whois.nic.homegoods", e, "https://newgtlds.icann.org/", 0x42, f},
{"homes", r, x, s{"a0.nic.homes", "a2.nic.homes", "b0.nic.homes", "c0.nic.homes"}, n, n, "whois.afilias-srs.net", e, "http://nic.homes/", 0x40, f},
{"homesense", r, x, s{"ns1.dns.nic.homesense", "ns2.dns.nic.homesense", "ns3.dns.nic.homesense", "ns4.dns.nic.homesense", "ns5.dns.nic.homesense", "ns6.dns.nic.homesense"}, n, n, "whois.nic.homesense", e, "https://newgtlds.icann.org/", 0x42, f},
{"honda", r, x, s{"a.gmoregistry.net", "b.gmoregistry.net", "k.gmoregistry.net", "l.gmoregistry.net"}, n, n, "whois.nic.honda", e, "https://newgtlds.icann.org/", 0x42, f},
{"honeywell", r, x, s{"ns1.dns.nic.honeywell", "ns2.dns.nic.honeywell", "ns3.dns.nic.honeywell", "ns4.dns.nic.honeywell", "ns5.dns.nic.honeywell", "ns6.dns.nic.honeywell"}, n, n, "whois.nic.honeywell", e, "https://newgtlds.icann.org/", 0x42, f},
{"horse", r, x, s{"dns1.nic.horse", "dns2.nic.horse", "dns3.nic.horse", "dns4.nic.horse", "dnsa.nic.horse", "dnsb.nic.horse", "dnsc.nic.horse", "dnsd.nic.horse"}, n, n, "whois.nic.horse", e, "http://nic.horse/", 0x40, t},
{"hospital", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.hospital", e, "https://newgtlds.icann.org/", 0x40, t},
{"host", r, x, s{"a.nic.host", "b.nic.host", "c.nic.host", "d.nic.host"}, n, n, "whois.nic.host", e, e, 0x40, t},
{"hosting", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.hosting/", 0x40, t},
{"hot", r, x, s{"dns1.nic.hot", "dns2.nic.hot", "dns3.nic.hot", "dns4.nic.hot", "ns4.dns.nic.hot", "ns5.dns.nic.hot", "ns6.dns.nic.hot"}, n, n, "whois.nic.hot", e, "https://newgtlds.icann.org/", 0x40, t},
{"hoteis", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"hotel", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"hr", r, z[2583:2587], s{"hr-ns-1.carnet.hr", "pch.carnet.hr", "sns-pb.isc.org"}, n, n, "whois.dns.hr", e, e, 0xa0, f},
{"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},
{"ht", r, z[2587:2604], s{"charles.cdec.polymtl.ca", "ht-ns.anycast.pch.net", "ns.cocca.fr", "ns1.nic.ht", "ns3.nic.fr"}, n, n, "whois.nic.ht", e, e, 0xa0, f},
{"htc", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2842, f},
{"hu", r, z[2604:2638], 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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"id", r, z[2638:2650], 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},
{"idn", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"ie", r, z[2650:2655], s{"a.ns.ie", "b.ns.ie", "c.ns.ie", "d.ns.ie", "e.ns.ie", "f.ns.ie", "g.ns.ie", "h.ns.ie"}, n, n, "whois.iedr.ie", e, "https://www.iedr.ie/", 0xa0, t},
{"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},
{"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},
{"iinet", r, x, n, n, n, "whois.aridnrs.net.au", e, "https://newgtlds.icann.org/", 0x2042, f},
{"ikano", r, x, s{"a.dns.nic.ikano", "m.dns.nic.ikano", "n.dns.nic.ikano"}, n, n, "whois.ikano.tld-box.at", e, "https://newgtlds.icann.org/", 0x42, t},
{"il", r, z[2655:2663], s{"ilns.ilan.net.il", "lookup.iucc.ac.il", "ns1.ns.il", "ns2.ns.il", "ns3.ns.il", "nsa.ns.il", "nsb.ns.il", "nse.ns.il", "sns-pb.isc.org"}, n, n, "whois.isoc.org.il", e, "http://www.isoc.org.il/domains/", 0xa8, t},
{"im", r, z[2663:2669], s{"barney.advsys.co.uk", "hoppy.iom.com", "ns4.ja.net", "pebbles.iom.com"}, n, n, "whois.nic.im", e, e, 0xa0, f},
{"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},
{"imdb", r, x, s{"ns1.dns.nic.imdb", "ns2.dns.nic.imdb", "ns3.dns.nic.imdb", "ns4.dns.nic.imdb", "ns5.dns.nic.imdb", "ns6.dns.nic.imdb"}, n, n, "whois.nic.imdb", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"in", r, z[2669:2681], s{"ns1.neustar.in", "ns2.neustar.in", "ns3.neustar.in", "ns4.neustar.in", "ns5.neustar.in", "ns6.neustar.in"}, n, n, "whois.registry.in", e, e, 0xa0, f},
{"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},
{"indians", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"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},
{"info", r, z[2681:2682], 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},
{"infosys", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"infy", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"ink", r, x, s{"a.nic.ink", "b.nic.ink", "c.nic.ink", "d.nic.ink"}, n, n, "whois.nic.ink", e, e, 0x40, t},
{"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},
{"insurance", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.insurance", e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"int", r, z[2682:2683], 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},
{"intel", r, x, s{"ns1.dns.nic.intel", "ns2.dns.nic.intel", "ns3.dns.nic.intel", "ns4.dns.nic.intel", "ns5.dns.nic.intel", "ns6.dns.nic.intel"}, n, n, "whois.nic.intel", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"io", r, z[2683:2685], s{"a0.nic.io", "a2.nic.io", "b0.nic.io", "c0.nic.io", "ns-a1.io", "ns-a3.io"}, n, n, "whois.nic.io", e, "http://nic.io/", 0xe0, t},
{"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},
{"iq", r, z[2685:2695], s{"dyn1.cmc.iq", "dyn2.cmc.iq", "ns1.cmc.iq", "nsp-anycast.cmc.iq", "sns-pb.isc.org"}, n, n, "whois.cmc.iq", e, e, 0xa0, f},
{"ir", r, z[2695:2702], 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},
{"ira", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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, f},
{"is", r, x, s{"bes.isnic.is", "durinn.rhnet.is", "isgate.is", "sab.isnic.is", "sns-pb.isc.org", "sunic.sunet.se"}, n, n, "whois.isnic.is", e, e, 0xa0, t},
{"iselect", r, x, s{"a.nic.iselect", "b.nic.iselect", "c.nic.iselect", "d.nic.iselect"}, n, n, "whois.nic.iselect", e, "https://newgtlds.icann.org/", 0x42, f},
{"islam", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"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},
{"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},
{"it", r, z[2702:3063], 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},
{"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},
{"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},
{"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},
{"iwc", r, x, n, n, n, "whois.nic.iwc", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"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},
{"je", r, z[3063:3069], s{"c.ci-servers.org", "d.ci-servers.je", "e.ci-servers.gg", "ns0.ja.net", "ns99.dns.net.nz"}, n, n, "whois.je", e, e, 0xa0, f},
{"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},
{"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},
{"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},
{"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},
{"jlc", r, x, n, n, n, "whois.nic.jlc", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"jm", r, z[3069:3075], 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},
{"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},
{"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},
{"jo", r, z[3075:3083], 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},
{"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},
{"joburg", r, x, s{"coza1.dnsnode.net", "ns.coza.net.za", "ns2.dns.business"}, n, s{"Johannesburg"}, "joburg-whois.registry.net.za", e, e, 0xc4, t},
{"jot", r, x, s{"dns1.nic.jot", "dns2.nic.jot", "dns3.nic.jot", "dns4.nic.jot", "ns4.dns.nic.jot", "ns5.dns.nic.jot", "ns6.dns.nic.jot"}, n, n, "whois.nic.jot", e, "https://newgtlds.icann.org/", 0x40, t},
{"joy", r, x, s{"dns1.nic.joy", "dns2.nic.joy", "dns3.nic.joy", "dns4.nic.joy", "ns4.dns.nic.joy", "ns5.dns.nic.joy", "ns6.dns.nic.joy"}, n, n, "whois.nic.joy", e, "https://newgtlds.icann.org/", 0x40, t},
{"jp", r, z[3083:3186], 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},
{"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},
{"jpmorganchase", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"juniper", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.juniper", e, "https://newgtlds.icann.org/", 0x42, f},
{"justforu", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"ke", r, z[3186:3195], s{"kenic.anycastdns.cz", "mzizi.kenic.or.ke", "ns-ke.afrinic.net", "ns.anycast.kenic.or.ke", "ns2.dns.business"}, n, n, "whois.kenic.or.ke", e, "http://www.kenic.or.ke/", 0xa8, f},
{"kerastase", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"kerrylogisitics", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"kerrylogistics", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.kerrylogistics", e, e, 0x0, t},
{"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},
{"ketchup", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"kg", r, z[3195:3201], s{"kg.cctld.authdns.ripe.net", "ns.kg"}, n, n, "whois.kg", e, e, 0xa0, f},
{"kh", r, z[3201:3208], s{"dns1.online.com.kh", "ns.camnet.com.kh", "ns1.dns.net.kh", "ns4.apnic.net"}, n, n, e, e, e, 0xa0, f},
{"ki", r, z[3208:3220], s{"ns.cocca.fr", "pch.nic.ki", "sns-pb.isc.org"}, n, n, "whois.nic.ki", e, e, 0xa0, f},
{"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},
{"kid", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"kids", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"kiehls", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"kindle", r, x, s{"dns1.nic.kindle", "dns2.nic.kindle", "dns3.nic.kindle", "dns4.nic.kindle", "ns4.dns.nic.kindle", "ns5.dns.nic.kindle", "ns6.dns.nic.kindle"}, n, n, "whois.nic.kindle", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"kiwi", r, x, s{"a.ns.nic.kiwi", "b.ns.nic.kiwi"}, n, n, "whois.nic.kiwi", e, e, 0x40, t},
{"km", r, z[3220:3234], s{"dns1.nic.km", "dns2.nic.km", "ns-km.afrinic.net"}, n, n, e, e, e, 0xa0, f},
{"kn", r, z[3234:3240], s{"ns.cocca.fr", "ns.coccaregistry.org", "pch.nic.kn"}, n, n, "whois.nic.kn", "http://www.nic.kn/", e, 0xa0, f},
{"koeln", r, x, s{"ns1.ryce-rsp.com", "nsa.netnod.se", "nsp.netnod.se", "nsu.netnod.se"}, n, s{"Cologne", "Koeln"}, "whois.ryce-rsp.com", e, e, 0xc4, t},
{"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},
{"konami", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"kone", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"kp", r, z[3240:3244], s{"ns1.kptc.kp", "ns2.kptc.kp"}, n, n, e, e, e, 0xa0, f},
{"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},
{"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},
{"kr", r, z[3244:3273], 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},
{"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},
{"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},
{"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},
{"kw", r, z[3273:3278], s{"a.nic.kw", "b.nic.kw", "c.nic.kw", "d.nic.kw", "ns4.apnic.net", "pch.nic.kw", "sns-pb.isc.org"}, n, n, e, "http://www.kw/", e, 0xa0, f},
{"ky", r, z[3278:3283], 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},
{"kyknet", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"kz", r, z[3283:3289], s{"ns.nic.kz", "ns1.nic.kz"}, n, n, "whois.nic.kz", e, e, 0xa0, f},
{"la", r, x, s{"ns1.nic.la", "ns2.nic.la", "ns3.nic.la", "ns4.nic.la"}, s{"173.230.141.80"}, s{"Los Angeles"}, "whois.nic.la", e, e, 0xa4, t},
{"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},
{"ladbrokes", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.ladbrokes", e, "https://newgtlds.icann.org/", 0x42, t},
{"lamborghini", r, x, s{"a0.nic.lamborghini", "a2.nic.lamborghini", "b0.nic.lamborghini", "c0.nic.lamborghini"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, t},
{"lamer", r, x, s{"a0.nic.lamer", "a2.nic.lamer", "b0.nic.lamer", "c0.nic.lamer"}, n, n, "whois.nic.lamer", e, "https://newgtlds.icann.org/", 0x42, f},
{"lancaster", r, x, s{"d.nic.fr", "f.ext.nic.fr", "g.ext.nic.fr"}, n, n, "whois-lancaster.nic.fr", e, "https://newgtlds.icann.org/", 0x42, f},
{"lancia", r, x, s{"a0.nic.lancia", "a2.nic.lancia", "b0.nic.lancia", "c0.nic.lancia"}, n, n, "whois.afilias-srs.net", e, "https://newgtlds.icann.org/", 0x42, f},
{"lancome", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lancome", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"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},
{"lat", r, x, s{"c.mx-ns.mx", "m.mx-ns.mx", "o.mx-ns.mx"}, n, n, "whois.nic.lat", e, "http://nic.lat/", 0x40, t},
{"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},
{"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},
{"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},
{"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},
{"lb", r, z[3289:3294], s{"fork.sth.dnsnode.net", "rip.psg.com", "zeina.aub.edu.lb"}, n, n, e, "http://www.aub.edu.lb/lbdr/", e, 0xa8, f},
{"lc", r, z[3294:3303], 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},
{"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},
{"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},
{"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},
{"lefrak", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.lefrak", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"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},
{"li", r, x, s{"a.nic.li", "b.nic.li", "c.nic.li", "d.nic.li", "e.nic.li", "f.nic.li", "g.nic.li", "h.nic.li"}, n, n, "whois.nic.li", e, e, 0xa0, t},
{"liaison", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.liaison", e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"like", r, x, s{"dns1.nic.like", "dns2.nic.like", "dns3.nic.like", "dns4.nic.like", "ns4.dns.nic.like", "ns5.dns.nic.like", "ns6.dns.nic.like"}, n, n, "whois.nic.like", e, "https://newgtlds.icann.org/", 0x42, t},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"live", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.live", e, "https://newgtlds.icann.org/", 0x40, t},
{"livestrong", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x42, f},
{"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},
{"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},
{"lk", r, z[3303:3317], 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},
{"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},
{"llp", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"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},
{"loans", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.loans", e, e, 0x40, t},
{"locker", r, x, s{"a0.nic.locker", "a2.nic.locker", "b0.nic.locker", "c0.nic.locker"}, n, n, "whois.nic.locker", e, "https://newgtlds.icann.org/", 0x42, f},
{"locus", r, x, s{"dns1.nic.locus", "dns2.nic.locus", "dns3.nic.locus", "dns4.nic.locus", "dnsa.nic.locus", "dnsb.nic.locus", "dnsc.nic.locus", "dnsd.nic.locus"}, n, n, "whois.nic.locus", e, "https://newgtlds.icann.org/", 0x42, f},
{"loft", r, x, s{"ns1.dns.nic.loft", "ns2.dns.nic.loft", "ns3.dns.nic.loft", "ns4.dns.nic.loft", "ns5.dns.nic.loft", "ns6.dns.nic.loft"}, n, n, "whois.nic.loft", e, "https://newgtlds.icann.org/", 0x40, f},
{"lol", r, x, s{"ns1.uniregistry.net", "ns2.uniregistry.info", "ns3.uniregistry.net", "ns4.uniregistry.info"}, n, n, "whois.uniregistry.net", e, "http://nic.lol/", 0x40, t},
{"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},
{"loreal", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"lr", r, z[3317:3323], s{"fork.sth.dnsnode.net", "ns-lr.afrinic.net", "rip.psg.com"}, n, n, e, e, e, 0xa8, f},
{"ls", r, z[3323:3329], 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},
{"lt", r, z[3329:3330], 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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"lv", r, z[3330:3339], 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},
{"ly", r, z[3339:3348], 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},
{"ma", r, z[3348:3354], s{"dns.inria.fr", "ns-ma.nic.fr", "ns1.registre.ma", "ns2.registre.ma", "ns3.registre.ma", "ns4.registre.ma", "sns-pb.isc.org"}, n, n, "whois.registre.ma", e, e, 0xa0, f},
{"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},
{"madrid", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, s{"Madrid", "ES-MD"}, "whois.madrid.rs.corenic.net", e, "https://newgtlds.icann.org/", 0xc4, f},
{"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},
{"mail", r, x, n, n, n, e, e, "https://features.icann.org/addressing-new-gtld-program-applications-corp-home-and-mail", 0x2140, t},
{"maison", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.maison", e, e, 0x40, t},
{"makeup", r, x, s{"ac1.nstld.com", "ac2.nstld.com", "ac3.nstld.com", "ac4.nstld.com"}, n, n, "whois.nic.makeup", e, "https://newgtlds.icann.org/", 0x42, f},
{"man", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.man", e, "https://newgtlds.icann.org/", 0x42, t},
{"management", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.management", e, e, 0x40, t},
{"mango", r, x, s{"anycast10.irondns.net", "anycast23.irondns.net", "anycast24.irondns.net", "anycast9.irondns.net"}, n, n, "whois.nic.mango", e, "https://newgtlds.icann.org/", 0x42, t},
{"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, f},
{"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},
{"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},
{"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},
{"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},
{"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},
{"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},
{"matrix", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"maybelline", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"mc", r, z[3354:3356], s{"mc.cctld.authdns.ripe.net", "ns1.nic.mc", "ns2.nic.mc"}, n, n, e, e, "http://www.nic.mc/", 0xa0, f},
{"mcd", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"mcdonalds", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x2042, f},
{"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},
{"md", r, x, s{"dns-md.rotld.ro", "ns-ext.isc.org", "ns-int.dns.md", "nsb.dns.md", "nsca.dns.md", "nsfr.dns.md"}, n, n, "whois.nic.md", e, e, 0xa0, f},
{"me", r, z[3356:3364], 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},
{"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},
{"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},
{"medical", r, x, n, n, n, e, e, "https://newgtlds.icann.org/", 0x40, f},
{"meet", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, f},
{"melbourne", r, x, s{"a.nic.melbourne", "b.nic.melbourne", "c.nic.melbourne", "d.nic.melbourne"}, n, s{"Melbourne"}, "whois.nic.melbourne", e, "http://nic.melbourne/", 0xc4, f},
{"meme", r, x, s{"ns-tld1.charlestonroadregistry.com", "ns-tld2.charlestonroadregistry.com", "ns-tld3.charlestonroadregistry.com", "ns-tld4.charlestonroadregistry.com", "ns-tld5.charlestonroadregistry.com"}, n, n, "whois.nic.google", e, "https://www.registry.google/", 0x40, t},
{"memorial", r, x, s{"demand.alpha.aridns.net.au", "demand.beta.aridns.net.au", "demand.delta.aridns.net.au", "demand.gamma.aridns.net.au"}, n, n, "whois.nic.memorial", e, "https://newgtlds.icann.org/", 0x40, t},
{"men", r, x, s{"a.nic.men", "b.nic.men", "c.nic.men", "d.nic.men"}, n, n, "whois.nic.men", e, "https://www.famousfourmedia.com/", 0x40, t},