forked from incognico/list-of-top-level-domains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTldDesc.php
1585 lines (1583 loc) · 65.2 KB
/
TldDesc.php
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
<?php
namespace TldEnum;
class TldDesc {
const TLD_DESC = [
'aaa' => 'American Automobile Association, Inc.',
'aarp' => 'AARP',
'abarth' => 'Fiat Chrysler Automobiles N.V.',
'abb' => 'ABB Ltd',
'abbott' => 'Abbott Laboratories, Inc.',
'abbvie' => 'AbbVie Inc.',
'abc' => 'Disney Enterprises, Inc.',
'able' => 'Able Inc.',
'abogado' => 'Top Level Domain Holdings Limited',
'abudhabi' => 'Abu Dhabi Systems and Information Centre',
'ac' => 'Ascension Island',
'academy' => 'Binky Moon, LLC',
'accenture' => 'Accenture plc',
'accountant' => 'dot Accountant Limited',
'accountants' => 'Binky Moon, LLC',
'aco' => 'ACO Severin Ahlmann GmbH & Co. KG',
'active' => 'Active Network, LLC',
'actor' => 'United TLD Holdco Ltd.',
'ad' => 'Andorra (Principality of)',
'adac' => 'Allgemeiner Deutscher Automobil-Club e.V. (ADAC)',
'ads' => 'Charleston Road Registry Inc.',
'adult' => 'ICM Registry AD LLC',
'ae' => 'United Arab Emirates',
'aeg' => 'Aktiebolaget Electrolux',
'aero' => 'Air-transport industry',
'aetna' => 'Aetna Life Insurance Company',
'af' => 'Afghanistan (Islamic Republic of)',
'afamilycompany' => 'Johnson Shareholdings, Inc.',
'afl' => 'Australian Football League',
'africa' => 'ZA Central Registry NPC trading as Registry.Africa',
'ag' => 'Antigua and Barbuda',
'agakhan' => 'Fondation Aga Khan (Aga Khan Foundation)',
'agency' => 'Binky Moon, LLC',
'ai' => 'Anguilla',
'aig' => 'American International Group, Inc.',
'aigo' => 'aigo Digital Technology Co,Ltd.',
'airbus' => 'Airbus S.A.S.',
'airforce' => 'United TLD Holdco Ltd.',
'airtel' => 'Bharti Airtel Limited',
'akdn' => 'Fondation Aga Khan (Aga Khan Foundation)',
'al' => 'Albania (Republic of)',
'alfaromeo' => 'Fiat Chrysler Automobiles N.V.',
'alibaba' => 'Alibaba Group Holding Limited',
'alipay' => 'Alibaba Group Holding Limited',
'allfinanz' => 'Allfinanz Deutsche Vermögensberatung Aktiengesellschaft',
'allstate' => 'Allstate Fire and Casualty Insurance Company',
'ally' => 'Ally Financial Inc.',
'alsace' => 'REGION GRAND EST',
'alstom' => 'ALSTOM',
'am' => 'Armenia (Republic of)',
'americanexpress' => 'American Express Travel Related Services Company, Inc.',
'americanfamily' => 'AmFam, Inc.',
'amex' => 'American Express Travel Related Services Company, Inc.',
'amfam' => 'AmFam, Inc.',
'amica' => 'Amica Mutual Insurance Company',
'amsterdam' => 'Gemeente Amsterdam',
'an' => 'Netherlands Antilles',
'analytics' => 'Campus IP LLC',
'android' => 'Charleston Road Registry Inc.',
'anquan' => 'QIHOO 360 TECHNOLOGY CO. LTD.',
'anz' => 'Australia and New Zealand Banking Group Limited',
'ao' => 'Angola (Republic of)',
'aol' => 'OATH Inc.',
'apartments' => 'Binky Moon, LLC',
'app' => 'Charleston Road Registry Inc.',
'apple' => 'Apple Inc.',
'aq' => 'Antarctica',
'aquarelle' => 'Aquarelle.com',
'ar' => 'Argentina (Argentine Republic)',
'arab' => 'League of Arab States',
'aramco' => 'Aramco Services Company',
'archi' => 'STARTING DOT LIMITED',
'army' => 'United TLD Holdco Ltd.',
'arpa' => 'Address and Routing Parameter Area',
'art' => 'UK Creative Ideas Limited',
'arte' => 'Association Relative à la Télévision Européenne G.E.I.E.',
'as' => 'American Samoa',
'asda' => 'Wal-Mart Stores, Inc.',
'asia' => 'Organisations and individuals in the Asia-Pacific region',
'associates' => 'Binky Moon, LLC',
'at' => 'Austria (Republic of)',
'athleta' => 'The Gap, Inc.',
'attorney' => 'United TLD Holdco, Ltd',
'au' => 'Australia (Commonwealth of)',
'auction' => 'United TLD HoldCo, Ltd.',
'audi' => 'AUDI Aktiengesellschaft',
'audible' => 'Amazon Registry Services, Inc.',
'audio' => 'Uniregistry, Corp.',
'auspost' => 'Australian Postal Corporation',
'author' => 'Amazon Registry Services, Inc.',
'auto' => 'Cars Registry Limited',
'autos' => 'DERAutos, LLC',
'avianca' => 'Aerovias del Continente Americano S.A. Avianca',
'aw' => 'Aruba',
'aws' => 'Amazon Registry Services, Inc.',
'ax' => 'Åland Islands',
'axa' => 'AXA SA',
'az' => 'Azerbaijan (Republic of)',
'azure' => 'Microsoft Corporation',
'ba' => 'Bosnia and Herzegovina',
'baby' => 'Johnson & Johnson Services, Inc.',
'baidu' => 'Baidu, Inc.',
'banamex' => 'Citigroup Inc.',
'bananarepublic' => 'The Gap, Inc.',
'band' => 'United TLD Holdco, Ltd',
'bank' => 'fTLD Registry Services, LLC',
'bar' => 'Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable',
'barcelona' => 'Municipi de Barcelona',
'barclaycard' => 'Barclays Bank PLC',
'barclays' => 'Barclays Bank PLC',
'barefoot' => 'Gallo Vineyards, Inc.',
'bargains' => 'Binky Moon, LLC',
'baseball' => 'MLB Advanced Media DH, LLC',
'basketball' => 'Fédération Internationale de Basketball (FIBA)',
'bauhaus' => 'Werkhaus GmbH',
'bayern' => 'Bayern Connect GmbH',
'bb' => 'Barbados',
'bbc' => 'British Broadcasting Corporation',
'bbt' => 'BB&T Corporation',
'bbva' => 'BANCO BILBAO VIZCAYA ARGENTARIA, S.A.',
'bcg' => 'The Boston Consulting Group, Inc.',
'bcn' => 'Municipi de Barcelona',
'bd' => 'Bangladesh (People\'s Republic of)',
'be' => 'Belgium (Kingdom of)',
'beats' => 'Beats Electronics, LLC',
'beauty' => 'L\'Oréal',
'beer' => 'Top Level Domain Holdings Limited',
'bentley' => 'Bentley Motors Limited',
'berlin' => 'dotBERLIN GmbH & Co. KG',
'best' => 'BestTLD Pty Ltd',
'bestbuy' => 'BBY Solutions, Inc.',
'bet' => 'Afilias plc',
'bf' => 'Burkina Faso',
'bg' => 'Bulgaria (Republic of)',
'bh' => 'Bahrain (Kingdom of)',
'bharti' => 'Bharti Enterprises (Holding) Private Limited',
'bi' => 'Burundi (Republic of)',
'bible' => 'American Bible Society',
'bid' => 'dot Bid Limited',
'bike' => 'Binky Moon, LLC',
'bing' => 'Microsoft Corporation',
'bingo' => 'Binky Moon, LLC',
'bio' => 'STARTING DOT LIMITED',
'biz' => 'Business',
'bj' => 'Benin (Republic of)',
'bl' => 'Saint Barthélemy (Collectivity of) {unassigned - see also: .gp and .fr}',
'black' => 'Afilias plc',
'blackfriday' => 'Uniregistry, Corp.',
'blanco' => 'BLANCO GmbH + Co KG',
'blockbuster' => 'Dish DBS Corporation',
'blog' => 'Knock Knock WHOIS There, LLC',
'bloomberg' => 'Bloomberg IP Holdings LLC',
'blue' => 'Afilias plc',
'bm' => 'Bermuda',
'bms' => 'Bristol-Myers Squibb Company',
'bmw' => 'Bayerische Motoren Werke Aktiengesellschaft',
'bn' => 'Brunei (Nation of Brunei - the Abode of Peace) [Negara Brunei Darussalam]',
'bnl' => 'Banca Nazionale del Lavoro',
'bnpparibas' => 'BNP Paribas',
'bo' => 'Bolivia (Plurinational State of)',
'boats' => 'DERBoats, LLC',
'boehringer' => 'Boehringer Ingelheim International GmbH',
'bofa' => 'Bank of America Corporation',
'bom' => 'Núcleo de Informação e Coordenação do Ponto BR - NIC.br',
'bond' => 'Bond University Limited',
'boo' => 'Charleston Road Registry Inc.',
'book' => 'Amazon Registry Services, Inc.',
'booking' => 'Booking.com B.V.',
'boots' => 'Not assigned',
'bosch' => 'Robert Bosch GMBH',
'bostik' => 'Bostik SA',
'boston' => 'Boston TLD Management, LLC',
'bot' => 'Amazon Registry Services, Inc.',
'boutique' => 'Binky Moon, LLC',
'box' => 'NS1 Limited',
'bq' => 'Caribbean Netherlands [Bonaire - Sint Eustatius and Saba] {unassigned - see also: .an and .nl}',
'br' => 'Brazil (Federative Republic of)',
'bradesco' => 'Banco Bradesco S.A.',
'bridgestone' => 'Bridgestone Corporation',
'broadway' => 'Celebrate Broadway, Inc.',
'broker' => 'DOTBROKER REGISTRY LTD',
'brother' => 'Brother Industries, Ltd.',
'brussels' => 'DNS.be vzw',
'bs' => 'Bahamas (Commonwealth of the)',
'bt' => 'Bhutan (Kingdom of)',
'budapest' => 'Top Level Domain Holdings Limited',
'bugatti' => 'Bugatti International SA',
'build' => 'Plan Bee LLC',
'builders' => 'Binky Moon, LLC',
'business' => 'Binky Moon, LLC',
'buy' => 'Amazon Registry Services, INC',
'buzz' => 'DOTSTRATEGY CO.',
'bv' => 'Bouvet Island',
'bw' => 'Botswana (Republic of)',
'by' => 'Belarus (Republic of)',
'bz' => 'Belize',
'bzh' => 'Association www.bzh',
'ca' => 'Canada',
'cab' => 'Binky Moon, LLC',
'cafe' => 'Binky Moon, LLC',
'cal' => 'Charleston Road Registry Inc.',
'call' => 'Amazon Registry Services, Inc.',
'calvinklein' => 'PVH gTLD Holdings LLC',
'cam' => 'AC Webconnecting Holding B.V.',
'camera' => 'Binky Moon, LLC',
'camp' => 'Binky Moon, LLC',
'cancerresearch' => 'Australian Cancer Research Foundation',
'canon' => 'Canon Inc.',
'capetown' => 'ZA Central Registry NPC trading as ZA Central Registry',
'capital' => 'Binky Moon, LLC',
'capitalone' => 'Capital One Financial Corporation',
'car' => 'Cars Registry Limited',
'caravan' => 'Caravan International, Inc.',
'cards' => 'Binky Moon, LLC',
'care' => 'Binky Moon, LLC',
'career' => 'dotCareer LLC',
'careers' => 'Binky Moon, LLC',
'cars' => 'Cars Registry Limited',
'cartier' => 'Richemont DNS Inc.',
'casa' => 'Top Level Domain Holdings Limited',
'case' => 'CNH Industrial N.V.',
'caseih' => 'CNH Industrial N.V.',
'cash' => 'Binky Moon, LLC',
'casino' => 'Binky Moon, LLC',
'cat' => 'Catalan',
'catering' => 'Binky Moon, LLC',
'catholic' => 'Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication)',
'cba' => 'COMMONWEALTH BANK OF AUSTRALIA',
'cbn' => 'The Christian Broadcasting Network, Inc.',
'cbre' => 'CBRE, Inc.',
'cbs' => 'CBS Domains Inc.',
'cc' => 'Cocos (Keeling) Islands (Territory of the)',
'cd' => 'Congo (Democratic Republic of the) [Congo-Kinshasa]',
'ceb' => 'The Corporate Executive Board Company',
'center' => 'Binky Moon, LLC',
'ceo' => 'CEOTLD Pty Ltd',
'cern' => 'European Organization for Nuclear Research ("CERN")',
'cf' => 'Central African Republic',
'cfa' => 'CFA Institute',
'cfd' => 'DOTCFD REGISTRY LTD',
'cg' => 'Congo (Republic of) [Congo-Brazzaville]',
'ch' => 'Switzerland (Swiss Confederation)',
'chanel' => 'Chanel International B.V.',
'channel' => 'Charleston Road Registry Inc.',
'charity' => 'Corn Lake, LLC',
'chase' => 'JPMorgan Chase Bank, National Association',
'chat' => 'Binky Moon, LLC',
'cheap' => 'Binky Moon, LLC',
'chintai' => 'CHINTAI Corporation',
'chloe' => 'Not assigned',
'christmas' => 'Uniregistry, Corp.',
'chrome' => 'Charleston Road Registry Inc.',
'chrysler' => 'FCA US LLC.',
'church' => 'Binky Moon, LLC',
'ci' => 'Ivory Coast (Republic of Côte d\'Ivoire)',
'cipriani' => 'Hotel Cipriani Srl',
'circle' => 'Amazon Registry Services, Inc.',
'cisco' => 'Cisco Technology, Inc.',
'citadel' => 'Citadel Domain LLC',
'citi' => 'Citigroup Inc.',
'citic' => 'CITIC Group Corporation',
'city' => 'Binky Moon, LLC',
'cityeats' => 'Lifestyle Domain Holdings, Inc.',
'ck' => 'Cook Islands',
'cl' => 'Chile (Republic of)',
'claims' => 'Binky Moon, LLC',
'cleaning' => 'Binky Moon, LLC',
'click' => 'Uniregistry, Corp.',
'clinic' => 'Binky Moon, LLC',
'clinique' => 'The Estée Lauder Companies Inc.',
'clothing' => 'Binky Moon, LLC',
'cloud' => 'ARUBA PEC S.p.A.',
'club' => '.CLUB DOMAINS, LLC',
'clubmed' => 'Club Méditerranée S.A.',
'cm' => 'Cameroon (Republic of)',
'cn' => 'China (People\'s Republic of)',
'co' => 'Colombia (Republic of)',
'coach' => 'Binky Moon, LLC',
'codes' => 'Binky Moon, LLC',
'coffee' => 'Binky Moon, LLC',
'college' => 'XYZ.COM LLC',
'cologne' => 'dotKoeln GmbH',
'com' => 'Commercial organizations',
'comcast' => 'Comcast IP Holdings I, LLC',
'commbank' => 'COMMONWEALTH BANK OF AUSTRALIA',
'community' => 'Binky Moon, LLC',
'company' => 'Binky Moon, LLC',
'compare' => 'iSelect Ltd',
'computer' => 'Binky Moon, LLC',
'comsec' => 'VeriSign, Inc.',
'condos' => 'Binky Moon, LLC',
'construction' => 'Binky Moon, LLC',
'consulting' => 'United TLD Holdco, LTD.',
'contact' => 'Top Level Spectrum, Inc.',
'contractors' => 'Binky Moon, LLC',
'cooking' => 'Top Level Domain Holdings Limited',
'cookingchannel' => 'Lifestyle Domain Holdings, Inc.',
'cool' => 'Binky Moon, LLC',
'coop' => 'Cooperatives',
'corsica' => 'Collectivité Territoriale de Corse',
'country' => 'Top Level Domain Holdings Limited',
'coupon' => 'Amazon Registry Services, Inc.',
'coupons' => 'Binky Moon, LLC',
'courses' => 'OPEN UNIVERSITIES AUSTRALIA PTY LTD',
'cr' => 'Costa Rica (Republic of)',
'credit' => 'Binky Moon, LLC',
'creditcard' => 'Binky Moon, LLC',
'creditunion' => 'CUNA Performance Resources, LLC',
'cricket' => 'dot Cricket Limited',
'crown' => 'Crown Equipment Corporation',
'crs' => 'Federated Co-operatives Limited',
'cruise' => 'Viking River Cruises (Bermuda) Ltd.',
'cruises' => 'Binky Moon, LLC',
'csc' => 'Alliance-One Services, Inc.',
'cu' => 'Cuba (Republic of)',
'cuisinella' => 'SALM S.A.S.',
'cv' => 'Cape Verde (Republic of)',
'cw' => 'Curaçao (Country of)',
'cx' => 'Christmas Island (Territory of)',
'cy' => 'Cyprus (Republic of)',
'cymru' => 'Nominet UK',
'cyou' => 'Beijing Gamease Age Digital Technology Co., Ltd.',
'cz' => 'Czech Republic',
'dabur' => 'Dabur India Limited',
'dad' => 'Charleston Road Registry Inc.',
'dance' => 'United TLD Holdco Ltd.',
'data' => 'Dish DBS Corporation',
'date' => 'dot Date Limited',
'dating' => 'Binky Moon, LLC',
'datsun' => 'NISSAN MOTOR CO., LTD.',
'day' => 'Charleston Road Registry Inc.',
'dclk' => 'Charleston Road Registry Inc.',
'dds' => 'Minds + Machines Group Limited',
'de' => 'Germany (Federal Republic of)',
'deal' => 'Amazon Registry Services, Inc.',
'dealer' => 'Dealer Dot Com, Inc.',
'deals' => 'Binky Moon, LLC',
'degree' => 'United TLD Holdco, Ltd',
'delivery' => 'Binky Moon, LLC',
'dell' => 'Dell Inc.',
'deloitte' => 'Deloitte Touche Tohmatsu',
'delta' => 'Delta Air Lines, Inc.',
'democrat' => 'United TLD Holdco Ltd.',
'dental' => 'Binky Moon, LLC',
'dentist' => 'United TLD Holdco, Ltd',
'desi' => 'Desi Networks LLC',
'design' => 'Top Level Design, LLC',
'dev' => 'Charleston Road Registry Inc.',
'dhl' => 'Deutsche Post AG',
'diamonds' => 'Binky Moon, LLC',
'diet' => 'Uniregistry, Corp.',
'digital' => 'Binky Moon, LLC',
'direct' => 'Binky Moon, LLC',
'directory' => 'Binky Moon, LLC',
'discount' => 'Binky Moon, LLC',
'discover' => 'Discover Financial Services',
'dish' => 'Dish DBS Corporation',
'diy' => 'Lifestyle Domain Holdings, Inc.',
'dj' => 'Djibouti (Republic of)',
'dk' => 'Denmark (Kingdom of)',
'dm' => 'Dominica (Commonwealth of)',
'dnp' => 'Dai Nippon Printing Co., Ltd.',
'do' => 'Dominican Republic',
'docs' => 'Charleston Road Registry Inc.',
'doctor' => 'Binky Moon, LLC',
'dodge' => 'FCA US LLC.',
'dog' => 'Binky Moon, LLC',
'doha' => 'Communications Regulatory Authority (CRA)',
'domains' => 'Binky Moon, LLC',
'doosan' => 'Retired',
'dot' => 'Dish DBS Corporation',
'download' => 'dot Support Limited',
'drive' => 'Charleston Road Registry Inc.',
'dtv' => 'Dish DBS Corporation',
'dubai' => 'Dubai Smart Government Department',
'duck' => 'Johnson Shareholdings, Inc.',
'dunlop' => 'The Goodyear Tire & Rubber Company',
'duns' => 'The Dun & Bradstreet Corporation',
'dupont' => 'E. I. du Pont de Nemours and Company',
'durban' => 'ZA Central Registry NPC trading as ZA Central Registry',
'dvag' => 'Deutsche Vermögensberatung Aktiengesellschaft DVAG',
'dvr' => 'Hughes Satellite Systems Corporation',
'dz' => 'Algeria (People\'s Democratic Republic of)',
'earth' => 'Interlink Co., Ltd.',
'eat' => 'Charleston Road Registry Inc.',
'ec' => 'Ecuador (Republic of)',
'eco' => 'Big Room Inc.',
'edeka' => 'EDEKA Verband kaufmännischer Genossenschaften e.V.',
'edu' => 'Educational establishments',
'education' => 'Binky Moon, LLC',
'ee' => 'Estonia (Republic of)',
'eg' => 'Egypt (Arab Republic of)',
'eh' => 'Western Sahara {reserved}',
'email' => 'Binky Moon, LLC',
'emerck' => 'Merck KGaA',
'energy' => 'Binky Moon, LLC',
'engineer' => 'United TLD Holdco Ltd.',
'engineering' => 'Binky Moon, LLC',
'enterprises' => 'Binky Moon, LLC',
'epost' => 'Deutsche Post AG',
'epson' => 'Seiko Epson Corporation',
'equipment' => 'Binky Moon, LLC',
'er' => 'Eritrea (State of)',
'ericsson' => 'Telefonaktiebolaget L M Ericsson',
'erni' => 'ERNI Group Holding AG',
'es' => 'Spain (Kingdom of)',
'esq' => 'Charleston Road Registry Inc.',
'estate' => 'Binky Moon, LLC',
'esurance' => 'Esurance Insurance Company',
'et' => 'Ethiopia (Federal Democratic Republic of)',
'etisalat' => 'Emirates Telecommunications Corporation (trading as Etisalat)',
'eu' => 'European Union',
'eurovision' => 'European Broadcasting Union (EBU)',
'eus' => 'Puntueus Fundazioa',
'events' => 'Binky Moon, LLC',
'everbank' => 'EverBank',
'exchange' => 'Binky Moon, LLC',
'expert' => 'Binky Moon, LLC',
'exposed' => 'Binky Moon, LLC',
'express' => 'Binky Moon, LLC',
'extraspace' => 'Extra Space Storage LLC',
'fage' => 'Fage International S.A.',
'fail' => 'Binky Moon, LLC',
'fairwinds' => 'FairWinds Partners, LLC',
'faith' => 'dot Faith Limited',
'family' => 'United TLD Holdco Ltd.',
'fan' => 'Asiamix Digital Ltd',
'fans' => 'Asiamix Digital Limited',
'farm' => 'Binky Moon, LLC',
'farmers' => 'Farmers Insurance Exchange',
'fashion' => 'Top Level Domain Holdings Limited',
'fast' => 'Amazon Registry Services, Inc.',
'fedex' => 'Federal Express Corporation',
'feedback' => 'Top Level Spectrum, Inc.',
'ferrari' => 'Fiat Chrysler Automobiles N.V.',
'ferrero' => 'Ferrero Trading Lux S.A.',
'fi' => 'Finland (Republic of)',
'fiat' => 'Fiat Chrysler Automobiles N.V.',
'fidelity' => 'Fidelity Brokerage Services LLC',
'fido' => 'Rogers Communications Canada Inc.',
'film' => 'Motion Picture Domain Registry Pty Ltd',
'final' => 'Núcleo de Informação e Coordenação do Ponto BR - NIC.br',
'finance' => 'Binky Moon, LLC',
'financial' => 'Binky Moon, LLC',
'fire' => 'Amazon Registry Services, Inc.',
'firestone' => 'Bridgestone Licensing Services, Inc.',
'firmdale' => 'Firmdale Holdings Limited',
'fish' => 'Binky Moon, LLC',
'fishing' => 'Top Level Domain Holdings Limited',
'fit' => 'Minds + Machines Group Limited',
'fitness' => 'Binky Moon, LLC',
'fj' => 'Fiji (Republic of)',
'fk' => 'Falkland Islands (Malvinas)',
'flickr' => 'Yahoo! Domain Services Inc.',
'flights' => 'Binky Moon, LLC',
'flir' => 'FLIR Systems, Inc.',
'florist' => 'Binky Moon, LLC',
'flowers' => 'Uniregistry, Corp.',
'flsmidth' => 'Retired',
'fly' => 'Charleston Road Registry Inc.',
'fm' => 'Micronesia (Federated States of)',
'fo' => 'Faroe Islands',
'foo' => 'Charleston Road Registry Inc.',
'food' => 'Lifestyle Domain Holdings, Inc.',
'foodnetwork' => 'Lifestyle Domain Holdings, Inc.',
'football' => 'Binky Moon, LLC',
'ford' => 'Ford Motor Company',
'forex' => 'DOTFOREX REGISTRY LTD',
'forsale' => 'United TLD Holdco, LLC',
'forum' => 'Fegistry, LLC',
'foundation' => 'Binky Moon, LLC',
'fox' => 'FOX Registry, LLC',
'fr' => 'France (French Republic)',
'free' => 'Amazon Registry Services, Inc.',
'fresenius' => 'Fresenius Immobilien-Verwaltungs-GmbH',
'frl' => 'FRLregistry B.V.',
'frogans' => 'OP3FT',
'frontdoor' => 'Lifestyle Domain Holdings, Inc.',
'frontier' => 'Frontier Communications Corporation',
'ftr' => 'Frontier Communications Corporation',
'fujitsu' => 'Fujitsu Limited',
'fujixerox' => 'Xerox DNHC LLC',
'fun' => 'DotSpace, Inc.',
'fund' => 'Binky Moon, LLC',
'furniture' => 'Binky Moon, LLC',
'futbol' => 'United TLD Holdco, Ltd.',
'fyi' => 'Binky Moon, LLC',
'ga' => 'Gabon (Gabonese Republic)',
'gal' => 'Asociación puntoGAL',
'gallery' => 'Binky Moon, LLC',
'gallo' => 'Gallo Vineyards, Inc.',
'gallup' => 'Gallup, Inc.',
'game' => 'Uniregistry, Corp.',
'games' => 'United TLD Holdco Ltd.',
'gap' => 'The Gap, Inc.',
'garden' => 'Top Level Domain Holdings Limited',
'gb' => 'United Kingdom (United Kingdom of Great Britain and Northern Ireland)',
'gbiz' => 'Charleston Road Registry Inc.',
'gd' => 'Grenada',
'gdn' => 'Joint Stock Company "Navigation-information systems"',
'ge' => 'Georgia',
'gea' => 'GEA Group Aktiengesellschaft',
'gent' => 'Combell nv',
'genting' => 'Resorts World Inc. Pte. Ltd.',
'george' => 'Wal-Mart Stores, Inc.',
'gf' => 'French Guiana',
'gg' => 'Guernsey (Bailiwick of)',
'ggee' => 'GMO Internet, Inc.',
'gh' => 'Ghana (Republic of)',
'gi' => 'Gibraltar',
'gift' => 'Uniregistry, Corp.',
'gifts' => 'Binky Moon, LLC',
'gives' => 'United TLD Holdco Ltd.',
'giving' => 'Giving Limited',
'gl' => 'Greenland',
'glade' => 'Johnson Shareholdings, Inc.',
'glass' => 'Binky Moon, LLC',
'gle' => 'Charleston Road Registry Inc.',
'global' => 'Dot Global Domain Registry Limited',
'globo' => 'Globo Comunicação e Participações S.A',
'gm' => 'Gambia (Republic of The)',
'gmail' => 'Charleston Road Registry Inc.',
'gmbh' => 'Binky Moon, LLC',
'gmo' => 'GMO Internet, Inc.',
'gmx' => '1&1 Mail & Media GmbH',
'gn' => 'Guinea (Republic of)',
'godaddy' => 'Go Daddy East, LLC',
'gold' => 'Binky Moon, LLC',
'goldpoint' => 'YODOBASHI CAMERA CO.,LTD.',
'golf' => 'Binky Moon, LLC',
'goo' => 'NTT Resonant Inc.',
'goodhands' => 'Allstate Fire and Casualty Insurance Company',
'goodyear' => 'The Goodyear Tire & Rubber Company',
'goog' => 'Charleston Road Registry Inc.',
'google' => 'Charleston Road Registry Inc.',
'gop' => 'Republican State Leadership Committee, Inc.',
'got' => 'Amazon Registry Services, Inc.',
'gov' => 'US government',
'gp' => 'Guadeloupe',
'gq' => 'Equatorial Guinea (Republic of)',
'gr' => 'Greece (Hellenic Republic)',
'grainger' => 'Grainger Registry Services, LLC',
'graphics' => 'Binky Moon, LLC',
'gratis' => 'Binky Moon, LLC',
'green' => 'DotGreen Registry Limited',
'gripe' => 'Binky Moon, LLC',
'grocery' => 'Wal-Mart Stores, Inc.',
'group' => 'Binky Moon, LLC',
'gs' => 'South Georgia and the South Sandwich Islands',
'gt' => 'Guatemala (Republic of)',
'gu' => 'Guam',
'guardian' => 'The Guardian Life Insurance Company of America',
'gucci' => 'Guccio Gucci S.p.a.',
'guge' => 'Charleston Road Registry Inc.',
'guide' => 'Binky Moon, LLC',
'guitars' => 'Uniregistry, Corp.',
'guru' => 'Binky Moon, LLC',
'gw' => 'Guinea-Bissau (Republic of)',
'gy' => 'Guyana (Co-operative Republic of)',
'hair' => 'L\'Oreal',
'hamburg' => 'Hamburg Top-Level-Domain GmbH',
'hangout' => 'Charleston Road Registry Inc.',
'haus' => 'United TLD Holdco, LTD.',
'hbo' => 'HBO Registry Services, Inc.',
'hdfc' => 'HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED',
'hdfcbank' => 'HDFC Bank Limited',
'health' => 'DotHealth, LLC',
'healthcare' => 'Binky Moon, LLC',
'help' => 'Uniregistry, Corp.',
'helsinki' => 'City of Helsinki',
'here' => 'Charleston Road Registry Inc.',
'hermes' => 'Hermes International',
'hgtv' => 'Lifestyle Domain Holdings, Inc.',
'hiphop' => 'Uniregistry, Corp.',
'hisamitsu' => 'Hisamitsu Pharmaceutical Co.,Inc.',
'hitachi' => 'Hitachi, Ltd.',
'hiv' => 'Uniregistry, Corp.',
'hk' => 'Hong Kong (Hong Kong Special Administrative Region of the People\'s Republic of China)',
'hkt' => 'PCCW-HKT DataCom Services Limited',
'hm' => 'Heard Island and McDonald Islands',
'hn' => 'Honduras (Republic of)',
'hockey' => 'Binky Moon, LLC',
'holdings' => 'Binky Moon, LLC',
'holiday' => 'Binky Moon, LLC',
'homedepot' => 'Home Depot Product Authority, LLC',
'homegoods' => 'The TJX Companies, Inc.',
'homes' => 'DERHomes, LLC',
'homesense' => 'The TJX Companies, Inc.',
'honda' => 'Honda Motor Co., Ltd.',
'honeywell' => 'Honeywell GTLD LLC',
'horse' => 'Top Level Domain Holdings Limited',
'hospital' => 'Binky Moon, LLC',
'host' => 'DotHost Inc.',
'hosting' => 'Uniregistry, Corp.',
'hot' => 'Amazon Registry Services, Inc.',
'hoteles' => 'Travel Reservations SRL',
'hotels' => 'Booking.com B.V.',
'hotmail' => 'Microsoft Corporation',
'house' => 'Binky Moon, LLC',
'how' => 'Charleston Road Registry Inc.',
'hr' => 'Croatia (Republic of)',
'hsbc' => 'HSBC Global Services (UK) Limited',
'ht' => 'Haiti (Republic of)',
'htc' => 'Not assigned',
'hu' => 'Hungary',
'hughes' => 'Hughes Satellite Systems Corporation',
'hyatt' => 'Hyatt GTLD, L.L.C.',
'hyundai' => 'Hyundai Motor Company',
'ibm' => 'International Business Machines Corporation',
'icbc' => 'Industrial and Commercial Bank of China Limited',
'ice' => 'IntercontinentalExchange, Inc.',
'icu' => 'Shortdot SA',
'id' => 'Indonesia (Republic of)',
'ie' => 'Ireland (Republic of)',
'ieee' => 'IEEE Global LLC',
'ifm' => 'ifm electronic gmbh',
'iinet' => 'Retired',
'ikano' => 'Ikano S.A.',
'il' => 'Israel (State of)',
'im' => 'Isle of Man',
'imamat' => 'Fondation Aga Khan (Aga Khan Foundation)',
'imdb' => 'Amazon Registry Services, Inc.',
'immo' => 'Binky Moon, LLC',
'immobilien' => 'United TLD Holdco Ltd.',
'in' => 'India (Republic of)',
'industries' => 'Binky Moon, LLC',
'infiniti' => 'NISSAN MOTOR CO., LTD.',
'info' => 'Informational sites',
'ing' => 'Charleston Road Registry Inc.',
'ink' => 'Top Level Design, LLC',
'institute' => 'Binky Moon, LLC',
'insurance' => 'fTLD Registry Services LLC',
'insure' => 'Binky Moon, LLC',
'int' => 'International treaty-based organizations',
'intel' => 'Intel Corporation',
'international' => 'Binky Moon, LLC',
'intuit' => 'Intuit Administrative Services, Inc.',
'investments' => 'Binky Moon, LLC',
'io' => 'British Indian Ocean Territory',
'ipiranga' => 'Ipiranga Produtos de Petroleo S.A.',
'iq' => 'Iraq (Republic of)',
'ir' => 'Iran (Islamic Republic of)',
'irish' => 'Binky Moon, LLC',
'is' => 'Iceland',
'iselect' => 'iSelect Ltd',
'ismaili' => 'Fondation Aga Khan (Aga Khan Foundation)',
'ist' => 'Istanbul Metropolitan Municipality',
'istanbul' => 'Istanbul Metropolitan Municipality',
'it' => 'Italy (Italian Republic)',
'itau' => 'Itau Unibanco Holding S.A.',
'itv' => 'ITV Services Limited',
'iveco' => 'CNH Industrial N.V.',
'iwc' => 'Richemont DNS Inc.',
'jaguar' => 'Jaguar Land Rover Ltd',
'java' => 'Oracle Corporation',
'jcb' => 'JCB Co., Ltd.',
'jcp' => 'JCP Media, Inc.',
'je' => 'Jersey (Bailiwick of)',
'jeep' => 'FCA US LLC.',
'jetzt' => 'Binky Moon, LLC',
'jewelry' => 'Binky Moon, LLC',
'jio' => 'Affinity Names, Inc.',
'jlc' => 'Richemont DNS Inc.',
'jll' => 'Jones Lang LaSalle Incorporated',
'jm' => 'Jamaica (Commonwealth of)',
'jmp' => 'Matrix IP LLC',
'jnj' => 'Johnson & Johnson Services, Inc.',
'jo' => 'Jordan (Hashemite Kingdom of)',
'jobs' => 'Employment-related sites',
'joburg' => 'ZA Central Registry NPC trading as ZA Central Registry',
'jot' => 'Amazon Registry Services, Inc.',
'joy' => 'Amazon Registry Services, Inc.',
'jp' => 'Japan',
'jpmorgan' => 'JPMorgan Chase Bank, National Association',
'jprs' => 'Japan Registry Services Co., Ltd.',
'juegos' => 'Uniregistry, Corp.',
'juniper' => 'JUNIPER NETWORKS, INC.',
'kaufen' => 'United TLD Holdco Ltd.',
'kddi' => 'KDDI CORPORATION',
'ke' => 'Kenya (Republic of)',
'kerryhotels' => 'Kerry Trading Co. Limited',
'kerrylogistics' => 'Kerry Trading Co. Limited',
'kerryproperties' => 'Kerry Trading Co. Limited',
'kfh' => 'Kuwait Finance House',
'kg' => 'Kyrgyzstan (Kyrgyz Republic)',
'kh' => 'Cambodia (Kingdom of)',
'ki' => 'Kiribati (Republic of)',
'kia' => 'KIA MOTORS CORPORATION',
'kim' => 'Afilias plc',
'kinder' => 'Ferrero Trading Lux S.A.',
'kindle' => 'Amazon Registry Services, Inc.',
'kitchen' => 'Binky Moon, LLC',
'kiwi' => 'DOT KIWI LIMITED',
'km' => 'Comoros (Union of the)',
'kn' => 'Saint Kitts and Nevis (Federation of)',
'koeln' => 'dotKoeln GmbH',
'komatsu' => 'Komatsu Ltd.',
'kosher' => 'Kosher Marketing Assets LLC',
'kp' => 'Korea (Democratic People\'s Republic of) [North Korea]',
'kpmg' => 'KPMG International Cooperative (KPMG International Genossenschaft)',
'kpn' => 'Koninklijke KPN N.V.',
'kr' => 'Korea (Republic of) [South Korea]',
'krd' => 'KRG Department of Information Technology',
'kred' => 'KredTLD Pty Ltd',
'kuokgroup' => 'Kerry Trading Co. Limited',
'kw' => 'Kuwait (State of Kuwait)',
'ky' => 'Cayman Islands',
'kyoto' => 'Academic Institution: Kyoto Jyoho Gakuen',
'kz' => 'Kazakhstan (Republic of)',
'la' => 'Laos (Lao People\'s Democratic Republic)',
'lacaixa' => 'CAIXA D\'ESTALVIS I PENSIONS DE BARCELONA',
'ladbrokes' => 'LADBROKES INTERNATIONAL PLC',
'lamborghini' => 'Automobili Lamborghini S.p.A.',
'lamer' => 'The Estée Lauder Companies Inc.',
'lancaster' => 'LANCASTER',
'lancia' => 'Fiat Chrysler Automobiles N.V.',
'lancome' => 'L\'Oréal',
'land' => 'Binky Moon, LLC',
'landrover' => 'Jaguar Land Rover Ltd',
'lanxess' => 'LANXESS Corporation',
'lasalle' => 'Jones Lang LaSalle Incorporated',
'lat' => 'ECOM-LAC Federación de Latinoamérica y el Caribe para Internet y el Comercio Electrónico',
'latino' => 'Dish DBS Corporation',
'latrobe' => 'La Trobe University',
'law' => 'Minds + Machines Group Limited',
'lawyer' => 'United TLD Holdco, Ltd',
'lb' => 'Lebanon (Lebanese Republic)',
'lc' => 'Saint Lucia',
'lds' => 'IRI Domain Management, LLC',
'lease' => 'Binky Moon, LLC',
'leclerc' => 'A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc',
'lefrak' => 'LeFrak Organization, Inc.',
'legal' => 'Binky Moon, LLC',
'lego' => 'LEGO Juris A/S',
'lexus' => 'TOYOTA MOTOR CORPORATION',
'lgbt' => 'Afilias plc',
'li' => 'Liechtenstein (Principality of)',
'liaison' => 'Liaison Technologies, Incorporated',
'lidl' => 'Schwarz Domains und Services GmbH & Co. KG',
'life' => 'Binky Moon, LLC',
'lifeinsurance' => 'American Council of Life Insurers',
'lifestyle' => 'Lifestyle Domain Holdings, Inc.',
'lighting' => 'Binky Moon, LLC',
'like' => 'Amazon Registry Services, Inc.',
'lilly' => 'Eli Lilly and Company',
'limited' => 'Binky Moon, LLC',
'limo' => 'Binky Moon, LLC',
'lincoln' => 'Ford Motor Company',
'linde' => 'Linde Aktiengesellschaft',
'link' => 'Uniregistry, Corp.',
'lipsy' => 'Lipsy Ltd',
'live' => 'United TLD Holdco Ltd.',
'living' => 'Lifestyle Domain Holdings, Inc.',
'lixil' => 'LIXIL Group Corporation',
'lk' => 'Sri Lanka (Democratic Socialist Republic of)',
'llc' => 'Afilias plc',
'loan' => 'dot Loan Limited',
'loans' => 'Binky Moon, LLC',
'locker' => 'Dish DBS Corporation',
'locus' => 'Locus Analytics LLC',
'loft' => 'Annco, Inc.',
'lol' => 'Uniregistry, Corp.',
'london' => 'Dot London Domains Limited',
'lotte' => 'Lotte Holdings Co., Ltd.',
'lotto' => 'Afilias plc',
'love' => 'Merchant Law Group LLP',
'lpl' => 'LPL Holdings, Inc.',
'lplfinancial' => 'LPL Holdings, Inc.',
'lr' => 'Liberia (Republic of)',
'ls' => 'Lesotho (Kingdom of)',
'lt' => 'Lithuania (Republic of)',
'ltd' => 'Binky Moon, LLC',
'ltda' => 'InterNetX Corp.',
'lu' => 'Luxembourg (Grand Duchy of)',
'lundbeck' => 'H. Lundbeck A/S',
'lupin' => 'LUPIN LIMITED',
'luxe' => 'Top Level Domain Holdings Limited',
'luxury' => 'Luxury Partners LLC',
'lv' => 'Latvia (Republic of)',
'ly' => 'Libya',
'ma' => 'Morocco',
'macys' => 'Macys, Inc.',
'madrid' => 'Comunidad de Madrid',
'maif' => 'Mutuelle Assurance Instituteur France (MAIF)',
'maison' => 'Binky Moon, LLC',
'makeup' => 'L\'Oréal',
'man' => 'MAN SE',
'management' => 'Binky Moon, LLC',
'mango' => 'PUNTO FA S.L.',
'map' => 'Charleston Road Registry Inc.',
'market' => 'United TLD Holdco, Ltd',
'marketing' => 'Binky Moon, LLC',
'markets' => 'DOTMARKETS REGISTRY LTD',
'marriott' => 'Marriott Worldwide Corporation',
'marshalls' => 'The TJX Companies, Inc.',
'maserati' => 'Fiat Chrysler Automobiles N.V.',
'mattel' => 'Mattel Sites, Inc.',
'mba' => 'Binky Moon, LLC',
'mc' => 'Monaco (Principality of)',
'mcd' => 'Not assigned',
'mcdonalds' => 'Not assigned',
'mckinsey' => 'McKinsey Holdings, Inc.',
'md' => 'Moldova (Republic of)',
'me' => 'Montenegro',
'med' => 'Medistry LLC',
'media' => 'Binky Moon, LLC',
'meet' => 'Charleston Road Registry Inc.',
'melbourne' => 'The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation',
'meme' => 'Charleston Road Registry Inc.',
'memorial' => 'Dog Beach, LLC',
'men' => 'Exclusive Registry Limited',
'menu' => 'Wedding TLD2, LLC',
'meo' => 'Not assigned',
'merckmsd' => 'MSD Registry Holdings, Inc.',
'metlife' => 'MetLife Services and Solutions, LLC',
'mf' => 'Saint Martin (Collectivity of) {unassigned - see also: .gp and .fr}',
'mg' => 'Madagascar (Republic of)',
'mh' => 'Marshall Islands (Republic of the)',
'miami' => 'Top Level Domain Holdings Limited',
'microsoft' => 'Microsoft Corporation',
'mil' => 'US military',
'mini' => 'Bayerische Motoren Werke Aktiengesellschaft',
'mint' => 'Intuit Administrative Services, Inc.',
'mit' => 'Massachusetts Institute of Technology',
'mitsubishi' => 'Mitsubishi Corporation',
'mk' => 'Macedonia (Republic of)',
'ml' => 'Mali (Republic of)',
'mlb' => 'MLB Advanced Media DH, LLC',
'mls' => 'The Canadian Real Estate Association',
'mm' => 'Myanmar (Republic of the Union of) [Burma]',
'mma' => 'MMA IARD',
'mn' => 'Mongolia',
'mo' => 'Macau (Macau Special Administrative Region of the People\'s Republic of China) [Macao]',
'mobi' => 'Mobile',
'mobile' => 'Dish DBS Corporation',
'mobily' => 'GreenTech Consultancy Company W.L.L.',
'moda' => 'United TLD Holdco Ltd.',
'moe' => 'Interlink Co., Ltd.',
'moi' => 'Amazon Registry Services, Inc.',
'mom' => 'Uniregistry, Corp.',
'monash' => 'Monash University',
'money' => 'Binky Moon, LLC',
'monster' => 'Monster Worldwide, Inc.',
'montblanc' => 'Not assigned',
'mopar' => 'FCA US LLC.',
'mormon' => 'IRI Domain Management, LLC ("Applicant")',
'mortgage' => 'United TLD Holdco, Ltd',
'moscow' => 'Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)',
'moto' => 'Motorola Trademark Holdings, LLC',
'motorcycles' => 'DERMotorcycles, LLC',
'mov' => 'Charleston Road Registry Inc.',
'movie' => 'Binky Moon, LLC',
'movistar' => 'Telefónica S.A.',
'mp' => 'Northern Mariana Islands (Commonwealth of the)',
'mq' => 'Martinique',
'mr' => 'Mauritania (Islamic Republic of)',
'ms' => 'Montserrat',
'msd' => 'MSD Registry Holdings, Inc.',
'mt' => 'Malta (Republic of)',
'mtn' => 'MTN Dubai Limited',
'mtpc' => 'Retired',
'mtr' => 'MTR Corporation Limited',
'mu' => 'Mauritius (Republic of)',
'museum' => 'Museums',
'mutual' => 'Northwestern Mutual MU TLD Registry, LLC',
'mutuelle' => 'Retired',
'mv' => 'Maldives (Republic of)',
'mw' => 'Malawi (Republic of)',
'mx' => 'Mexico (United Mexican States)',
'my' => 'Malaysia',
'mz' => 'Mozambique (Republic of)',
'na' => 'Namibia (Republic of)',
'nab' => 'National Australia Bank Limited',
'nadex' => 'Nadex Domains, Inc',
'nagoya' => 'GMO Registry, Inc.',
'name' => 'Individuals',
'nationwide' => 'Nationwide Mutual Insurance Company',
'natura' => 'NATURA COSMÉTICOS S.A.',
'navy' => 'United TLD Holdco Ltd.',
'nba' => 'NBA REGISTRY, LLC',
'nc' => 'New Caledonia',
'ne' => 'Niger (Republic of)',
'nec' => 'NEC Corporation',
'net' => 'Network',
'netbank' => 'COMMONWEALTH BANK OF AUSTRALIA',
'netflix' => 'Netflix, Inc.',
'network' => 'Binky Moon, LLC',
'neustar' => 'NeuStar, Inc.',
'new' => 'Charleston Road Registry Inc.',
'newholland' => 'CNH Industrial N.V.',
'news' => 'United TLD Holdco Ltd.',
'next' => 'Next plc',
'nextdirect' => 'Next plc',
'nexus' => 'Charleston Road Registry Inc.',
'nf' => 'Norfolk Island (Territory of)',
'nfl' => 'NFL Reg Ops LLC',
'ng' => 'Nigeria (Federal Republic of)',
'ngo' => 'Public Interest Registry',
'nhk' => 'Japan Broadcasting Corporation (NHK)',
'ni' => 'Nicaragua (Republic of)',
'nico' => 'DWANGO Co., Ltd.',
'nike' => 'NIKE, Inc.',
'nikon' => 'NIKON CORPORATION',
'ninja' => 'United TLD Holdco Ltd.',
'nissan' => 'NISSAN MOTOR CO., LTD.',
'nissay' => 'Nippon Life Insurance Company',
'nl' => 'Netherlands',
'no' => 'Norway (Kingdom of)',
'nokia' => 'Nokia Corporation',
'northwesternmutual' => 'Northwestern Mutual Registry, LLC',
'norton' => 'Symantec Corporation',
'now' => 'Amazon Registry Services, Inc.',
'nowruz' => 'Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.',
'nowtv' => 'Starbucks (HK) Limited',
'np' => 'Nepal (Federal Democratic Republic of)',
'nr' => 'Nauru (Republic of)',
'nra' => 'NRA Holdings Company, INC.',
'nrw' => 'Minds + Machines GmbH',
'ntt' => 'NIPPON TELEGRAPH AND TELEPHONE CORPORATION',
'nu' => 'Niue',
'nyc' => 'The City of New York by and through the New York City Department of Information Technology & Telecommunications',
'nz' => 'New Zealand',
'obi' => 'OBI Group Holding SE & Co. KGaA',
'observer' => 'Top Level Spectrum, Inc.',
'off' => 'Johnson Shareholdings, Inc.',
'office' => 'Microsoft Corporation',
'okinawa' => 'BRregistry, Inc.',
'olayan' => 'Crescent Holding GmbH',
'olayangroup' => 'Crescent Holding GmbH',
'oldnavy' => 'The Gap, Inc.',
'ollo' => 'Dish DBS Corporation',
'om' => 'Oman (Sultanate of)',
'omega' => 'The Swatch Group Ltd',
'one' => 'One.com A/S',
'ong' => 'Public Interest Registry',
'onl' => 'I-REGISTRY Ltd., Niederlassung Deutschland',
'online' => 'DotOnline Inc.',
'onyourside' => 'Nationwide Mutual Insurance Company',
'ooo' => 'INFIBEAM INCORPORATION LIMITED',
'open' => 'American Express Travel Related Services Company, Inc.',
'oracle' => 'Oracle Corporation',
'orange' => 'Orange Brand Services Limited',
'org' => 'Non-profit organizations',
'organic' => 'Afilias plc',
'orientexpress' => 'Retired',
'origins' => 'The Estée Lauder Companies Inc.',
'osaka' => 'Osaka Registry Co., Ltd.',
'otsuka' => 'Otsuka Holdings Co., Ltd.',
'ott' => 'Dish DBS Corporation',
'ovh' => 'OVH SAS',
'pa' => 'Panama (Republic of)',
'page' => 'Charleston Road Registry Inc.',
'pamperedchef' => 'Not assigned',
'panasonic' => 'Panasonic Corporation',
'panerai' => 'Richemont DNS Inc.',
'paris' => 'City of Paris',
'pars' => 'Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.',
'partners' => 'Binky Moon, LLC',
'parts' => 'Binky Moon, LLC',
'party' => 'Blue Sky Registry Limited',
'passagens' => 'Travel Reservations SRL',
'pay' => 'Amazon Registry Services, Inc.',
'pccw' => 'PCCW Enterprises Limited',
'pe' => 'Peru (Republic of)',
'pet' => 'Afilias plc',
'pf' => 'French Polynesia and Clipperton Island',
'pfizer' => 'Pfizer Inc.',
'pg' => 'Papua New Guinea (Independent State of)',
'ph' => 'Philippines (Republic of the)',
'pharmacy' => 'National Association of Boards of Pharmacy',
'phd' => 'Charleston Road Registry Inc.',
'philips' => 'Koninklijke Philips N.V.',
'phone' => 'Dish DBS Corporation',
'photo' => 'Uniregistry, Corp.',
'photography' => 'Binky Moon, LLC',
'photos' => 'Binky Moon, LLC',
'physio' => 'PhysBiz Pty Ltd',
'piaget' => 'Richemont DNS Inc.',
'pics' => 'Uniregistry, Corp.',
'pictet' => 'Pictet Europe S.A.',
'pictures' => 'Binky Moon, LLC',
'pid' => 'Top Level Spectrum, Inc.',
'pin' => 'Amazon Registry Services, Inc.',
'ping' => 'Ping Registry Provider, Inc.',
'pink' => 'Afilias plc',
'pioneer' => 'Pioneer Corporation',
'pizza' => 'Binky Moon, LLC',
'pk' => 'Pakistan (Islamic Republic of)',
'pl' => 'Poland (Republic of)',
'place' => 'Binky Moon, LLC',
'play' => 'Charleston Road Registry Inc.',
'playstation' => 'Sony Computer Entertainment Inc.',
'plumbing' => 'Binky Moon, LLC',
'plus' => 'Binky Moon, LLC',
'pm' => 'Saint Pierre and Miquelon',