-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtop_level_domain.py
1812 lines (1799 loc) · 79.1 KB
/
top_level_domain.py
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
import fileinput
import idna
import re
class TopLevelDomain:
"""Classify top-level domains (TLDs) to provide the following information:
- type: generic, country-code, ...
- """
tld_ccs = {}
tld_types = {}
short_types = {'generic': 'gTLD',
'generic-restricted': 'grTLD',
'infrastructure': 'ARPA',
'country-code': 'ccTLD',
'sponsored': 'sTLD',
'test': 'tTLD',
'internationalized generic': 'IDN gTLD',
'internationalized country-code TLD': 'IDN ccTLD',
'internationalized test TLD': 'IDN tTLD'
}
def __init__(self, tld):
self.tld = tld = tld.lower()
self.first_level = self.tld
self.tld_type = None
self.sub_type = None
if tld in TopLevelDomain.tld_ccs:
self.first_level = TopLevelDomain.tld_ccs[tld]
elif tld.find('.'):
self.first_level = re.sub(r'^.+\.', '', tld)
if tld in TopLevelDomain.tld_types:
self.tld_type = TopLevelDomain.tld_types[tld]
elif tld in TopLevelDomain.tld_ccs:
self.tld_type = 'country-code'
self.sub_type = 'internationalized'
self.first_level = TopLevelDomain.tld_ccs[tld]
elif self.first_level in TopLevelDomain.tld_types:
self.tld_type = TopLevelDomain.tld_types[self.first_level]
self.sub_type = 'second-level'
def __str__(self):
_str = self.tld + '('
if self.tld_type:
_str += self.tld_type
if self.sub_type:
_str += ', ' + self.sub_type
if self.first_level and self.first_level != self.tld:
_str += ' of ' + self.first_level
idn = idna.encode(self.tld).decode('utf-8')
if idn != self.tld:
_str += ', idn: ' + idn
_str += ')'
return _str
@staticmethod
def _read_data():
state = ''
state_pattern = re.compile('^__([A-Z_]+)__$')
for line in TopLevelDomain.__DATA__.splitlines():
# print(line)
if len(line) == 0 or '#' == line[0]:
continue
m = state_pattern.match(line)
if m:
state = m.group(1)
continue
if state == 'IANA':
(tld, tld_type, _sponsoring_organization) = line.split('\t')
tld = tld.strip('\u200e\u200f')
tld = tld.lstrip('.')
idn = idna.encode(tld).decode('utf-8')
if idn != tld:
if tld_type == 'country-code':
tld_type = 'internationalized country-code TLD'
else:
tld_type = 'internationalized ' + tld_type
TopLevelDomain.tld_types[idn] = tld_type
TopLevelDomain.tld_types[tld] = tld_type
elif state == 'ICCTLD':
(dns, idn, _country, _lang, _script,
_translit, _comment, cctld, _dnssec) = line.split('\t')
dns = dns.lstrip('.')
cctld = cctld.lstrip('.')
idn = idn.lstrip('.')
for tld in (dns, idn):
TopLevelDomain.tld_types[tld] \
= 'internationalized country-code TLD'
TopLevelDomain.tld_ccs[tld] = cctld
elif state == 'INTERNATIONAL_BRAND_TLD':
(dns, idn, _entity, _script, _translit,
_comments, _dnssec) = line.split('\t')
dns = dns.lstrip('.')
idn = idn.lstrip('.')
TopLevelDomain.tld_types[dns] = 'internationalized generic TLD'
TopLevelDomain.tld_types[idn] = 'internationalized generic TLD'
elif state == 'INTERNATIONAL_TEST_TLD':
(dns, idn, _translit, _lang, _script, _test) = line.split('\t')
dns = dns.lstrip('.')
idn = idn.lstrip('.')
TopLevelDomain.tld_types[dns] = 'internationalized test TLD'
TopLevelDomain.tld_types[idn] = 'internationalized test TLD'
@staticmethod
def short_type(name):
if name in TopLevelDomain.short_types:
return TopLevelDomain.short_types[name]
return name
__DATA__ = '''\
__IANA__
# https://www.iana.org/domains/root/db
# (update 2021-04-24)
# Domain Type Sponsoring Organisation
.aaa generic American Automobile Association, Inc.
.aarp generic AARP
.abarth generic Fiat Chrysler Automobiles N.V.
.abb generic ABB Ltd
.abbott generic Abbott Laboratories, Inc.
.abbvie generic AbbVie Inc.
.abc generic Disney Enterprises, Inc.
.able generic Able Inc.
.abogado generic Registry Services, LLC
.abudhabi generic Abu Dhabi Systems and Information Centre
.ac country-code Internet Computer Bureau Limited
.academy generic Binky Moon, LLC
.accenture generic Accenture plc
.accountant generic dot Accountant Limited
.accountants generic Binky Moon, LLC
.aco generic ACO Severin Ahlmann GmbH & Co. KG
.active generic Not assigned
.actor generic Dog Beach, LLC
.ad country-code Andorra Telecom
.adac generic Allgemeiner Deutscher Automobil-Club e.V. (ADAC)
.ads generic Charleston Road Registry Inc.
.adult generic ICM Registry AD LLC
.ae country-code Telecommunication Regulatory Authority (TRA)
.aeg generic Aktiebolaget Electrolux
.aero sponsored Societe Internationale de Telecommunications Aeronautique (SITA INC USA)
.aetna generic Aetna Life Insurance Company
.af country-code Ministry of Communications and IT
.afamilycompany generic Johnson Shareholdings, Inc.
.afl generic Australian Football League
.africa generic ZA Central Registry NPC trading as Registry.Africa
.ag country-code UHSA School of Medicine
.agakhan generic Fondation Aga Khan (Aga Khan Foundation)
.agency generic Binky Moon, LLC
.ai country-code Government of Anguilla
.aig generic American International Group, Inc.
.aigo generic Not assigned
.airbus generic Airbus S.A.S.
.airforce generic Dog Beach, LLC
.airtel generic Bharti Airtel Limited
.akdn generic Fondation Aga Khan (Aga Khan Foundation)
.al country-code Electronic and Postal Communications Authority - AKEP
.alfaromeo generic Fiat Chrysler Automobiles N.V.
.alibaba generic Alibaba Group Holding Limited
.alipay generic Alibaba Group Holding Limited
.allfinanz generic Allfinanz Deutsche Vermögensberatung Aktiengesellschaft
.allstate generic Allstate Fire and Casualty Insurance Company
.ally generic Ally Financial Inc.
.alsace generic REGION GRAND EST
.alstom generic ALSTOM
.am country-code "Internet Society" Non-governmental Organization
.amazon generic Amazon Registry Services, Inc.
.americanexpress generic American Express Travel Related Services Company, Inc.
.americanfamily generic AmFam, Inc.
.amex generic American Express Travel Related Services Company, Inc.
.amfam generic AmFam, Inc.
.amica generic Amica Mutual Insurance Company
.amsterdam generic Gemeente Amsterdam
.an country-code Retired
.analytics generic Campus IP LLC
.android generic Charleston Road Registry Inc.
.anquan generic QIHOO 360 TECHNOLOGY CO. LTD.
.anz generic Australia and New Zealand Banking Group Limited
.ao country-code Ministry of Telecommunications and Information Technologies (MTTI)
.aol generic OATH Inc.
.apartments generic Binky Moon, LLC
.app generic Charleston Road Registry Inc.
.apple generic Apple Inc.
.aq country-code Antarctica Network Information Centre Limited
.aquarelle generic Aquarelle.com
.ar country-code Presidencia de la Nación – Secretaría Legal y Técnica
.arab generic League of Arab States
.aramco generic Aramco Services Company
.archi generic Afilias Limited
.army generic Dog Beach, LLC
.arpa infrastructure Internet Architecture Board (IAB)
.art generic UK Creative Ideas Limited
.arte generic Association Relative à la Télévision Européenne G.E.I.E.
.as country-code AS Domain Registry
.asda generic Wal-Mart Stores, Inc.
.asia sponsored DotAsia Organisation Ltd.
.associates generic Binky Moon, LLC
.at country-code nic.at GmbH
.athleta generic The Gap, Inc.
.attorney generic Dog Beach, LLC
.au country-code .au Domain Administration (auDA)
.auction generic Dog Beach, LLC
.audi generic AUDI Aktiengesellschaft
.audible generic Amazon Registry Services, Inc.
.audio generic UNR Corp.
.auspost generic Australian Postal Corporation
.author generic Amazon Registry Services, Inc.
.auto generic XYZ.COM LLC
.autos generic XYZ.COM LLC
.avianca generic Avianca Holdings S.A.
.aw country-code SETAR
.aws generic AWS Registry LLC
.ax country-code Ålands landskapsregering
.axa generic AXA Group Operations SAS
.az country-code IntraNS
.azure generic Microsoft Corporation
.ba country-code Universtiy Telinformatic Centre (UTIC)
.baby generic XYZ.COM LLC
.baidu generic Baidu, Inc.
.banamex generic Citigroup Inc.
.bananarepublic generic The Gap, Inc.
.band generic Dog Beach, LLC
.bank generic fTLD Registry Services, LLC
.bar generic Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
.barcelona generic Municipi de Barcelona
.barclaycard generic Barclays Bank PLC
.barclays generic Barclays Bank PLC
.barefoot generic Gallo Vineyards, Inc.
.bargains generic Binky Moon, LLC
.baseball generic MLB Advanced Media DH, LLC
.basketball generic Fédération Internationale de Basketball (FIBA)
.bauhaus generic Werkhaus GmbH
.bayern generic Bayern Connect GmbH
.bb country-code "Government of Barbados Ministry of Economic Affairs and Development Telecommunications Unit"
.bbc generic British Broadcasting Corporation
.bbt generic BB&T Corporation
.bbva generic BANCO BILBAO VIZCAYA ARGENTARIA, S.A.
.bcg generic The Boston Consulting Group, Inc.
.bcn generic Municipi de Barcelona
.bd country-code Posts and Telecommunications Division
.be country-code DNS Belgium vzw/asbl
.beats generic Beats Electronics, LLC
.beauty generic XYZ.COM LLC
.beer generic Registry Services, LLC
.bentley generic Bentley Motors Limited
.berlin generic dotBERLIN GmbH & Co. KG
.best generic BestTLD Pty Ltd
.bestbuy generic BBY Solutions, Inc.
.bet generic Afilias Limited
.bf country-code ARCE-AutoritÈ de RÈgulation des Communications Electroniques
.bg country-code Register.BG
.bh country-code Telecommunications Regulatory Authority (TRA)
.bharti generic Bharti Enterprises (Holding) Private Limited
.bi country-code Centre National de l'Informatique
.bible generic American Bible Society
.bid generic dot Bid Limited
.bike generic Binky Moon, LLC
.bing generic Microsoft Corporation
.bingo generic Binky Moon, LLC
.bio generic Afilias Limited
.biz generic-restricted Registry Services, LLC
.bj country-code Autorité de Régulation des Communications Electroniques et de la Poste du Bénin (ARCEP BENIN)
.bl country-code Not assigned
.black generic Afilias Limited
.blackfriday generic UNR Corp.
.blanco generic Not assigned
.blockbuster generic Dish DBS Corporation
.blog generic Knock Knock WHOIS There, LLC
.bloomberg generic Bloomberg IP Holdings LLC
.blue generic Afilias Limited
.bm country-code Registry General Department, Ministry of Home Affairs
.bms generic Bristol-Myers Squibb Company
.bmw generic Bayerische Motoren Werke Aktiengesellschaft
.bn country-code Authority for Info-communications Technology Industry of Brunei Darussalam (AITI)
.bnl generic Not assigned
.bnpparibas generic BNP Paribas
.bo country-code Agencia para el Desarrollo de la Información de la Sociedad en Bolivia
.boats generic XYZ.COM LLC
.boehringer generic Boehringer Ingelheim International GmbH
.bofa generic Bank of America Corporation
.bom generic Núcleo de Informação e Coordenação do Ponto BR - NIC.br
.bond generic Shortdot SA
.boo generic Charleston Road Registry Inc.
.book generic Amazon Registry Services, Inc.
.booking generic Booking.com B.V.
.boots generic Not assigned
.bosch generic Robert Bosch GMBH
.bostik generic Bostik SA
.boston generic Boston TLD Management, LLC
.bot generic Amazon Registry Services, Inc.
.boutique generic Binky Moon, LLC
.box generic Intercap Registry Inc.
.bq country-code Not assigned
.br country-code Comite Gestor da Internet no Brasil
.bradesco generic Banco Bradesco S.A.
.bridgestone generic Bridgestone Corporation
.broadway generic Celebrate Broadway, Inc.
.broker generic Dog Beach, LLC
.brother generic Brother Industries, Ltd.
.brussels generic DNS.be vzw
.bs country-code University of The Bahamas
.bt country-code Ministry of Information and Communications
.budapest generic Minds + Machines Group Limited
.bugatti generic Bugatti International SA
.build generic Plan Bee LLC
.builders generic Binky Moon, LLC
.business generic Binky Moon, LLC
.buy generic Amazon Registry Services, INC
.buzz generic DOTSTRATEGY CO.
.bv country-code Norid A/S
.bw country-code Botswana Communications Regulatory Authority (BOCRA)
.by country-code Reliable Software, Ltd.
.bz country-code University of Belize
.bzh generic Association www.bzh
.ca country-code Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)
.cab generic Binky Moon, LLC
.cafe generic Binky Moon, LLC
.cal generic Charleston Road Registry Inc.
.call generic Amazon Registry Services, Inc.
.calvinklein generic PVH gTLD Holdings LLC
.cam generic AC Webconnecting Holding B.V.
.camera generic Binky Moon, LLC
.camp generic Binky Moon, LLC
.cancerresearch generic Australian Cancer Research Foundation
.canon generic Canon Inc.
.capetown generic ZA Central Registry NPC trading as ZA Central Registry
.capital generic Binky Moon, LLC
.capitalone generic Capital One Financial Corporation
.car generic XYZ.COM LLC
.caravan generic Caravan International, Inc.
.cards generic Binky Moon, LLC
.care generic Binky Moon, LLC
.career generic dotCareer LLC
.careers generic Binky Moon, LLC
.cars generic XYZ.COM LLC
.cartier generic Not assigned
.casa generic Registry Services, LLC
.case generic CNH Industrial N.V.
.caseih generic Not assigned
.cash generic Binky Moon, LLC
.casino generic Binky Moon, LLC
.cat sponsored Fundacio puntCAT
.catering generic Binky Moon, LLC
.catholic generic Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)
.cba generic COMMONWEALTH BANK OF AUSTRALIA
.cbn generic The Christian Broadcasting Network, Inc.
.cbre generic CBRE, Inc.
.cbs generic CBS Domains Inc.
.cc country-code "eNIC Cocos (Keeling) Islands Pty. Ltd. d/b/a Island Internet Services"
.cd country-code Office Congolais des Postes et Télécommunications - OCPT
.ceb generic Not assigned
.center generic Binky Moon, LLC
.ceo generic CEOTLD Pty Ltd
.cern generic European Organization for Nuclear Research ("CERN")
.cf country-code Societe Centrafricaine de Telecommunications (SOCATEL)
.cfa generic CFA Institute
.cfd generic DOTCFD REGISTRY LTD
.cg country-code Interpoint Switzerland
.ch country-code SWITCH The Swiss Education & Research Network
.chanel generic Chanel International B.V.
.channel generic Charleston Road Registry Inc.
.charity generic Binky Moon, LLC
.chase generic JPMorgan Chase Bank, National Association
.chat generic Binky Moon, LLC
.cheap generic Binky Moon, LLC
.chintai generic CHINTAI Corporation
.chloe generic Not assigned
.christmas generic UNR Corp.
.chrome generic Charleston Road Registry Inc.
.chrysler generic Not assigned
.church generic Binky Moon, LLC
.ci country-code Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)
.cipriani generic Hotel Cipriani Srl
.circle generic Amazon Registry Services, Inc.
.cisco generic Cisco Technology, Inc.
.citadel generic Citadel Domain LLC
.citi generic Citigroup Inc.
.citic generic CITIC Group Corporation
.city generic Binky Moon, LLC
.cityeats generic Lifestyle Domain Holdings, Inc.
.ck country-code Telecom Cook Islands Ltd.
.cl country-code NIC Chile (University of Chile)
.claims generic Binky Moon, LLC
.cleaning generic Binky Moon, LLC
.click generic UNR Corp.
.clinic generic Binky Moon, LLC
.clinique generic The Estée Lauder Companies Inc.
.clothing generic Binky Moon, LLC
.cloud generic ARUBA PEC S.p.A.
.club generic Registry Services, LLC
.clubmed generic Club Méditerranée S.A.
.cm country-code Cameroon Telecommunications (CAMTEL)
.cn country-code China Internet Network Information Center (CNNIC)
.co country-code Ministry of Information and Communications Technologies (MinTIC)
.coach generic Binky Moon, LLC
.codes generic Binky Moon, LLC
.coffee generic Binky Moon, LLC
.college generic XYZ.COM LLC
.cologne generic dotKoeln GmbH
.com generic VeriSign Global Registry Services
.comcast generic Comcast IP Holdings I, LLC
.commbank generic COMMONWEALTH BANK OF AUSTRALIA
.community generic Binky Moon, LLC
.company generic Binky Moon, LLC
.compare generic Registry Services, LLC
.computer generic Binky Moon, LLC
.comsec generic VeriSign, Inc.
.condos generic Binky Moon, LLC
.construction generic Binky Moon, LLC
.consulting generic Dog Beach, LLC
.contact generic Dog Beach, LLC
.contractors generic Binky Moon, LLC
.cooking generic Registry Services, LLC
.cookingchannel generic Lifestyle Domain Holdings, Inc.
.cool generic Binky Moon, LLC
.coop sponsored DotCooperation LLC
.corsica generic Collectivité de Corse
.country generic Top Level Domain Holdings Limited
.coupon generic Amazon Registry Services, Inc.
.coupons generic Binky Moon, LLC
.courses generic OPEN UNIVERSITIES AUSTRALIA PTY LTD
.cpa generic American Institute of Certified Public Accountants
.cr country-code "National Academy of Sciences Academia Nacional de Ciencias"
.credit generic Binky Moon, LLC
.creditcard generic Binky Moon, LLC
.creditunion generic DotCooperation, LLC
.cricket generic dot Cricket Limited
.crown generic Crown Equipment Corporation
.crs generic Federated Co-operatives Limited
.cruise generic Viking River Cruises (Bermuda) Ltd.
.cruises generic Binky Moon, LLC
.csc generic Alliance-One Services, Inc.
.cu country-code "CENIAInternet Industria y San Jose Capitolio Nacional"
.cuisinella generic SCHMIDT GROUPE S.A.S.
.cv country-code Agência Reguladora Multissectorial da Economia (ARME)
.cw country-code University of Curacao
.cx country-code Christmas Island Domain Administration Limited
.cy country-code University of Cyprus
.cymru generic Nominet UK
.cyou generic Shortdot SA
.cz country-code CZ.NIC, z.s.p.o
.dabur generic Dabur India Limited
.dad generic Charleston Road Registry Inc.
.dance generic Dog Beach, LLC
.data generic Dish DBS Corporation
.date generic dot Date Limited
.dating generic Binky Moon, LLC
.datsun generic NISSAN MOTOR CO., LTD.
.day generic Charleston Road Registry Inc.
.dclk generic Charleston Road Registry Inc.
.dds generic Registry Services, LLC
.de country-code DENIC eG
.deal generic Amazon Registry Services, Inc.
.dealer generic Intercap Registry Inc.
.deals generic Binky Moon, LLC
.degree generic Dog Beach, LLC
.delivery generic Binky Moon, LLC
.dell generic Dell Inc.
.deloitte generic Deloitte Touche Tohmatsu
.delta generic Delta Air Lines, Inc.
.democrat generic Dog Beach, LLC
.dental generic Binky Moon, LLC
.dentist generic Dog Beach, LLC
.desi generic Desi Networks LLC
.design generic Registry Services, LLC
.dev generic Charleston Road Registry Inc.
.dhl generic Deutsche Post AG
.diamonds generic Binky Moon, LLC
.diet generic UNR Corp.
.digital generic Binky Moon, LLC
.direct generic Binky Moon, LLC
.directory generic Binky Moon, LLC
.discount generic Binky Moon, LLC
.discover generic Discover Financial Services
.dish generic Dish DBS Corporation
.diy generic Lifestyle Domain Holdings, Inc.
.dj country-code Djibouti Telecom S.A
.dk country-code Dansk Internet Forum
.dm country-code DotDM Corporation
.dnp generic Dai Nippon Printing Co., Ltd.
.do country-code "Pontificia Universidad Catolica Madre y Maestra Recinto Santo Tomas de Aquino"
.docs generic Charleston Road Registry Inc.
.doctor generic Binky Moon, LLC
.dodge generic Not assigned
.dog generic Binky Moon, LLC
.doha generic Not assigned
.domains generic Binky Moon, LLC
.doosan generic Retired
.dot generic Dish DBS Corporation
.download generic dot Support Limited
.drive generic Charleston Road Registry Inc.
.dtv generic Dish DBS Corporation
.dubai generic Dubai Smart Government Department
.duck generic Johnson Shareholdings, Inc.
.dunlop generic The Goodyear Tire & Rubber Company
.duns generic Not assigned
.dupont generic E. I. du Pont de Nemours and Company
.durban generic ZA Central Registry NPC trading as ZA Central Registry
.dvag generic Deutsche Vermögensberatung Aktiengesellschaft DVAG
.dvr generic Hughes Satellite Systems Corporation
.dz country-code CERIST
.earth generic Interlink Co., Ltd.
.eat generic Charleston Road Registry Inc.
.ec country-code ECUADORDOMAIN S.A.
.eco generic Big Room Inc.
.edeka generic EDEKA Verband kaufmännischer Genossenschaften e.V.
.edu sponsored EDUCAUSE
.education generic Binky Moon, LLC
.ee country-code Eesti Interneti Sihtasutus (EIS)
.eg country-code "Egyptian Universities Network (EUN) Supreme Council of Universities"
.eh country-code Not assigned
.email generic Binky Moon, LLC
.emerck generic Merck KGaA
.energy generic Binky Moon, LLC
.engineer generic Dog Beach, LLC
.engineering generic Binky Moon, LLC
.enterprises generic Binky Moon, LLC
.epost generic Not assigned
.epson generic Seiko Epson Corporation
.equipment generic Binky Moon, LLC
.er country-code Eritrea Telecommunication Services Corporation (EriTel)
.ericsson generic Telefonaktiebolaget L M Ericsson
.erni generic ERNI Group Holding AG
.es country-code Red.es
.esq generic Charleston Road Registry Inc.
.estate generic Binky Moon, LLC
.esurance generic Not assigned
.et country-code Ethio telecom
.etisalat generic Emirates Telecommunications Corporation (trading as Etisalat)
.eu country-code EURid vzw/asbl
.eurovision generic European Broadcasting Union (EBU)
.eus generic Puntueus Fundazioa
.events generic Binky Moon, LLC
.everbank generic Not assigned
.exchange generic Binky Moon, LLC
.expert generic Binky Moon, LLC
.exposed generic Binky Moon, LLC
.express generic Binky Moon, LLC
.extraspace generic Extra Space Storage LLC
.fage generic Fage International S.A.
.fail generic Binky Moon, LLC
.fairwinds generic FairWinds Partners, LLC
.faith generic dot Faith Limited
.family generic Dog Beach, LLC
.fan generic Dog Beach, LLC
.fans generic ZDNS International Limited
.farm generic Binky Moon, LLC
.farmers generic Farmers Insurance Exchange
.fashion generic Registry Services, LLC
.fast generic Amazon Registry Services, Inc.
.fedex generic Federal Express Corporation
.feedback generic Top Level Spectrum, Inc.
.ferrari generic Fiat Chrysler Automobiles N.V.
.ferrero generic Ferrero Trading Lux S.A.
.fi country-code Finnish Transport and Communications Agency Traficom
.fiat generic Fiat Chrysler Automobiles N.V.
.fidelity generic Fidelity Brokerage Services LLC
.fido generic Rogers Communications Canada Inc.
.film generic Motion Picture Domain Registry Pty Ltd
.final generic Núcleo de Informação e Coordenação do Ponto BR - NIC.br
.finance generic Binky Moon, LLC
.financial generic Binky Moon, LLC
.fire generic Amazon Registry Services, Inc.
.firestone generic Bridgestone Licensing Services, Inc.
.firmdale generic Firmdale Holdings Limited
.fish generic Binky Moon, LLC
.fishing generic Registry Services, LLC
.fit generic Registry Services, LLC
.fitness generic Binky Moon, LLC
.fj country-code "The University of the South Pacific IT Services"
.fk country-code Falkland Islands Government
.flickr generic Flickr, Inc.
.flights generic Binky Moon, LLC
.flir generic FLIR Systems, Inc.
.florist generic Binky Moon, LLC
.flowers generic UNR Corp.
.flsmidth generic Retired
.fly generic Charleston Road Registry Inc.
.fm country-code FSM Telecommunications Corporation
.fo country-code FO Council
.foo generic Charleston Road Registry Inc.
.food generic Lifestyle Domain Holdings, Inc.
.foodnetwork generic Lifestyle Domain Holdings, Inc.
.football generic Binky Moon, LLC
.ford generic Ford Motor Company
.forex generic Dog Beach, LLC
.forsale generic Dog Beach, LLC
.forum generic Fegistry, LLC
.foundation generic Binky Moon, LLC
.fox generic FOX Registry, LLC
.fr country-code Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)
.free generic Amazon Registry Services, Inc.
.fresenius generic Fresenius Immobilien-Verwaltungs-GmbH
.frl generic FRLregistry B.V.
.frogans generic OP3FT
.frontdoor generic Lifestyle Domain Holdings, Inc.
.frontier generic Frontier Communications Corporation
.ftr generic Frontier Communications Corporation
.fujitsu generic Fujitsu Limited
.fujixerox generic Not assigned
.fun generic Radix FZC
.fund generic Binky Moon, LLC
.furniture generic Binky Moon, LLC
.futbol generic Dog Beach, LLC
.fyi generic Binky Moon, LLC
.ga country-code Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)
.gal generic Asociación puntoGAL
.gallery generic Binky Moon, LLC
.gallo generic Gallo Vineyards, Inc.
.gallup generic Gallup, Inc.
.game generic UNR Corp.
.games generic Dog Beach, LLC
.gap generic The Gap, Inc.
.garden generic Registry Services, LLC
.gay generic Top Level Design, LLC
.gb country-code Reserved Domain - IANA
.gbiz generic Charleston Road Registry Inc.
.gd country-code The National Telecommunications Regulatory Commission (NTRC)
.gdn generic Joint Stock Company "Navigation-information systems"
.ge country-code Caucasus Online LLC
.gea generic GEA Group Aktiengesellschaft
.gent generic Combell nv
.genting generic Resorts World Inc. Pte. Ltd.
.george generic Wal-Mart Stores, Inc.
.gf country-code CANAL+ TELECOM
.gg country-code Island Networks Ltd.
.ggee generic GMO Internet, Inc.
.gh country-code Network Computer Systems Limited
.gi country-code Sapphire Networks
.gift generic Uniregistry, Corp.
.gifts generic Binky Moon, LLC
.gives generic Dog Beach, LLC
.giving generic Giving Limited
.gl country-code TELE Greenland A/S
.glade generic Johnson Shareholdings, Inc.
.glass generic Binky Moon, LLC
.gle generic Charleston Road Registry Inc.
.global generic Dot Global Domain Registry Limited
.globo generic Globo Comunicação e Participações S.A
.gm country-code GM-NIC
.gmail generic Charleston Road Registry Inc.
.gmbh generic Binky Moon, LLC
.gmo generic GMO Internet, Inc.
.gmx generic 1&1 Mail & Media GmbH
.gn country-code Centre National des Sciences Halieutiques de Boussoura
.godaddy generic Go Daddy East, LLC
.gold generic Binky Moon, LLC
.goldpoint generic YODOBASHI CAMERA CO.,LTD.
.golf generic Binky Moon, LLC
.goo generic NTT Resonant Inc.
.goodhands generic Not assigned
.goodyear generic The Goodyear Tire & Rubber Company
.goog generic Charleston Road Registry Inc.
.google generic Charleston Road Registry Inc.
.gop generic Republican State Leadership Committee, Inc.
.got generic Amazon Registry Services, Inc.
.gov sponsored Cybersecurity and Infrastructure Security Agency
.gp country-code Networking Technologies Group
.gq country-code GETESA
.gr country-code ICS-FORTH GR
.grainger generic Grainger Registry Services, LLC
.graphics generic Binky Moon, LLC
.gratis generic Binky Moon, LLC
.green generic Afilias Limited
.gripe generic Binky Moon, LLC
.grocery generic Wal-Mart Stores, Inc.
.group generic Binky Moon, LLC
.gs country-code Government of South Georgia and South Sandwich Islands (GSGSSI)
.gt country-code Universidad del Valle de Guatemala
.gu country-code University of Guam
.guardian generic The Guardian Life Insurance Company of America
.gucci generic Guccio Gucci S.p.a.
.guge generic Charleston Road Registry Inc.
.guide generic Binky Moon, LLC
.guitars generic UNR Corp.
.guru generic Binky Moon, LLC
.gw country-code Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau
.gy country-code University of Guyana
.hair generic XYZ.COM LLC
.hamburg generic Hamburg Top-Level-Domain GmbH
.hangout generic Charleston Road Registry Inc.
.haus generic Dog Beach, LLC
.hbo generic HBO Registry Services, Inc.
.hdfc generic HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED
.hdfcbank generic HDFC Bank Limited
.health generic DotHealth, LLC
.healthcare generic Binky Moon, LLC
.help generic UNR Corp.
.helsinki generic City of Helsinki
.here generic Charleston Road Registry Inc.
.hermes generic Hermes International
.hgtv generic Lifestyle Domain Holdings, Inc.
.hiphop generic UNR Corp.
.hisamitsu generic Hisamitsu Pharmaceutical Co.,Inc.
.hitachi generic Hitachi, Ltd.
.hiv generic UNR Corp.
.hk country-code Hong Kong Internet Registration Corporation Ltd.
.hkt generic PCCW-HKT DataCom Services Limited
.hm country-code HM Domain Registry
.hn country-code Red de Desarrollo Sostenible Honduras
.hockey generic Binky Moon, LLC
.holdings generic Binky Moon, LLC
.holiday generic Binky Moon, LLC
.homedepot generic Home Depot Product Authority, LLC
.homegoods generic The TJX Companies, Inc.
.homes generic XYZ.COM LLC
.homesense generic The TJX Companies, Inc.
.honda generic Honda Motor Co., Ltd.
.honeywell generic Not assigned
.horse generic Registry Services, LLC
.hospital generic Binky Moon, LLC
.host generic Radix FZC
.hosting generic UNR Corp.
.hot generic Amazon Registry Services, Inc.
.hoteles generic Travel Reservations SRL
.hotels generic Booking.com B.V.
.hotmail generic Microsoft Corporation
.house generic Binky Moon, LLC
.how generic Charleston Road Registry Inc.
.hr country-code CARNet - Croatian Academic and Research Network
.hsbc generic HSBC Global Services (UK) Limited
.ht country-code Consortium FDS/RDDH
.htc generic Not assigned
.hu country-code Council of Hungarian Internet Providers (CHIP)
.hughes generic Hughes Satellite Systems Corporation
.hyatt generic Hyatt GTLD, L.L.C.
.hyundai generic Hyundai Motor Company
.ibm generic International Business Machines Corporation
.icbc generic Industrial and Commercial Bank of China Limited
.ice generic IntercontinentalExchange, Inc.
.icu generic Shortdot SA
.id country-code Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)
.ie country-code "University College Dublin Computing Services Computer Centre"
.ieee generic IEEE Global LLC
.ifm generic ifm electronic gmbh
.iinet generic Retired
.ikano generic Ikano S.A.
.il country-code The Israel Internet Association (RA)
.im country-code Isle of Man Government
.imamat generic Fondation Aga Khan (Aga Khan Foundation)
.imdb generic Amazon Registry Services, Inc.
.immo generic Binky Moon, LLC
.immobilien generic Dog Beach, LLC
.in country-code National Internet Exchange of India
.inc generic Intercap Registry Inc.
.industries generic Binky Moon, LLC
.infiniti generic NISSAN MOTOR CO., LTD.
.info generic Afilias Limited
.ing generic Charleston Road Registry Inc.
.ink generic Top Level Design, LLC
.institute generic Binky Moon, LLC
.insurance generic fTLD Registry Services LLC
.insure generic Binky Moon, LLC
.int sponsored Internet Assigned Numbers Authority
.intel generic Not assigned
.international generic Binky Moon, LLC
.intuit generic Intuit Administrative Services, Inc.
.investments generic Binky Moon, LLC
.io country-code Internet Computer Bureau Limited
.ipiranga generic Ipiranga Produtos de Petroleo S.A.
.iq country-code Communications and Media Commission (CMC)
.ir country-code Institute for Research in Fundamental Sciences
.irish generic Binky Moon, LLC
.is country-code ISNIC - Internet Iceland ltd.
.iselect generic Not assigned
.ismaili generic Fondation Aga Khan (Aga Khan Foundation)
.ist generic Istanbul Metropolitan Municipality
.istanbul generic Istanbul Metropolitan Municipality
.it country-code IIT - CNR
.itau generic Itau Unibanco Holding S.A.
.itv generic ITV Services Limited
.iveco generic Not assigned
.iwc generic Not assigned
.jaguar generic Jaguar Land Rover Ltd
.java generic Oracle Corporation
.jcb generic JCB Co., Ltd.
.jcp generic Not assigned
.je country-code Island Networks (Jersey) Ltd.
.jeep generic FCA US LLC.
.jetzt generic Binky Moon, LLC
.jewelry generic Binky Moon, LLC
.jio generic Affinity Names, Inc.
.jlc generic Not assigned
.jll generic Jones Lang LaSalle Incorporated
.jm country-code University of West Indies
.jmp generic Matrix IP LLC
.jnj generic Johnson & Johnson Services, Inc.
.jo country-code Ministry of Digital Economy and Entrepreneurship (MoDEE)
.jobs sponsored Employ Media LLC
.joburg generic ZA Central Registry NPC trading as ZA Central Registry
.jot generic Amazon Registry Services, Inc.
.joy generic Amazon Registry Services, Inc.
.jp country-code Japan Registry Services Co., Ltd.
.jpmorgan generic JPMorgan Chase Bank, National Association
.jprs generic Japan Registry Services Co., Ltd.
.juegos generic UNR Corp.
.juniper generic JUNIPER NETWORKS, INC.
.kaufen generic Dog Beach, LLC
.kddi generic KDDI CORPORATION
.ke country-code Kenya Network Information Center (KeNIC)
.kerryhotels generic Kerry Trading Co. Limited
.kerrylogistics generic Kerry Trading Co. Limited
.kerryproperties generic Kerry Trading Co. Limited
.kfh generic Kuwait Finance House
.kg country-code AsiaInfo Telecommunication Enterprise
.kh country-code Telecommunication Regulator of Cambodia (TRC)
.ki country-code Ministry of Communications, Transport, and Tourism Development
.kia generic KIA MOTORS CORPORATION
.kim generic Afilias Limited
.kinder generic Ferrero Trading Lux S.A.
.kindle generic Amazon Registry Services, Inc.
.kitchen generic Binky Moon, LLC
.kiwi generic DOT KIWI LIMITED
.km country-code Comores Telecom
.kn country-code Ministry of Finance, Sustainable Development Information & Technology
.koeln generic dotKoeln GmbH
.komatsu generic Komatsu Ltd.
.kosher generic Kosher Marketing Assets LLC
.kp country-code Star Joint Venture Company
.kpmg generic KPMG International Cooperative (KPMG International Genossenschaft)
.kpn generic Koninklijke KPN N.V.
.kr country-code Korea Internet & Security Agency (KISA)
.krd generic KRG Department of Information Technology
.kred generic KredTLD Pty Ltd
.kuokgroup generic Kerry Trading Co. Limited
.kw country-code Communications and Information Technology Regulatory Authority
.ky country-code Utility Regulation and Competition Office (OfReg)
.kyoto generic Academic Institution: Kyoto Jyoho Gakuen
.kz country-code Association of IT Companies of Kazakhstan
.la country-code Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications
.lacaixa generic CAIXA D'ESTALVIS I PENSIONS DE BARCELONA
.ladbrokes generic Not assigned
.lamborghini generic Automobili Lamborghini S.p.A.
.lamer generic The Estée Lauder Companies Inc.
.lancaster generic LANCASTER
.lancia generic Fiat Chrysler Automobiles N.V.
.lancome generic Not assigned
.land generic Binky Moon, LLC
.landrover generic Jaguar Land Rover Ltd
.lanxess generic LANXESS Corporation
.lasalle generic Jones Lang LaSalle Incorporated
.lat generic ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico
.latino generic Dish DBS Corporation
.latrobe generic La Trobe University
.law generic Registry Services, LLC
.lawyer generic Dog Beach, LLC
.lb country-code "American University of Beirut Computing and Networking Services"
.lc country-code University of Puerto Rico
.lds generic IRI Domain Management, LLC
.lease generic Binky Moon, LLC
.leclerc generic A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc
.lefrak generic LeFrak Organization, Inc.
.legal generic Binky Moon, LLC
.lego generic LEGO Juris A/S
.lexus generic TOYOTA MOTOR CORPORATION
.lgbt generic Afilias Limited
.li country-code SWITCH The Swiss Education & Research Network
.liaison generic Not assigned
.lidl generic Schwarz Domains und Services GmbH & Co. KG
.life generic Binky Moon, LLC
.lifeinsurance generic American Council of Life Insurers
.lifestyle generic Lifestyle Domain Holdings, Inc.
.lighting generic Binky Moon, LLC
.like generic Amazon Registry Services, Inc.
.lilly generic Eli Lilly and Company
.limited generic Binky Moon, LLC
.limo generic Binky Moon, LLC
.lincoln generic Ford Motor Company
.linde generic Linde Aktiengesellschaft
.link generic UNR Corp.
.lipsy generic Lipsy Ltd
.live generic Dog Beach, LLC
.living generic Lifestyle Domain Holdings, Inc.
.lixil generic LIXIL Group Corporation
.lk country-code "Council for Information Technology LK Domain Registrar"
.llc generic Afilias Limited
.llp generic UNR Corp.
.loan generic dot Loan Limited
.loans generic Binky Moon, LLC
.locker generic Dish DBS Corporation
.locus generic Locus Analytics LLC
.loft generic Annco, Inc.
.lol generic UNR Corp.
.london generic Dot London Domains Limited
.lotte generic Lotte Holdings Co., Ltd.
.lotto generic Afilias Limited
.love generic Merchant Law Group LLP
.lpl generic LPL Holdings, Inc.
.lplfinancial generic LPL Holdings, Inc.
.lr country-code Data Technology Solutions, Inc.
.ls country-code Lesotho Network Information Centre Proprietary (LSNIC)
.lt country-code Kaunas University of Technology
.ltd generic Binky Moon, LLC
.ltda generic InterNetX Corp.
.lu country-code RESTENA
.lundbeck generic H. Lundbeck A/S
.lupin generic Not assigned
.luxe generic Registry Services, LLC
.luxury generic Luxury Partners LLC
.lv country-code "University of Latvia Institute of Mathematics and Computer Science Department of Network Solutions (DNS)"
.ly country-code General Post and Telecommunication Company
.ma country-code Agence Nationale de Réglementation des Télécommunications (ANRT)
.macys generic Macys, Inc.
.madrid generic Comunidad de Madrid
.maif generic Mutuelle Assurance Instituteur France (MAIF)
.maison generic Binky Moon, LLC
.makeup generic XYZ.COM LLC
.man generic MAN SE
.management generic Binky Moon, LLC
.mango generic PUNTO FA S.L.
.map generic Charleston Road Registry Inc.
.market generic Dog Beach, LLC
.marketing generic Binky Moon, LLC
.markets generic Dog Beach, LLC
.marriott generic Marriott Worldwide Corporation
.marshalls generic The TJX Companies, Inc.
.maserati generic Fiat Chrysler Automobiles N.V.
.mattel generic Mattel Sites, Inc.
.mba generic Binky Moon, LLC
.mc country-code Direction des Plateformes et des Ressources Numériques
.mcd generic Not assigned
.mcdonalds generic Not assigned
.mckinsey generic McKinsey Holdings, Inc.
.md country-code IP Serviciul Tehnologia Informatiei si Securitate Cibernetica
.me country-code Government of Montenegro
.med generic Medistry LLC
.media generic Binky Moon, LLC
.meet generic Charleston Road Registry Inc.
.melbourne generic The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation
.meme generic Charleston Road Registry Inc.
.memorial generic Dog Beach, LLC
.men generic Exclusive Registry Limited
.menu generic Wedding TLD2, LLC
.meo generic Not assigned
.merckmsd generic MSD Registry Holdings, Inc.
.metlife generic Not assigned
.mf country-code Not assigned
.mg country-code NIC-MG (Network Information Center Madagascar)
.mh country-code Office of the Cabinet
.miami generic Minds + Machines Group Limited
.microsoft generic Microsoft Corporation
.mil sponsored DoD Network Information Center
.mini generic Bayerische Motoren Werke Aktiengesellschaft
.mint generic Intuit Administrative Services, Inc.
.mit generic Massachusetts Institute of Technology
.mitsubishi generic Mitsubishi Corporation
.mk country-code Macedonian Academic Research Network Skopje
.ml country-code Agence des Technologies de l’Information et de la Communication
.mlb generic MLB Advanced Media DH, LLC
.mls generic The Canadian Real Estate Association
.mm country-code Ministry of Transport and Communications
.mma generic MMA IARD
.mn country-code Datacom Co., Ltd.
.mo country-code Macao Post and Telecommunications Bureau (CTT)
.mobi generic Afilias Technologies Limited dba dotMobi
.mobile generic Dish DBS Corporation
.mobily generic Not assigned
.moda generic Dog Beach, LLC
.moe generic Interlink Co., Ltd.
.moi generic Amazon Registry Services, Inc.
.mom generic UNR Corp.
.monash generic Monash University
.money generic Binky Moon, LLC
.monster generic XYZ.COM LLC
.montblanc generic Not assigned
.mopar generic Not assigned
.mormon generic IRI Domain Management, LLC ("Applicant")
.mortgage generic Dog Beach, LLC
.moscow generic Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
.moto generic Motorola Trademark Holdings, LLC
.motorcycles generic XYZ.COM LLC
.mov generic Charleston Road Registry Inc.
.movie generic Binky Moon, LLC
.movistar generic Not assigned
.mp country-code Saipan Datacom, Inc.
.mq country-code CANAL+ TELECOM
.mr country-code Université de Nouakchott Al Aasriya
.ms country-code MNI Networks Ltd.
.msd generic MSD Registry Holdings, Inc.
.mt country-code NIC (Malta)
.mtn generic MTN Dubai Limited
.mtpc generic Retired
.mtr generic MTR Corporation Limited
.mu country-code Internet Direct Ltd
.museum sponsored Museum Domain Management Association
.mutual generic Northwestern Mutual MU TLD Registry, LLC
.mutuelle generic Retired
.mv country-code Dhiraagu Pvt. Ltd. (DHIVEHINET)
.mw country-code "Malawi Sustainable Development Network Programme (Malawi SDNP)"
.mx country-code "NIC-Mexico ITESM - Campus Monterrey"
.my country-code MYNIC Berhad
.mz country-code Centro de Informatica de Universidade Eduardo Mondlane
.na country-code Namibian Network Information Center
.nab generic National Australia Bank Limited
.nadex generic Not assigned
.nagoya generic GMO Registry, Inc.
.name generic-restricted VeriSign Information Services, Inc.
.nationwide generic Not assigned
.natura generic NATURA COSMÉTICOS S.A.
.navy generic Dog Beach, LLC
.nba generic NBA REGISTRY, LLC