diff --git a/bin/helpers/generate-tlds-csv.js b/bin/helpers/generate-tlds-csv.js index 58cefeb..a8e88a0 100755 --- a/bin/helpers/generate-tlds-csv.js +++ b/bin/helpers/generate-tlds-csv.js @@ -15,7 +15,7 @@ const stringify = require('csv-stringify'); const parse = require('csv-parse'); const fs = require('fs-extra'); const path = require('path'); -const md5File = require('md5-file/promise'); +const md5File = require('md5-file'); const pathinfo = require('pathinfo'); const program = require('commander'); const tmp = require('tmp'); @@ -103,7 +103,10 @@ if (!program.quiet) { }); console.log('done'); - //console.error('NOTICE: the following "countries" did not have an assigned top level domain: ' + missingTld.join(', ')); + + if (!program.quiet) { + console.log(meName + ': NOTICE: the following "countries" did not have an assigned top level domain: ' + missingTld.join(', ')); + } process.stdout.write("building description / TLD hashmap..."); let tld2Desc = {}; @@ -133,95 +136,95 @@ if (!program.quiet) { parser.write(fs.readFileSync(fileTldDescCsv)); - parser.end(); + parser.end(function() { + console.log("done"); - console.log("done"); + const tdPosMap = { + domain: 0, + type: 1, + manager: 2, + }; - const tdPosMap = { - domain: 0, - type: 1, - manager: 2, - }; + let tldSet = []; - let tldSet = []; + process.stdout.write("parsing IANA data..."); + $('#tld-table').find('tr').each((i, element) => { + let tld = { + domain: null, + type: null, + manager: null, + }; + let tldData = []; + // console.log('i ' + i); + // console.log(element); + $(element).find("td").each((iTd, elementTd) => { + // console.log('iTd...'); + // console.log(iTd); + tldData.push($(elementTd).text()); + }); - process.stdout.write("parsing IANA data..."); - $('#tld-table').find('tr').each((i, element) => { - let tld = { - domain: null, - type: null, - manager: null, - }; - let tldData = []; - // console.log('i ' + i); - // console.log(element); - $(element).find("td").each((iTd, elementTd) => { - // console.log('iTd...'); - // console.log(iTd); - tldData.push($(elementTd).text()); - }); + for (var prop in tld) { + if (typeof(tldData[tdPosMap[prop]]) !== 'undefined') { + tld[prop] = tldData[tdPosMap[prop]]; + } + } - for (var prop in tld) { - if (typeof(tldData[tdPosMap[prop]]) !== 'undefined') { - tld[prop] = tldData[tdPosMap[prop]]; - } - } + if (!tld.domain) { + return; + } - if (!tld.domain) { - return; - } + tld.domain = tld.domain.replace(/\s/g, '').replace(/\./g, ''); - tld.domain = tld.domain.replace(/\s/g, '').replace(/\./g, ''); + tldSet.push(tld); - tldSet.push(tld); + }); + console.log('done'); + const stringifier = stringify({ delimiter: ',' }); + stringifier.on('readable', () => { + let row; + while (row = stringifier.read()) { + fs.appendFileSync(fileNewTldsCsv, row, 'utf8') + } + }); + + process.stdout.write("serializing new 'tlds.csv'..."); + for (var i = 0; i < tldSet.length; i++) { + let tld = tldSet[i]; + let csvRow = [tld.domain]; + if ((tld.type == 'country-code') && (typeof(tld2CountryName[tld.domain]) !== 'undefined')) { + csvRow.push(tld2CountryName[tld.domain]); + } else { + if (typeof(tld2Desc[tld.domain]) !== 'undefined') { + csvRow.push(tld2Desc[tld.domain]); + } else { + csvRow.push(tld.manager); + } + } + csvRow.push(tld.type); + stringifier.write(csvRow); + + } + stringifier.end(); + console.log('done'); + + if (fs.existsSync(fileTldsCsv)) { + const newMd5 = md5File.sync(fileNewTldsCsv); + const csvMd5 = md5File.sync(fileTldsCsv); + if (csvMd5 == newMd5) { + console.error(meName + ": (NOTICE) ignoring newly generated 'tlds.csv' file that is identical to the existing file (md5: " + csvMd5 + ", path: " + fileTldsCsv + ")"); + return; + } + const pathinfoTldsCsv = pathinfo(fileTldsCsv); + const fileBackupTldsCsv = pathinfoTldsCsv.dirname + pathinfoTldsCsv.sep + pathinfoTldsCsv.basename + '-' + csvMd5 + '-backup.csv'; + if (!fs.existsSync(fileBackupTldsCsv)) { + fs.copySync(fileTldsCsv, fileBackupTldsCsv); + } + } + + process.stdout.write("saving new 'tlds.csv'..."); + fs.copySync(fileNewTldsCsv, fileTldsCsv); + console.log('done'); }); - console.log('done'); - - const stringifier = stringify({ delimiter: ',' }); - stringifier.on('readable', () => { - let row; - while (row = stringifier.read()) { - fs.appendFileSync(fileNewTldsCsv, row, 'utf8') - } - }); - - process.stdout.write("serializing new 'tlds.csv'..."); - for (var i = 0; i < tldSet.length; i++) { - let tld = tldSet[i]; - let csvRow = [tld.domain]; - if ((tld.type == 'country-code') && (typeof(tld2CountryName[tld.domain]) !== 'undefined')) { - csvRow.push(tld2CountryName[tld.domain]); - } else { - if (typeof(tld2Desc[tld.domain]) !== 'undefined') { - csvRow.push(tld2Desc[tld.domain]); - } else { - csvRow.push(tld.manager); - } - } - csvRow.push(tld.type); - stringifier.write(csvRow); - - } - stringifier.end(); - console.log('done'); - - if (fs.existsSync(fileTldsCsv)) { - const newMd5 = await md5File(fileNewTldsCsv); - const csvMd5 = await md5File(fileTldsCsv); - if (csvMd5 == newMd5) { - console.error(meName + ": (NOTICE) ignoring newly generated 'tlds.csv' file that is identical to the existing file (md5: " + csvMd5 + ", path: " + fileTldsCsv + ")"); - return; - } - const pathinfoTldsCsv = pathinfo(fileTldsCsv); - const fileBackupTldsCsv = pathinfoTldsCsv.dirname + pathinfoTldsCsv.sep + pathinfoTldsCsv.basename + '-' + csvMd5 + '-backup.csv'; - if (!fs.existsSync(fileBackupTldsCsv)) { - fs.copySync(fileTldsCsv, fileBackupTldsCsv); - } - } - - process.stdout.write("saving new 'tlds.csv'..."); - fs.copySync(fileNewTldsCsv, fileTldsCsv); - console.log('done'); })(); \ No newline at end of file diff --git a/formats/js/tld-enum/desc.js b/formats/js/tld-enum/desc.js index 3af8ba7..309ab2f 100644 --- a/formats/js/tld-enum/desc.js +++ b/formats/js/tld-enum/desc.js @@ -9,7 +9,7 @@ module.exports = { "able": "Able Inc.", "abogado": "Top Level Domain Holdings Limited", "abudhabi": "Abu Dhabi Systems and Information Centre", - "ac": "Network Information Center (AC Domain Registry)\nc/o Cable and Wireless (Ascension Island)", + "ac": "Ascension Island", "academy": "Binky Moon, LLC", "accenture": "Accenture plc", "accountant": "dot Accountant Limited", @@ -17,29 +17,29 @@ module.exports = { "aco": "ACO Severin Ahlmann GmbH & Co. KG", "active": "Active Network, LLC", "actor": "United TLD Holdco Ltd.", - "ad": "Andorra Telecom", + "ad": "Andorra (Principality of)", "adac": "Allgemeiner Deutscher Automobil-Club e.V. (ADAC)", "ads": "Charleston Road Registry Inc.", "adult": "ICM Registry AD LLC", - "ae": "Telecommunication Regulatory Authority (TRA)", + "ae": "United Arab Emirates", "aeg": "Aktiebolaget Electrolux", - "aero": "Societe Internationale de Telecommunications Aeronautique (SITA INC USA)", + "aero": "Air-transport industry", "aetna": "Aetna Life Insurance Company", - "af": "Ministry of Communications and IT", + "af": "Afghanistan (Islamic Republic of)", "afamilycompany": "Johnson Shareholdings, Inc.", "afl": "Australian Football League", "africa": "ZA Central Registry NPC trading as Registry.Africa", - "ag": "UHSA School of Medicine", + "ag": "Antigua and Barbuda", "agakhan": "Fondation Aga Khan (Aga Khan Foundation)", "agency": "Binky Moon, LLC", - "ai": "Government of Anguilla", + "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": "Electronic and Postal Communications Authority - AKEP", + "al": "Albania (Republic of)", "alfaromeo": "Fiat Chrysler Automobiles N.V.", "alibaba": "Alibaba Group Holding Limited", "alipay": "Alibaba Group Holding Limited", @@ -48,41 +48,41 @@ module.exports = { "ally": "Ally Financial Inc.", "alsace": "REGION GRAND EST", "alstom": "ALSTOM", - "am": "\"Internet Society\" Non-governmental Organization", + "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": "Retired", + "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": "Faculdade de Engenharia da Universidade Agostinho Neto", + "ao": "Angola (Republic of)", "aol": "OATH Inc.", "apartments": "Binky Moon, LLC", "app": "Charleston Road Registry Inc.", "apple": "Apple Inc.", - "aq": "Antarctica Network Information Centre Limited", + "aq": "Antarctica", "aquarelle": "Aquarelle.com", - "ar": "Presidencia de la Nación – Secretaría Legal y Técnica", + "ar": "Argentina (Argentine Republic)", "arab": "League of Arab States", "aramco": "Aramco Services Company", "archi": "STARTING DOT LIMITED", "army": "United TLD Holdco Ltd.", - "arpa": "Internet Architecture Board (IAB)", + "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": "AS Domain Registry", + "as": "American Samoa", "asda": "Wal-Mart Stores, Inc.", - "asia": "DotAsia Organisation Ltd.", + "asia": "Organisations and individuals in the Asia-Pacific region", "associates": "Binky Moon, LLC", - "at": "nic.at GmbH", + "at": "Austria (Republic of)", "athleta": "The Gap, Inc.", "attorney": "United TLD Holdco, Ltd", - "au": ".au Domain Administration (auDA)", + "au": "Australia (Commonwealth of)", "auction": "United TLD HoldCo, Ltd.", "audi": "AUDI Aktiengesellschaft", "audible": "Amazon Registry Services, Inc.", @@ -92,13 +92,13 @@ module.exports = { "auto": "Cars Registry Limited", "autos": "DERAutos, LLC", "avianca": "Aerovias del Continente Americano S.A. Avianca", - "aw": "SETAR", + "aw": "Aruba", "aws": "Amazon Registry Services, Inc.", - "ax": "Ålands landskapsregering", + "ax": "Åland Islands", "axa": "AXA SA", - "az": "IntraNS", + "az": "Azerbaijan (Republic of)", "azure": "Microsoft Corporation", - "ba": "Universtiy Telinformatic Centre (UTIC)", + "ba": "Bosnia and Herzegovina", "baby": "Johnson & Johnson Services, Inc.", "baidu": "Baidu, Inc.", "banamex": "Citigroup Inc.", @@ -115,14 +115,14 @@ module.exports = { "basketball": "Fédération Internationale de Basketball (FIBA)", "bauhaus": "Werkhaus GmbH", "bayern": "Bayern Connect GmbH", - "bb": "Government of Barbados\nMinistry of Economic Affairs and Development\nTelecommunications Unit", + "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": "Posts and Telecommunications Division", - "be": "DNS Belgium vzw/asbl", + "bd": "Bangladesh (People's Republic of)", + "be": "Belgium (Kingdom of)", "beats": "Beats Electronics, LLC", "beauty": "L'Oréal", "beer": "Top Level Domain Holdings Limited", @@ -131,20 +131,20 @@ module.exports = { "best": "BestTLD Pty Ltd", "bestbuy": "BBY Solutions, Inc.", "bet": "Afilias plc", - "bf": "ARCE-AutoritÈ de RÈgulation des Communications Electroniques", - "bg": "Register.BG", - "bh": "Telecommunications Regulatory Authority (TRA)", + "bf": "Burkina Faso", + "bg": "Bulgaria (Republic of)", + "bh": "Bahrain (Kingdom of)", "bharti": "Bharti Enterprises (Holding) Private Limited", - "bi": "Centre National de l'Informatique", + "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": "Neustar, Inc.", - "bj": "Benin Telecoms S.A.", - "bl": "Not assigned", + "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", @@ -152,13 +152,13 @@ module.exports = { "blog": "Knock Knock WHOIS There, LLC", "bloomberg": "Bloomberg IP Holdings LLC", "blue": "Afilias plc", - "bm": "Registry General Department, Ministry of Home Affairs", + "bm": "Bermuda", "bms": "Bristol-Myers Squibb Company", "bmw": "Bayerische Motoren Werke Aktiengesellschaft", - "bn": "Authority for Info-communications Technology Industry of Brunei Darussalam (AITI)", + "bn": "Brunei (Nation of Brunei - the Abode of Peace) [Negara Brunei Darussalam]", "bnl": "Banca Nazionale del Lavoro", "bnpparibas": "BNP Paribas", - "bo": "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia", + "bo": "Bolivia (Plurinational State of)", "boats": "DERBoats, LLC", "boehringer": "Boehringer Ingelheim International GmbH", "bofa": "Bank of America Corporation", @@ -174,16 +174,16 @@ module.exports = { "bot": "Amazon Registry Services, Inc.", "boutique": "Binky Moon, LLC", "box": "NS1 Limited", - "bq": "Not assigned", - "br": "Comite Gestor da Internet no Brasil", + "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": "The College of the Bahamas", - "bt": "Ministry of Information and Communications", + "bs": "Bahamas (Commonwealth of the)", + "bt": "Bhutan (Kingdom of)", "budapest": "Top Level Domain Holdings Limited", "bugatti": "Bugatti International SA", "build": "Plan Bee LLC", @@ -191,12 +191,12 @@ module.exports = { "business": "Binky Moon, LLC", "buy": "Amazon Registry Services, INC", "buzz": "DOTSTRATEGY CO.", - "bv": "UNINETT Norid A/S", - "bw": "Botswana Communications Regulatory Authority (BOCRA)", - "by": "Reliable Software, Ltd.", - "bz": "University of Belize", + "bv": "Bouvet Island", + "bw": "Botswana (Republic of)", + "by": "Belarus (Republic of)", + "bz": "Belize", "bzh": "Association www.bzh", - "ca": "Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)", + "ca": "Canada", "cab": "Binky Moon, LLC", "cafe": "Binky Moon, LLC", "cal": "Charleston Road Registry Inc.", @@ -223,24 +223,24 @@ module.exports = { "caseih": "CNH Industrial N.V.", "cash": "Binky Moon, LLC", "casino": "Binky Moon, LLC", - "cat": "Fundacio puntCAT", + "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": "eNIC Cocos (Keeling) Islands Pty.\nLtd. d/b/a Island Internet Services", - "cd": "Office Congolais des Postes et Télécommunications - OCPT", + "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": "Societe Centrafricaine de Telecommunications (SOCATEL)", + "cf": "Central African Republic", "cfa": "CFA Institute", "cfd": "DOTCFD REGISTRY LTD", - "cg": "ONPT Congo and Interpoint Switzerland", - "ch": "SWITCH The Swiss Education & Research Network", + "cg": "Congo (Republic of) [Congo-Brazzaville]", + "ch": "Switzerland (Swiss Confederation)", "chanel": "Chanel International B.V.", "channel": "Charleston Road Registry Inc.", "charity": "Corn Lake, LLC", @@ -253,7 +253,7 @@ module.exports = { "chrome": "Charleston Road Registry Inc.", "chrysler": "FCA US LLC.", "church": "Binky Moon, LLC", - "ci": "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)", + "ci": "Ivory Coast (Republic of Côte d'Ivoire)", "cipriani": "Hotel Cipriani Srl", "circle": "Amazon Registry Services, Inc.", "cisco": "Cisco Technology, Inc.", @@ -262,8 +262,8 @@ module.exports = { "citic": "CITIC Group Corporation", "city": "Binky Moon, LLC", "cityeats": "Lifestyle Domain Holdings, Inc.", - "ck": "Telecom Cook Islands Ltd.", - "cl": "NIC Chile (University of Chile)", + "ck": "Cook Islands", + "cl": "Chile (Republic of)", "claims": "Binky Moon, LLC", "cleaning": "Binky Moon, LLC", "click": "Uniregistry, Corp.", @@ -273,15 +273,15 @@ module.exports = { "cloud": "ARUBA PEC S.p.A.", "club": ".CLUB DOMAINS, LLC", "clubmed": "Club Méditerranée S.A.", - "cm": "Cameroon Telecommunications (CAMTEL)", - "cn": "China Internet Network Information Center (CNNIC)", - "co": ".CO Internet S.A.S.", + "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": "punkt.wien GmbH", - "com": "VeriSign Global Registry Services", + "com": "Commercial organizations", "comcast": "Comcast IP Holdings I, LLC", "commbank": "COMMONWEALTH BANK OF AUSTRALIA", "community": "Binky Moon, LLC", @@ -297,13 +297,13 @@ module.exports = { "cooking": "Top Level Domain Holdings Limited", "cookingchannel": "Lifestyle Domain Holdings, Inc.", "cool": "Binky Moon, LLC", - "coop": "DotCooperation 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": "National Academy of Sciences\nAcademia Nacional de Ciencias", + "cr": "Costa Rica (Republic of)", "credit": "Binky Moon, LLC", "creditcard": "Binky Moon, LLC", "creditunion": "CUNA Performance Resources, LLC", @@ -313,15 +313,15 @@ module.exports = { "cruise": "Viking River Cruises (Bermuda) Ltd.", "cruises": "Binky Moon, LLC", "csc": "Alliance-One Services, Inc.", - "cu": "CENIAInternet\nIndustria y San Jose\nCapitolio Nacional", + "cu": "Cuba (Republic of)", "cuisinella": "SALM S.A.S.", - "cv": "Agência Nacional das Comunicações (ANAC)", - "cw": "University of Curacao", - "cx": "Christmas Island Domain Administration Limited", - "cy": "University of Cyprus", + "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": "CZ.NIC, z.s.p.o", + "cz": "Czech Republic", "dabur": "Dabur India Limited", "dad": "Charleston Road Registry Inc.", "dance": "United TLD Holdco Ltd.", @@ -332,7 +332,7 @@ module.exports = { "day": "Charleston Road Registry Inc.", "dclk": "Charleston Road Registry Inc.", "dds": "Minds + Machines Group Limited", - "de": "DENIC eG", + "de": "Germany (Federal Republic of)", "deal": "Amazon Registry Services, Inc.", "dealer": "Dealer Dot Com, Inc.", "deals": "Binky Moon, LLC", @@ -357,11 +357,11 @@ module.exports = { "discover": "Discover Financial Services", "dish": "Dish DBS Corporation", "diy": "Lifestyle Domain Holdings, Inc.", - "dj": "Djibouti Telecom S.A", - "dk": "Dansk Internet Forum", - "dm": "DotDM Corporation", + "dj": "Djibouti (Republic of)", + "dk": "Denmark (Kingdom of)", + "dm": "Dominica (Commonwealth of)", "dnp": "Dai Nippon Printing Co., Ltd.", - "do": "Pontificia Universidad Catolica Madre y Maestra\nRecinto Santo Tomas de Aquino", + "do": "Dominican Republic", "docs": "Charleston Road Registry Inc.", "doctor": "Binky Moon, LLC", "dodge": "FCA US LLC.", @@ -381,17 +381,17 @@ module.exports = { "durban": "ZA Central Registry NPC trading as ZA Central Registry", "dvag": "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "dvr": "Hughes Satellite Systems Corporation", - "dz": "CERIST", + "dz": "Algeria (People's Democratic Republic of)", "earth": "Interlink Co., Ltd.", "eat": "Charleston Road Registry Inc.", - "ec": "ECUADORDOMAIN S.A.", + "ec": "Ecuador (Republic of)", "eco": "Big Room Inc.", "edeka": "EDEKA Verband kaufmännischer Genossenschaften e.V.", - "edu": "EDUCAUSE", + "edu": "Educational establishments", "education": "Binky Moon, LLC", - "ee": "Eesti Interneti Sihtasutus (EIS)", - "eg": "Egyptian Universities Network (EUN)\nSupreme Council of Universities", - "eh": "Not assigned", + "ee": "Estonia (Republic of)", + "eg": "Egypt (Arab Republic of)", + "eh": "Western Sahara {reserved}", "email": "Binky Moon, LLC", "emerck": "Merck KGaA", "energy": "Binky Moon, LLC", @@ -401,16 +401,16 @@ module.exports = { "epost": "Deutsche Post AG", "epson": "Seiko Epson Corporation", "equipment": "Binky Moon, LLC", - "er": "Eritrea Telecommunication Services Corporation (EriTel)", + "er": "Eritrea (State of)", "ericsson": "Telefonaktiebolaget L M Ericsson", "erni": "ERNI Group Holding AG", - "es": "Red.es", + "es": "Spain (Kingdom of)", "esq": "Charleston Road Registry Inc.", "estate": "Binky Moon, LLC", "esurance": "Esurance Insurance Company", - "et": "Ethio telecom", + "et": "Ethiopia (Federal Democratic Republic of)", "etisalat": "Emirates Telecommunications Corporation (trading as Etisalat)", - "eu": "EURid vzw/asbl", + "eu": "European Union", "eurovision": "European Broadcasting Union (EBU)", "eus": "Puntueus Fundazioa", "events": "Binky Moon, LLC", @@ -435,7 +435,7 @@ module.exports = { "feedback": "Top Level Spectrum, Inc.", "ferrari": "Fiat Chrysler Automobiles N.V.", "ferrero": "Ferrero Trading Lux S.A.", - "fi": "Finnish Communications Regulatory Authority", + "fi": "Finland (Republic of)", "fiat": "Fiat Chrysler Automobiles N.V.", "fidelity": "Fidelity Brokerage Services LLC", "fido": "Rogers Communications Canada Inc.", @@ -450,8 +450,8 @@ module.exports = { "fishing": "Top Level Domain Holdings Limited", "fit": "Minds + Machines Group Limited", "fitness": "Binky Moon, LLC", - "fj": "The University of the South Pacific\nIT Services", - "fk": "Falkland Islands Government", + "fj": "Fiji (Republic of)", + "fk": "Falkland Islands (Malvinas)", "flickr": "Yahoo! Domain Services Inc.", "flights": "Binky Moon, LLC", "flir": "FLIR Systems, Inc.", @@ -459,8 +459,8 @@ module.exports = { "flowers": "Uniregistry, Corp.", "flsmidth": "Retired", "fly": "Charleston Road Registry Inc.", - "fm": "FSM Telecommunications Corporation", - "fo": "FO Council", + "fm": "Micronesia (Federated States of)", + "fo": "Faroe Islands", "foo": "Charleston Road Registry Inc.", "food": "Lifestyle Domain Holdings, Inc.", "foodnetwork": "Lifestyle Domain Holdings, Inc.", @@ -471,7 +471,7 @@ module.exports = { "forum": "Fegistry, LLC", "foundation": "Binky Moon, LLC", "fox": "FOX Registry, LLC", - "fr": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "fr": "France (French Republic)", "free": "Amazon Registry Services, Inc.", "fresenius": "Fresenius Immobilien-Verwaltungs-GmbH", "frl": "FRLregistry B.V.", @@ -486,7 +486,7 @@ module.exports = { "furniture": "Binky Moon, LLC", "futbol": "United TLD Holdco, Ltd.", "fyi": "Binky Moon, LLC", - "ga": "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)", + "ga": "Gabon (Gabonese Republic)", "gal": "Asociación puntoGAL", "gallery": "Binky Moon, LLC", "gallo": "Gallo Vineyards, Inc.", @@ -495,36 +495,36 @@ module.exports = { "games": "United TLD Holdco Ltd.", "gap": "The Gap, Inc.", "garden": "Top Level Domain Holdings Limited", - "gb": "Reserved Domain - IANA", + "gb": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", "gbiz": "Charleston Road Registry Inc.", - "gd": "The National Telecommunications Regulatory Commission (NTRC)", + "gd": "Grenada", "gdn": "Joint Stock Company \"Navigation-information systems\"", - "ge": "Caucasus Online LLC", + "ge": "Georgia", "gea": "GEA Group Aktiengesellschaft", "gent": "Combell nv", "genting": "Resorts World Inc. Pte. Ltd.", "george": "Wal-Mart Stores, Inc.", - "gf": "Net Plus", - "gg": "Island Networks Ltd.", + "gf": "French Guiana", + "gg": "Guernsey (Bailiwick of)", "ggee": "GMO Internet, Inc.", - "gh": "Network Computer Systems Limited", - "gi": "Sapphire Networks", + "gh": "Ghana (Republic of)", + "gi": "Gibraltar", "gift": "Uniregistry, Corp.", "gifts": "Binky Moon, LLC", "gives": "United TLD Holdco Ltd.", "giving": "Giving Limited", - "gl": "TELE Greenland A/S", + "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": "GM-NIC", + "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": "Centre National des Sciences Halieutiques de Boussoura", + "gn": "Guinea (Republic of)", "godaddy": "Go Daddy East, LLC", "gold": "Binky Moon, LLC", "goldpoint": "YODOBASHI CAMERA CO.,LTD.", @@ -536,10 +536,10 @@ module.exports = { "google": "Charleston Road Registry Inc.", "gop": "Republican State Leadership Committee, Inc.", "got": "Amazon Registry Services, Inc.", - "gov": "General Services Administration\nAttn: QTDC, 2E08 (.gov Domain Registration)", - "gp": "Networking Technologies Group", - "gq": "GETESA", - "gr": "ICS-FORTH GR", + "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", @@ -547,17 +547,17 @@ module.exports = { "gripe": "Binky Moon, LLC", "grocery": "Wal-Mart Stores, Inc.", "group": "Binky Moon, LLC", - "gs": "Government of South Georgia and South Sandwich Islands (GSGSSI)", - "gt": "Universidad del Valle de Guatemala", - "gu": "University of Guam", + "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": "Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau", - "gy": "University of Guyana", + "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.", @@ -576,10 +576,10 @@ module.exports = { "hisamitsu": "Hisamitsu Pharmaceutical Co.,Inc.", "hitachi": "Hitachi, Ltd.", "hiv": "Uniregistry, Corp.", - "hk": "Hong Kong Internet Registration Corporation Ltd.", + "hk": "Hong Kong (Hong Kong Special Administrative Region of the People's Republic of China)", "hkt": "PCCW-HKT DataCom Services Limited", - "hm": "HM Domain Registry", - "hn": "Red de Desarrollo Sostenible Honduras", + "hm": "Heard Island and McDonald Islands", + "hn": "Honduras (Republic of)", "hockey": "Binky Moon, LLC", "holdings": "Binky Moon, LLC", "holiday": "Binky Moon, LLC", @@ -599,11 +599,11 @@ module.exports = { "hotmail": "Microsoft Corporation", "house": "Binky Moon, LLC", "how": "Charleston Road Registry Inc.", - "hr": "CARNet - Croatian Academic and Research Network", + "hr": "Croatia (Republic of)", "hsbc": "HSBC Global Services (UK) Limited", - "ht": "Consortium FDS/RDDH", + "ht": "Haiti (Republic of)", "htc": "Not assigned", - "hu": "Council of Hungarian Internet Providers (CHIP)", + "hu": "Hungary", "hughes": "Hughes Satellite Systems Corporation", "hyatt": "Hyatt GTLD, L.L.C.", "hyundai": "Hyundai Motor Company", @@ -611,43 +611,43 @@ module.exports = { "icbc": "Industrial and Commercial Bank of China Limited", "ice": "IntercontinentalExchange, Inc.", "icu": "Shortdot SA", - "id": "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)", - "ie": "University College Dublin\nComputing Services\nComputer Centre", + "id": "Indonesia (Republic of)", + "ie": "Ireland (Republic of)", "ieee": "IEEE Global LLC", "ifm": "ifm electronic gmbh", "iinet": "Retired", "ikano": "Ikano S.A.", - "il": "Internet Society of Israel", - "im": "Isle of Man Government", + "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": "National Internet Exchange of India", + "in": "India (Republic of)", "industries": "Binky Moon, LLC", "infiniti": "NISSAN MOTOR CO., LTD.", - "info": "Afilias Limited", + "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": "Internet Assigned Numbers Authority", + "int": "International treaty-based organizations", "intel": "Intel Corporation", "international": "Binky Moon, LLC", "intuit": "Intuit Administrative Services, Inc.", "investments": "Binky Moon, LLC", - "io": "IO Top Level Domain Registry\nCable and Wireless", + "io": "British Indian Ocean Territory", "ipiranga": "Ipiranga Produtos de Petroleo S.A.", - "iq": "Communications and Media Commission (CMC)", - "ir": "Institute for Research in Fundamental Sciences", + "iq": "Iraq (Republic of)", + "ir": "Iran (Islamic Republic of)", "irish": "Binky Moon, LLC", - "is": "ISNIC - Internet Iceland ltd.", + "is": "Iceland", "iselect": "iSelect Ltd", "ismaili": "Fondation Aga Khan (Aga Khan Foundation)", "ist": "Istanbul Metropolitan Municipality", "istanbul": "Istanbul Metropolitan Municipality", - "it": "IIT - CNR", + "it": "Italy (Italian Republic)", "itau": "Itau Unibanco Holding S.A.", "itv": "ITV Services Limited", "iveco": "CNH Industrial N.V.", @@ -656,59 +656,59 @@ module.exports = { "java": "Oracle Corporation", "jcb": "JCB Co., Ltd.", "jcp": "JCP Media, Inc.", - "je": "Island Networks (Jersey) Ltd.", + "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": "University of West Indies", + "jm": "Jamaica (Commonwealth of)", "jmp": "Matrix IP LLC", "jnj": "Johnson & Johnson Services, Inc.", - "jo": "National Information Technology Center (NITC)", - "jobs": "Employ Media LLC", + "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 Registry Services Co., Ltd.", + "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 Network Information Center (KeNIC)", + "ke": "Kenya (Republic of)", "kerryhotels": "Kerry Trading Co. Limited", "kerrylogistics": "Kerry Trading Co. Limited", "kerryproperties": "Kerry Trading Co. Limited", "kfh": "Kuwait Finance House", - "kg": "AsiaInfo Telecommunication Enterprise", - "kh": "Telecommunication Regulator of Cambodia (TRC)", - "ki": "Ministry of Communications, Transport, and Tourism Development", + "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": "Comores Telecom", - "kn": "Ministry of Finance, Sustainable Development Information & Technology", + "km": "Comoros (Union of the)", + "kn": "Saint Kitts and Nevis (Federation of)", "koeln": "punkt.wien GmbH", "komatsu": "Komatsu Ltd.", "kosher": "Kosher Marketing Assets LLC", - "kp": "Star Joint Venture Company", + "kp": "Korea (Democratic People's Republic of) [North Korea]", "kpmg": "KPMG International Cooperative (KPMG International Genossenschaft)", "kpn": "Koninklijke KPN N.V.", - "kr": "Korea Internet & Security Agency (KISA)", + "kr": "Korea (Republic of) [South Korea]", "krd": "KRG Department of Information Technology", "kred": "KredTLD Pty Ltd", "kuokgroup": "Kerry Trading Co. Limited", - "kw": "Communications and Information Technology Regulatory Authority", - "ky": "Utility Regulation and Competition Office (OfReg)", + "kw": "Kuwait (State of Kuwait)", + "ky": "Cayman Islands", "kyoto": "Academic Institution: Kyoto Jyoho Gakuen", - "kz": "Association of IT Companies of Kazakhstan", - "la": "Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications", + "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.", @@ -725,8 +725,8 @@ module.exports = { "latrobe": "La Trobe University", "law": "Minds + Machines Group Limited", "lawyer": "United TLD Holdco, Ltd", - "lb": "American University of Beirut\nComputing and Networking Services", - "lc": "University of Puerto Rico", + "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", @@ -735,7 +735,7 @@ module.exports = { "lego": "LEGO Juris A/S", "lexus": "TOYOTA MOTOR CORPORATION", "lgbt": "Afilias plc", - "li": "SWITCH The Swiss Education & Research Network", + "li": "Liechtenstein (Principality of)", "liaison": "Liaison Technologies, Incorporated", "lidl": "Schwarz Domains und Services GmbH & Co. KG", "life": "Binky Moon, LLC", @@ -753,7 +753,7 @@ module.exports = { "live": "United TLD Holdco Ltd.", "living": "Lifestyle Domain Holdings, Inc.", "lixil": "LIXIL Group Corporation", - "lk": "Council for Information Technology\nLK Domain Registrar", + "lk": "Sri Lanka (Democratic Socialist Republic of)", "llc": "Afilias plc", "loan": "dot Loan Limited", "loans": "Binky Moon, LLC", @@ -767,19 +767,19 @@ module.exports = { "love": "Merchant Law Group LLP", "lpl": "LPL Holdings, Inc.", "lplfinancial": "LPL Holdings, Inc.", - "lr": "Data Technology Solutions, Inc.", - "ls": "National University of Lesotho", - "lt": "Kaunas University of Technology", + "lr": "Liberia (Republic of)", + "ls": "Lesotho (Kingdom of)", + "lt": "Lithuania (Republic of)", "ltd": "Binky Moon, LLC", "ltda": "InterNetX Corp.", - "lu": "RESTENA", + "lu": "Luxembourg (Grand Duchy of)", "lundbeck": "H. Lundbeck A/S", "lupin": "LUPIN LIMITED", "luxe": "Top Level Domain Holdings Limited", "luxury": "Luxury Partners LLC", - "lv": "University of Latvia\nInstitute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)", - "ly": "General Post and Telecommunication Company", - "ma": "Agence Nationale de Réglementation des Télécommunications (ANRT)", + "lv": "Latvia (Republic of)", + "ly": "Libya", + "ma": "Morocco", "macys": "Macys, Inc.", "madrid": "Comunidad de Madrid", "maif": "Mutuelle Assurance Instituteur France (MAIF)", @@ -797,12 +797,12 @@ module.exports = { "maserati": "Fiat Chrysler Automobiles N.V.", "mattel": "Mattel Sites, Inc.", "mba": "Binky Moon, LLC", - "mc": "Gouvernement de Monaco\nDirection des Communications Electroniques", + "mc": "Monaco (Principality of)", "mcd": "Not assigned", "mcdonalds": "Not assigned", "mckinsey": "McKinsey Holdings, Inc.", - "md": "MoldData S.E.", - "me": "Government of Montenegro", + "md": "Moldova (Republic of)", + "me": "Montenegro", "med": "Medistry LLC", "media": "Binky Moon, LLC", "meet": "Charleston Road Registry Inc.", @@ -814,25 +814,25 @@ module.exports = { "meo": "Not assigned", "merckmsd": "MSD Registry Holdings, Inc.", "metlife": "MetLife Services and Solutions, LLC", - "mf": "Not assigned", - "mg": "NIC-MG (Network Information Center Madagascar)", - "mh": "Office of the Cabinet", + "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": "DoD Network Information Center", + "mil": "US military", "mini": "Bayerische Motoren Werke Aktiengesellschaft", "mint": "Intuit Administrative Services, Inc.", "mit": "Massachusetts Institute of Technology", "mitsubishi": "Mitsubishi Corporation", - "mk": "Macedonian Academic Research Network Skopje", - "ml": "Agence des Technologies de l’Information et de la Communication", + "mk": "Macedonia (Republic of)", + "ml": "Mali (Republic of)", "mlb": "MLB Advanced Media DH, LLC", "mls": "The Canadian Real Estate Association", - "mm": "Ministry of Communications, Posts & Telegraphs", + "mm": "Myanmar (Republic of the Union of) [Burma]", "mma": "MMA IARD", - "mn": "Datacom Co., Ltd.", - "mo": "Macao Post and Telecommunications Bureau (CTT)", - "mobi": "Afilias Technologies Limited dba dotMobi", + "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.", @@ -852,37 +852,37 @@ module.exports = { "mov": "Charleston Road Registry Inc.", "movie": "Binky Moon, LLC", "movistar": "Telefónica S.A.", - "mp": "Saipan Datacom, Inc.", - "mq": "MEDIASERV", - "mr": "Université de Nouakchott Al Aasriya", - "ms": "MNI Networks Ltd.", + "mp": "Northern Mariana Islands (Commonwealth of the)", + "mq": "Martinique", + "mr": "Mauritania (Islamic Republic of)", + "ms": "Montserrat", "msd": "MSD Registry Holdings, Inc.", - "mt": "NIC (Malta)", + "mt": "Malta (Republic of)", "mtn": "MTN Dubai Limited", "mtpc": "Retired", "mtr": "MTR Corporation Limited", - "mu": "Internet Direct Ltd", - "museum": "Museum Domain Management Association", + "mu": "Mauritius (Republic of)", + "museum": "Museums", "mutual": "Northwestern Mutual MU TLD Registry, LLC", "mutuelle": "Retired", - "mv": "Dhiraagu Pvt. Ltd. (DHIVEHINET)", - "mw": "Malawi Sustainable Development Network Programme\n(Malawi SDNP)", - "mx": "NIC-Mexico\nITESM - Campus Monterrey", - "my": "MYNIC Berhad", - "mz": "Centro de Informatica de Universidade Eduardo Mondlane", - "na": "Namibian Network Information Center", + "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": "VeriSign Information Services, Inc.", + "name": "Individuals", "nationwide": "Nationwide Mutual Insurance Company", "natura": "NATURA COSMÉTICOS S.A.", "navy": "United TLD Holdco Ltd.", "nba": "NBA REGISTRY, LLC", - "nc": "Office des Postes et Telecommunications", - "ne": "SONITEL", + "nc": "New Caledonia", + "ne": "Niger (Republic of)", "nec": "NEC Corporation", - "net": "VeriSign Global Registry Services", + "net": "Network", "netbank": "COMMONWEALTH BANK OF AUSTRALIA", "netflix": "Netflix, Inc.", "network": "Binky Moon, LLC", @@ -893,34 +893,34 @@ module.exports = { "next": "Next plc", "nextdirect": "Next plc", "nexus": "Charleston Road Registry Inc.", - "nf": "Norfolk Island Data Services", + "nf": "Norfolk Island (Territory of)", "nfl": "NFL Reg Ops LLC", - "ng": "Nigeria Internet Registration Association", + "ng": "Nigeria (Federal Republic of)", "ngo": "Public Interest Registry", "nhk": "Japan Broadcasting Corporation (NHK)", - "ni": "Universidad Nacional del Ingernieria\nCentro de Computo", + "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": "SIDN (Stichting Internet Domeinregistratie Nederland)", - "no": "UNINETT Norid A/S", + "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": "Mercantile Communications Pvt. Ltd.", - "nr": "CENPAC NET", + "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": "The IUSN Foundation", + "nu": "Niue", "nyc": "The City of New York by and through the New York City Department of Information Technology & Telecommunications", - "nz": "InternetNZ", + "nz": "New Zealand", "obi": "OBI Group Holding SE & Co. KGaA", "observer": "Top Level Spectrum, Inc.", "off": "Johnson Shareholdings, Inc.", @@ -930,7 +930,7 @@ module.exports = { "olayangroup": "Crescent Holding GmbH", "oldnavy": "The Gap, Inc.", "ollo": "Dish DBS Corporation", - "om": "Telecommunications Regulatory Authority (TRA)", + "om": "Oman (Sultanate of)", "omega": "The Swatch Group Ltd", "one": "One.com A/S", "ong": "Public Interest Registry", @@ -941,7 +941,7 @@ module.exports = { "open": "American Express Travel Related Services Company, Inc.", "oracle": "Oracle Corporation", "orange": "Orange Brand Services Limited", - "org": "Public Interest Registry (PIR)", + "org": "Non-profit organizations", "organic": "Afilias plc", "orientexpress": "Retired", "origins": "The Estée Lauder Companies Inc.", @@ -949,7 +949,7 @@ module.exports = { "otsuka": "Otsuka Holdings Co., Ltd.", "ott": "Dish DBS Corporation", "ovh": "OVH SAS", - "pa": "Universidad Tecnologica de Panama", + "pa": "Panama (Republic of)", "page": "Charleston Road Registry Inc.", "pamperedchef": "Not assigned", "panasonic": "Panasonic Corporation", @@ -962,12 +962,12 @@ module.exports = { "passagens": "Travel Reservations SRL", "pay": "Amazon Registry Services, Inc.", "pccw": "PCCW Enterprises Limited", - "pe": "Red Cientifica Peruana", + "pe": "Peru (Republic of)", "pet": "Afilias plc", - "pf": "Gouvernement de la Polynésie française", + "pf": "French Polynesia and Clipperton Island", "pfizer": "Pfizer Inc.", - "pg": "PNG DNS Administration\nVice Chancellors Office\nThe Papua New Guinea University of Technology", - "ph": "PH Domain Foundation", + "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.", @@ -986,27 +986,27 @@ module.exports = { "pink": "Afilias plc", "pioneer": "Pioneer Corporation", "pizza": "Binky Moon, LLC", - "pk": "PKNIC", - "pl": "Research and Academic Computer Network", + "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": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", - "pn": "Pitcairn Island Administration", + "pm": "Saint Pierre and Miquelon", + "pn": "Pitcairn Islands (Pitcairn - Henderson - Ducie and Oeno Islands)", "pnc": "PNC Domain Co., LLC", "pohl": "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "poker": "Afilias plc", "politie": "Politie Nederland", "porn": "ICM Registry PN LLC", "post": "Universal Postal Union", - "pr": "Gauss Research Laboratory Inc.", + "pr": "Puerto Rico (Commonwealth of)", "pramerica": "Prudential Financial, Inc.", "praxi": "Praxi S.p.A.", "press": "DotPress Inc.", "prime": "Amazon Registry Services, Inc.", - "pro": "Registry Services Corporation\ndba RegistryPro", + "pro": "Profession", "prod": "Charleston Road Registry Inc.", "productions": "Binky Moon, LLC", "prof": "Charleston Road Registry Inc.", @@ -1017,13 +1017,13 @@ module.exports = { "protection": "XYZ.COM LLC", "pru": "Prudential Financial, Inc.", "prudential": "Prudential Financial, Inc.", - "ps": "Ministry Of Telecommunications &\nInformation Technology,\nGovernment Computer Center.", - "pt": "Associação DNS.PT", + "ps": "Palestine (State of)", + "pt": "Portugal (Portuguese Republic)", "pub": "United TLD Holdco Ltd.", - "pw": "Micronesia Investment and Development Corporation", + "pw": "Palau (Republic of)", "pwc": "PricewaterhouseCoopers LLP", - "py": "NIC-PY", - "qa": "Communications Regulatory Authority", + "py": "Paraguay (Republic of)", + "qa": "Qatar (State of)", "qpon": "dotCOOL, Inc.", "quebec": "PointQuébec Inc", "quest": "Quest ION Limited", @@ -1031,7 +1031,7 @@ module.exports = { "racing": "Premier Registry Limited", "radio": "European Broadcasting Union (EBU)", "raid": "Johnson Shareholdings, Inc.", - "re": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "re": "Réunion", "read": "Amazon Registry Services, Inc.", "realestate": "dotRealEstate LLC", "realtor": "Real Estate Domains LLC", @@ -1064,22 +1064,22 @@ module.exports = { "rio": "Empresa Municipal de Informática SA - IPLANRIO", "rip": "United TLD Holdco Ltd.", "rmit": "Royal Melbourne Institute of Technology", - "ro": "National Institute for R&D in Informatics", + "ro": "Romania", "rocher": "Ferrero Trading Lux S.A.", "rocks": "United TLD Holdco, LTD.", "rodeo": "Top Level Domain Holdings Limited", "rogers": "Rogers Communications Canada Inc.", "room": "Amazon Registry Services, Inc.", - "rs": "Serbian National Internet Domain Registry (RNIDS)", + "rs": "Serbia (Republic of)", "rsvp": "Charleston Road Registry Inc.", - "ru": "Coordination Center for TLD RU", + "ru": "Russia (Russian Federation)", "rugby": "World Rugby Strategic Developments Limited", "ruhr": "regiodot GmbH & Co. KG", "run": "Binky Moon, LLC", - "rw": "Rwanda Information Communication and Technology Association (RICTA)", + "rw": "Rwanda (Republic of)", "rwe": "RWE AG", "ryukyu": "BRregistry, Inc.", - "sa": "Communications and Information Technology Commission", + "sa": "Saudi Arabia (Kingdom of)", "saarland": "dotSaarland GmbH", "safe": "Amazon Registry Services, Inc.", "safety": "Safety Registry Services, LLC.", @@ -1097,10 +1097,10 @@ module.exports = { "sas": "Research IP LLC", "save": "Amazon Registry Services, Inc.", "saxo": "Saxo Bank A/S", - "sb": "Solomon Telekom Company Limited", + "sb": "Solomon Islands", "sbi": "STATE BANK OF INDIA", "sbs": "SPECIAL BROADCASTING SERVICE CORPORATION", - "sc": "VCS Pty Ltd", + "sc": "Seychelles (Republic of)", "sca": "SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)", "scb": "The Siam Commercial Bank Public Company Limited (\"SCB\")", "schaeffler": "Schaeffler Technologies AG & Co. KG", @@ -1113,8 +1113,8 @@ module.exports = { "scjohnson": "Johnson Shareholdings, Inc.", "scor": "SCOR SE", "scot": "Dot Scot Registry Limited", - "sd": "Sudan Internet Society", - "se": "The Internet Infrastructure Foundation", + "sd": "Sudan (Republic of)", + "se": "Sweden (Kingdom of)", "search": "Charleston Road Registry Inc.", "seat": "SEAT, S.A. (Sociedad Unipersonal)", "secure": "Amazon Registry Services, Inc.", @@ -1129,8 +1129,8 @@ module.exports = { "sex": "ICM Registry SX LLC", "sexy": "Uniregistry, Corp.", "sfr": "Societe Francaise du Radiotelephone - SFR", - "sg": "Singapore Network Information Centre (SGNIC) Pte Ltd", - "sh": "Government of St. Helena", + "sg": "Singapore (Republic of)", + "sh": "Saint Helena", "shangrila": "Shangri‐La International Hotel Management Limited", "sharp": "Sharp Corporation", "shaw": "Shaw Cablesystems G.P.", @@ -1144,25 +1144,25 @@ module.exports = { "show": "Binky Moon, LLC", "showtime": "CBS Domains Inc.", "shriram": "Shriram Capital Ltd.", - "si": "Academic and Research Network of Slovenia (ARNES)", + "si": "Slovenia (Republic of)", "silk": "Amazon Registry Services, Inc.", "sina": "Sina Corporation", "singles": "Binky Moon, LLC", "site": "DotSite Inc.", - "sj": "UNINETT Norid A/S", - "sk": "SK-NIC, a.s.", + "sj": "Svalbard and Jan Mayen {not in use - see also: .no}", + "sk": "Slovakia (Slovak Republic)", "ski": "STARTING DOT LIMITED", "skin": "L'Oréal", "sky": "Sky International AG", "skype": "Microsoft Corporation", - "sl": "Sierratel", + "sl": "Sierra Leone (Republic of)", "sling": "Hughes Satellite Systems Corporation", - "sm": "Telecom Italia San Marino S.p.A.", + "sm": "San Marino (Republic of)", "smart": "Smart Communications, Inc. (SMART)", "smile": "Amazon Registry Services, Inc.", - "sn": "Universite Cheikh Anta Diop\nNIC Senegal", + "sn": "Senegal (Republic of)", "sncf": "SNCF (Société Nationale des Chemins de fer Francais)", - "so": "Ministry of Post and Telecommunications", + "so": "Somalia (Federal Republic of)", "soccer": "Binky Moon, LLC", "social": "United TLD Holdco Ltd.", "softbank": "SoftBank Group Corp.", @@ -1178,11 +1178,11 @@ module.exports = { "sport": "Global Association of International Sports Federations (GAISF)", "spot": "Amazon Registry Services, Inc.", "spreadbetting": "DOTSPREADBETTING REGISTRY LTD", - "sr": "Telesur", + "sr": "Suriname (Republic of)", "srl": "InterNetX Corp.", "srt": "FCA US LLC.", - "ss": "Not assigned", - "st": "Tecnisys", + "ss": "South Sudan (Republic of)", + "st": "São Tomé and Príncipe (Democratic Republic of)", "stada": "STADA Arzneimittel AG", "staples": "Staples, Inc.", "star": "Star India Private Limited", @@ -1199,7 +1199,7 @@ module.exports = { "studio": "United TLD Holdco Ltd.", "study": "OPEN UNIVERSITIES AUSTRALIA PTY LTD", "style": "Binky Moon, LLC", - "su": "Russian Institute for Development of Public Networks\n(ROSNIIROS)", + "su": "Soviet Union (Union of Soviet Socialist Republics)", "sucks": "Vox Populi Registry Ltd.", "supplies": "Binky Moon, LLC", "supply": "Binky Moon, LLC", @@ -1207,16 +1207,16 @@ module.exports = { "surf": "Top Level Domain Holdings Limited", "surgery": "Binky Moon, LLC", "suzuki": "SUZUKI MOTOR CORPORATION", - "sv": "SVNet", + "sv": "El Salvador (Republic of)", "swatch": "The Swatch Group Ltd", "swiftcover": "Swiftcover Insurance Services Limited", "swiss": "Swiss Confederation", - "sx": "SX Registry SA B.V.", - "sy": "National Agency for Network Services (NANS)", + "sx": "Sint Maarten", + "sy": "Syria (Syrian Arab Republic)", "sydney": "State of New South Wales, Department of Premier and Cabinet", "symantec": "Symantec Corporation", "systems": "Binky Moon, LLC", - "sz": "University of Swaziland\nDepartment of Computer Science", + "sz": "Swaziland (Kingdom of)", "tab": "Tabcorp Holdings Limited", "taipei": "Taipei City Government", "talk": "Amazon Registry Services, Inc.", @@ -1227,22 +1227,22 @@ module.exports = { "tattoo": "Uniregistry, Corp.", "tax": "Binky Moon, LLC", "taxi": "Binky Moon, LLC", - "tc": "Melrex TC", + "tc": "Turks and Caicos Islands", "tci": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", - "td": "l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC)", + "td": "Chad (Republic of)", "tdk": "TDK Corporation", "team": "Binky Moon, LLC", "tech": "Dot Tech LLC", "technology": "Binky Moon, LLC", - "tel": "Telnames Ltd.", + "tel": "Telephone", "telecity": "TelecityGroup International Limited", "telefonica": "Telefónica S.A.", "temasek": "Temasek Holdings (Private) Limited", "tennis": "Binky Moon, LLC", "teva": "Teva Pharmaceutical Industries Limited", - "tf": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", - "tg": "Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)", - "th": "Thai Network Information Center Foundation", + "tf": "French Southern and Antarctic Lands (Territory of the)", + "tg": "Togo (Togolese Republic)", + "th": "Thailand (Kingdom of)", "thd": "Home Depot Product Authority, LLC", "theater": "Binky Moon, LLC", "theatre": "XYZ.COM LLC", @@ -1253,16 +1253,16 @@ module.exports = { "tips": "Binky Moon, LLC", "tires": "Binky Moon, LLC", "tirol": "punkt Tirol GmbH", - "tj": "Information Technology Center", + "tj": "Tajikistan (Republic of)", "tjmaxx": "The TJX Companies, Inc.", "tjx": "The TJX Companies, Inc.", - "tk": "Telecommunication Tokelau Corporation (Teletok)", + "tk": "Tokelau", "tkmaxx": "The TJX Companies, Inc.", - "tl": "Autoridade Nacional de Comunicações", - "tm": "TM Domain Registry Ltd", + "tl": "Timor-Leste (Democratic Republic of) [East Timor]", + "tm": "Turkmenistan", "tmall": "Alibaba Group Holding Limited", - "tn": "Agence Tunisienne d'Internet", - "to": "Government of the Kingdom of Tonga\nH.R.H. Crown Prince Tupouto'a\nc/o Consulate of Tonga", + "tn": "Tunisia (Republic of)", + "to": "Tonga (Kingdom of)", "today": "Binky Moon, LLC", "tokyo": "GMO Registry, Inc.", "tools": "Binky Moon, LLC", @@ -1274,54 +1274,54 @@ module.exports = { "town": "Binky Moon, LLC", "toyota": "TOYOTA MOTOR CORPORATION", "toys": "Binky Moon, LLC", - "tp": "Retired", - "tr": "Middle East Technical University\nDepartment of Computer Engineering", + "tp": "Timor-Leste (Democratic Republic of) [East Timor] {being phased out - also see: .tl}", + "tr": "Turkey (Republic of)", "trade": "Elite Registry Limited", "trading": "DOTTRADING REGISTRY LTD", "training": "Binky Moon, LLC", - "travel": "Dog\tBeach, LLC", + "travel": "Travel", "travelchannel": "Lifestyle Domain Holdings, Inc.", "travelers": "Travelers TLD, LLC", "travelersinsurance": "Travelers TLD, LLC", "trust": "Artemis Internet Inc", "trv": "Travelers TLD, LLC", - "tt": "University of the West Indies\nFaculty of Engineering", + "tt": "Trinidad and Tobago (Republic of)", "tube": "Latin American Telecom LLC", "tui": "TUI AG", "tunes": "Amazon Registry Services, Inc.", "tushu": "Amazon Registry Services, Inc.", - "tv": "Ministry of Finance and Tourism", + "tv": "Tuvalu", "tvs": "T V SUNDRAM IYENGAR & SONS PRIVATE LIMITED", - "tw": "Taiwan Network Information Center (TWNIC)", - "tz": "Tanzania Network Information Centre (tzNIC)", - "ua": "Hostmaster Ltd.", + "tw": "Taiwan (Republic of China)", + "tz": "Tanzania (United Republic of)", + "ua": "Ukraine", "ubank": "National Australia Bank Limited", "ubs": "UBS AG", "uconnect": "FCA US LLC.", - "ug": "Uganda Online Ltd.", - "uk": "Nominet UK", - "um": "Not assigned", + "ug": "Uganda (Republic of)", + "uk": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", + "um": "United States Minor Outlying Islands {formerly - retired 2010 - see also: .us}", "unicom": "China United Network Communications Corporation Limited", "university": "Binky Moon, LLC", "uno": "Dot Latin LLC", "uol": "UBN INTERNET LTDA.", "ups": "UPS Market Driver, Inc.", - "us": "NeuStar, Inc.", - "uy": "SeCIU - Universidad de la Republica", - "uz": "Computerization and Information Technologies Developing Center\nUZINFOCOM", - "va": "Holy See - Vatican City State", + "us": "United States of America and United States Minor Outlying Islands", + "uy": "Uruguay (Oriental Republic of)", + "uz": "Uzbekistan (Republic of)", + "va": "Vatican City (Vatican City State)", "vacations": "Binky Moon, LLC", "vana": "Lifestyle Domain Holdings, Inc.", "vanguard": "The Vanguard Group, Inc.", - "vc": "Ministry of Telecommunications, Science, Technology and Industry", - "ve": "Comisión Nacional de Telecomunicaciones (CONATEL)", + "vc": "Saint Vincent and the Grenadines", + "ve": "Venezuela (Bolivarian Republic of)", "vegas": "Dot Vegas, Inc.", "ventures": "Binky Moon, LLC", "verisign": "VeriSign, Inc.", "versicherung": "TLD-BOX Registrydienstleistungen GmbH", "vet": "United TLD Holdco, Ltd", - "vg": "Telecommunications Regulatory Commission of the Virgin Islands", - "vi": "Virgin Islands Public Telecommunications System, Inc.", + "vg": "British Virgin Islands (Virgin Islands)", + "vi": "United States Virgin Islands (United States Virgin Islands)", "viajes": "Binky Moon, LLC", "video": "United TLD Holdco, Ltd", "vig": "VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe", @@ -1337,7 +1337,7 @@ module.exports = { "viva": "Saudi Telecom Company", "vivo": "Telefonica Brasil S.A.", "vlaanderen": "DNS.be vzw", - "vn": "Ministry of Information and Communications of Socialist Republic of Viet Nam", + "vn": "Vietnam (Socialist Republic of)", "vodka": "Top Level Domain Holdings Limited", "volkswagen": "Volkswagen Group of America Inc.", "volvo": "Volvo Holding Sverige Aktiebolag", @@ -1345,7 +1345,7 @@ module.exports = { "voting": "Valuetainment Corp.", "voto": "Monolith Registry LLC", "voyage": "Binky Moon, LLC", - "vu": "Telecom Vanuatu Limited", + "vu": "Vanuatu (Republic of)", "vuelos": "Travel Reservations SRL", "wales": "Nominet UK", "walmart": "Wal-Mart Stores, Inc.", @@ -1364,7 +1364,7 @@ module.exports = { "wedding": "Top Level Domain Holdings Limited", "weibo": "Sina Corporation", "weir": "Weir Group IP Limited", - "wf": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "wf": "Wallis and Futuna (Territory of the Wallis and Futuna Islands)", "whoswho": "Who's Who Registry", "wien": "punkt.wien GmbH", "wiki": "Top Level Design, LLC", @@ -1380,7 +1380,7 @@ module.exports = { "works": "Binky Moon, LLC", "world": "Binky Moon, LLC", "wow": "Amazon Registry Services, Inc.", - "ws": "Government of Samoa Ministry of Foreign Affairs & Trade", + "ws": "Samoa (Independent State of)", "wtc": "World Trade Centers Association, Inc.", "wtf": "Binky Moon, LLC", "xbox": "Microsoft Corporation", @@ -1552,28 +1552,28 @@ module.exports = { "テスト": "Internet Assigned Numbers Authority", "政务": "China Organizational Name Administration Center", "xperia": "Sony Mobile Communications AB", - "xxx": "ICM Registry LLC", + "xxx": "Adult entertainment", "xyz": "XYZ.COM LLC", "yachts": "DERYachts, LLC", "yahoo": "Yahoo! Domain Services Inc.", "yamaxun": "Amazon Registry Services, Inc.", "yandex": "YANDEX, LLC", - "ye": "TeleYemen", + "ye": "Yemen (Republic of)", "yodobashi": "YODOBASHI CAMERA CO.,LTD.", "yoga": "Top Level Domain Holdings Limited", "yokohama": "GMO Registry, Inc.", "you": "Amazon Registry Services, Inc.", "youtube": "Charleston Road Registry Inc.", - "yt": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "yt": "Mayotte (Department of)", "yun": "QIHOO 360 TECHNOLOGY CO. LTD.", - "za": "ZA Domain Name Authority", + "za": "South Africa (Republic of)", "zappos": "Amazon Registry Services, Inc.", "zara": "Industria de Diseño Textil, S.A. (INDITEX, S.A.)", "zero": "Amazon Registry Services, Inc.", "zip": "Charleston Road Registry Inc.", "zippo": "Zadco Company", - "zm": "Zambia Information and Communications Technology Authority (ZICTA)", + "zm": "Zambia (Republic of)", "zone": "Binky Moon, LLC", "zuerich": "Kanton Zürich (Canton of Zurich)", - "zw": "Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)" + "zw": "Zimbabwe (Republic of)" }; \ No newline at end of file diff --git a/formats/js/tld-enum/info.js b/formats/js/tld-enum/info.js index 1d3420b..2790cd6 100644 --- a/formats/js/tld-enum/info.js +++ b/formats/js/tld-enum/info.js @@ -51,7 +51,7 @@ module.exports = [ }, { "domain": "ac", - "description": "Network Information Center (AC Domain Registry)\nc/o Cable and Wireless (Ascension Island)", + "description": "Ascension Island", "type": "country-code" }, { @@ -91,7 +91,7 @@ module.exports = [ }, { "domain": "ad", - "description": "Andorra Telecom", + "description": "Andorra (Principality of)", "type": "country-code" }, { @@ -111,7 +111,7 @@ module.exports = [ }, { "domain": "ae", - "description": "Telecommunication Regulatory Authority (TRA)", + "description": "United Arab Emirates", "type": "country-code" }, { @@ -121,7 +121,7 @@ module.exports = [ }, { "domain": "aero", - "description": "Societe Internationale de Telecommunications Aeronautique (SITA INC USA)", + "description": "Air-transport industry", "type": "sponsored" }, { @@ -131,7 +131,7 @@ module.exports = [ }, { "domain": "af", - "description": "Ministry of Communications and IT", + "description": "Afghanistan (Islamic Republic of)", "type": "country-code" }, { @@ -151,7 +151,7 @@ module.exports = [ }, { "domain": "ag", - "description": "UHSA School of Medicine", + "description": "Antigua and Barbuda", "type": "country-code" }, { @@ -166,7 +166,7 @@ module.exports = [ }, { "domain": "ai", - "description": "Government of Anguilla", + "description": "Anguilla", "type": "country-code" }, { @@ -201,7 +201,7 @@ module.exports = [ }, { "domain": "al", - "description": "Electronic and Postal Communications Authority - AKEP", + "description": "Albania (Republic of)", "type": "country-code" }, { @@ -246,7 +246,7 @@ module.exports = [ }, { "domain": "am", - "description": "\"Internet Society\" Non-governmental Organization", + "description": "Armenia (Republic of)", "type": "country-code" }, { @@ -281,7 +281,7 @@ module.exports = [ }, { "domain": "an", - "description": "Retired", + "description": "Netherlands Antilles", "type": "country-code" }, { @@ -306,7 +306,7 @@ module.exports = [ }, { "domain": "ao", - "description": "Faculdade de Engenharia da Universidade Agostinho Neto", + "description": "Angola (Republic of)", "type": "country-code" }, { @@ -331,7 +331,7 @@ module.exports = [ }, { "domain": "aq", - "description": "Antarctica Network Information Centre Limited", + "description": "Antarctica", "type": "country-code" }, { @@ -341,7 +341,7 @@ module.exports = [ }, { "domain": "ar", - "description": "Presidencia de la Nación – Secretaría Legal y Técnica", + "description": "Argentina (Argentine Republic)", "type": "country-code" }, { @@ -366,7 +366,7 @@ module.exports = [ }, { "domain": "arpa", - "description": "Internet Architecture Board (IAB)", + "description": "Address and Routing Parameter Area", "type": "infrastructure" }, { @@ -381,7 +381,7 @@ module.exports = [ }, { "domain": "as", - "description": "AS Domain Registry", + "description": "American Samoa", "type": "country-code" }, { @@ -391,7 +391,7 @@ module.exports = [ }, { "domain": "asia", - "description": "DotAsia Organisation Ltd.", + "description": "Organisations and individuals in the Asia-Pacific region", "type": "sponsored" }, { @@ -401,7 +401,7 @@ module.exports = [ }, { "domain": "at", - "description": "nic.at GmbH", + "description": "Austria (Republic of)", "type": "country-code" }, { @@ -416,7 +416,7 @@ module.exports = [ }, { "domain": "au", - "description": ".au Domain Administration (auDA)", + "description": "Australia (Commonwealth of)", "type": "country-code" }, { @@ -466,7 +466,7 @@ module.exports = [ }, { "domain": "aw", - "description": "SETAR", + "description": "Aruba", "type": "country-code" }, { @@ -476,7 +476,7 @@ module.exports = [ }, { "domain": "ax", - "description": "Ålands landskapsregering", + "description": "Åland Islands", "type": "country-code" }, { @@ -486,7 +486,7 @@ module.exports = [ }, { "domain": "az", - "description": "IntraNS", + "description": "Azerbaijan (Republic of)", "type": "country-code" }, { @@ -496,7 +496,7 @@ module.exports = [ }, { "domain": "ba", - "description": "Universtiy Telinformatic Centre (UTIC)", + "description": "Bosnia and Herzegovina", "type": "country-code" }, { @@ -581,7 +581,7 @@ module.exports = [ }, { "domain": "bb", - "description": "Government of Barbados\nMinistry of Economic Affairs and Development\nTelecommunications Unit", + "description": "Barbados", "type": "country-code" }, { @@ -611,12 +611,12 @@ module.exports = [ }, { "domain": "bd", - "description": "Posts and Telecommunications Division", + "description": "Bangladesh (People's Republic of)", "type": "country-code" }, { "domain": "be", - "description": "DNS Belgium vzw/asbl", + "description": "Belgium (Kingdom of)", "type": "country-code" }, { @@ -661,17 +661,17 @@ module.exports = [ }, { "domain": "bf", - "description": "ARCE-AutoritÈ de RÈgulation des Communications Electroniques", + "description": "Burkina Faso", "type": "country-code" }, { "domain": "bg", - "description": "Register.BG", + "description": "Bulgaria (Republic of)", "type": "country-code" }, { "domain": "bh", - "description": "Telecommunications Regulatory Authority (TRA)", + "description": "Bahrain (Kingdom of)", "type": "country-code" }, { @@ -681,7 +681,7 @@ module.exports = [ }, { "domain": "bi", - "description": "Centre National de l'Informatique", + "description": "Burundi (Republic of)", "type": "country-code" }, { @@ -716,17 +716,17 @@ module.exports = [ }, { "domain": "biz", - "description": "Neustar, Inc.", + "description": "Business", "type": "generic-restricted" }, { "domain": "bj", - "description": "Benin Telecoms S.A.", + "description": "Benin (Republic of)", "type": "country-code" }, { "domain": "bl", - "description": "Not assigned", + "description": "Saint Barthélemy (Collectivity of) {unassigned - see also: .gp and .fr}", "type": "country-code" }, { @@ -766,7 +766,7 @@ module.exports = [ }, { "domain": "bm", - "description": "Registry General Department, Ministry of Home Affairs", + "description": "Bermuda", "type": "country-code" }, { @@ -781,7 +781,7 @@ module.exports = [ }, { "domain": "bn", - "description": "Authority for Info-communications Technology Industry of Brunei Darussalam (AITI)", + "description": "Brunei (Nation of Brunei - the Abode of Peace) [Negara Brunei Darussalam]", "type": "country-code" }, { @@ -796,7 +796,7 @@ module.exports = [ }, { "domain": "bo", - "description": "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia", + "description": "Bolivia (Plurinational State of)", "type": "country-code" }, { @@ -876,12 +876,12 @@ module.exports = [ }, { "domain": "bq", - "description": "Not assigned", + "description": "Caribbean Netherlands [Bonaire - Sint Eustatius and Saba] {unassigned - see also: .an and .nl}", "type": "country-code" }, { "domain": "br", - "description": "Comite Gestor da Internet no Brasil", + "description": "Brazil (Federative Republic of)", "type": "country-code" }, { @@ -916,12 +916,12 @@ module.exports = [ }, { "domain": "bs", - "description": "The College of the Bahamas", + "description": "Bahamas (Commonwealth of the)", "type": "country-code" }, { "domain": "bt", - "description": "Ministry of Information and Communications", + "description": "Bhutan (Kingdom of)", "type": "country-code" }, { @@ -961,22 +961,22 @@ module.exports = [ }, { "domain": "bv", - "description": "UNINETT Norid A/S", + "description": "Bouvet Island", "type": "country-code" }, { "domain": "bw", - "description": "Botswana Communications Regulatory Authority (BOCRA)", + "description": "Botswana (Republic of)", "type": "country-code" }, { "domain": "by", - "description": "Reliable Software, Ltd.", + "description": "Belarus (Republic of)", "type": "country-code" }, { "domain": "bz", - "description": "University of Belize", + "description": "Belize", "type": "country-code" }, { @@ -986,7 +986,7 @@ module.exports = [ }, { "domain": "ca", - "description": "Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)", + "description": "Canada", "type": "country-code" }, { @@ -1121,7 +1121,7 @@ module.exports = [ }, { "domain": "cat", - "description": "Fundacio puntCAT", + "description": "Catalan", "type": "sponsored" }, { @@ -1156,12 +1156,12 @@ module.exports = [ }, { "domain": "cc", - "description": "eNIC Cocos (Keeling) Islands Pty.\nLtd. d/b/a Island Internet Services", + "description": "Cocos (Keeling) Islands (Territory of the)", "type": "country-code" }, { "domain": "cd", - "description": "Office Congolais des Postes et Télécommunications - OCPT", + "description": "Congo (Democratic Republic of the) [Congo-Kinshasa]", "type": "country-code" }, { @@ -1186,7 +1186,7 @@ module.exports = [ }, { "domain": "cf", - "description": "Societe Centrafricaine de Telecommunications (SOCATEL)", + "description": "Central African Republic", "type": "country-code" }, { @@ -1201,12 +1201,12 @@ module.exports = [ }, { "domain": "cg", - "description": "ONPT Congo and Interpoint Switzerland", + "description": "Congo (Republic of) [Congo-Brazzaville]", "type": "country-code" }, { "domain": "ch", - "description": "SWITCH The Swiss Education & Research Network", + "description": "Switzerland (Swiss Confederation)", "type": "country-code" }, { @@ -1271,7 +1271,7 @@ module.exports = [ }, { "domain": "ci", - "description": "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)", + "description": "Ivory Coast (Republic of Côte d'Ivoire)", "type": "country-code" }, { @@ -1316,12 +1316,12 @@ module.exports = [ }, { "domain": "ck", - "description": "Telecom Cook Islands Ltd.", + "description": "Cook Islands", "type": "country-code" }, { "domain": "cl", - "description": "NIC Chile (University of Chile)", + "description": "Chile (Republic of)", "type": "country-code" }, { @@ -1371,17 +1371,17 @@ module.exports = [ }, { "domain": "cm", - "description": "Cameroon Telecommunications (CAMTEL)", + "description": "Cameroon (Republic of)", "type": "country-code" }, { "domain": "cn", - "description": "China Internet Network Information Center (CNNIC)", + "description": "China (People's Republic of)", "type": "country-code" }, { "domain": "co", - "description": ".CO Internet S.A.S.", + "description": "Colombia (Republic of)", "type": "country-code" }, { @@ -1411,7 +1411,7 @@ module.exports = [ }, { "domain": "com", - "description": "VeriSign Global Registry Services", + "description": "Commercial organizations", "type": "generic" }, { @@ -1491,7 +1491,7 @@ module.exports = [ }, { "domain": "coop", - "description": "DotCooperation LLC", + "description": "Cooperatives", "type": "sponsored" }, { @@ -1521,7 +1521,7 @@ module.exports = [ }, { "domain": "cr", - "description": "National Academy of Sciences\nAcademia Nacional de Ciencias", + "description": "Costa Rica (Republic of)", "type": "country-code" }, { @@ -1571,7 +1571,7 @@ module.exports = [ }, { "domain": "cu", - "description": "CENIAInternet\nIndustria y San Jose\nCapitolio Nacional", + "description": "Cuba (Republic of)", "type": "country-code" }, { @@ -1581,22 +1581,22 @@ module.exports = [ }, { "domain": "cv", - "description": "Agência Nacional das Comunicações (ANAC)", + "description": "Cape Verde (Republic of)", "type": "country-code" }, { "domain": "cw", - "description": "University of Curacao", + "description": "Curaçao (Country of)", "type": "country-code" }, { "domain": "cx", - "description": "Christmas Island Domain Administration Limited", + "description": "Christmas Island (Territory of)", "type": "country-code" }, { "domain": "cy", - "description": "University of Cyprus", + "description": "Cyprus (Republic of)", "type": "country-code" }, { @@ -1611,7 +1611,7 @@ module.exports = [ }, { "domain": "cz", - "description": "CZ.NIC, z.s.p.o", + "description": "Czech Republic", "type": "country-code" }, { @@ -1666,7 +1666,7 @@ module.exports = [ }, { "domain": "de", - "description": "DENIC eG", + "description": "Germany (Federal Republic of)", "type": "country-code" }, { @@ -1791,17 +1791,17 @@ module.exports = [ }, { "domain": "dj", - "description": "Djibouti Telecom S.A", + "description": "Djibouti (Republic of)", "type": "country-code" }, { "domain": "dk", - "description": "Dansk Internet Forum", + "description": "Denmark (Kingdom of)", "type": "country-code" }, { "domain": "dm", - "description": "DotDM Corporation", + "description": "Dominica (Commonwealth of)", "type": "country-code" }, { @@ -1811,7 +1811,7 @@ module.exports = [ }, { "domain": "do", - "description": "Pontificia Universidad Catolica Madre y Maestra\nRecinto Santo Tomas de Aquino", + "description": "Dominican Republic", "type": "country-code" }, { @@ -1911,7 +1911,7 @@ module.exports = [ }, { "domain": "dz", - "description": "CERIST", + "description": "Algeria (People's Democratic Republic of)", "type": "country-code" }, { @@ -1926,7 +1926,7 @@ module.exports = [ }, { "domain": "ec", - "description": "ECUADORDOMAIN S.A.", + "description": "Ecuador (Republic of)", "type": "country-code" }, { @@ -1941,7 +1941,7 @@ module.exports = [ }, { "domain": "edu", - "description": "EDUCAUSE", + "description": "Educational establishments", "type": "sponsored" }, { @@ -1951,17 +1951,17 @@ module.exports = [ }, { "domain": "ee", - "description": "Eesti Interneti Sihtasutus (EIS)", + "description": "Estonia (Republic of)", "type": "country-code" }, { "domain": "eg", - "description": "Egyptian Universities Network (EUN)\nSupreme Council of Universities", + "description": "Egypt (Arab Republic of)", "type": "country-code" }, { "domain": "eh", - "description": "Not assigned", + "description": "Western Sahara {reserved}", "type": "country-code" }, { @@ -2011,7 +2011,7 @@ module.exports = [ }, { "domain": "er", - "description": "Eritrea Telecommunication Services Corporation (EriTel)", + "description": "Eritrea (State of)", "type": "country-code" }, { @@ -2026,7 +2026,7 @@ module.exports = [ }, { "domain": "es", - "description": "Red.es", + "description": "Spain (Kingdom of)", "type": "country-code" }, { @@ -2046,7 +2046,7 @@ module.exports = [ }, { "domain": "et", - "description": "Ethio telecom", + "description": "Ethiopia (Federal Democratic Republic of)", "type": "country-code" }, { @@ -2056,7 +2056,7 @@ module.exports = [ }, { "domain": "eu", - "description": "EURid vzw/asbl", + "description": "European Union", "type": "country-code" }, { @@ -2181,7 +2181,7 @@ module.exports = [ }, { "domain": "fi", - "description": "Finnish Communications Regulatory Authority", + "description": "Finland (Republic of)", "type": "country-code" }, { @@ -2256,12 +2256,12 @@ module.exports = [ }, { "domain": "fj", - "description": "The University of the South Pacific\nIT Services", + "description": "Fiji (Republic of)", "type": "country-code" }, { "domain": "fk", - "description": "Falkland Islands Government", + "description": "Falkland Islands (Malvinas)", "type": "country-code" }, { @@ -2301,12 +2301,12 @@ module.exports = [ }, { "domain": "fm", - "description": "FSM Telecommunications Corporation", + "description": "Micronesia (Federated States of)", "type": "country-code" }, { "domain": "fo", - "description": "FO Council", + "description": "Faroe Islands", "type": "country-code" }, { @@ -2361,7 +2361,7 @@ module.exports = [ }, { "domain": "fr", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "France (French Republic)", "type": "country-code" }, { @@ -2436,7 +2436,7 @@ module.exports = [ }, { "domain": "ga", - "description": "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)", + "description": "Gabon (Gabonese Republic)", "type": "country-code" }, { @@ -2481,7 +2481,7 @@ module.exports = [ }, { "domain": "gb", - "description": "Reserved Domain - IANA", + "description": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", "type": "country-code" }, { @@ -2491,7 +2491,7 @@ module.exports = [ }, { "domain": "gd", - "description": "The National Telecommunications Regulatory Commission (NTRC)", + "description": "Grenada", "type": "country-code" }, { @@ -2501,7 +2501,7 @@ module.exports = [ }, { "domain": "ge", - "description": "Caucasus Online LLC", + "description": "Georgia", "type": "country-code" }, { @@ -2526,12 +2526,12 @@ module.exports = [ }, { "domain": "gf", - "description": "Net Plus", + "description": "French Guiana", "type": "country-code" }, { "domain": "gg", - "description": "Island Networks Ltd.", + "description": "Guernsey (Bailiwick of)", "type": "country-code" }, { @@ -2541,12 +2541,12 @@ module.exports = [ }, { "domain": "gh", - "description": "Network Computer Systems Limited", + "description": "Ghana (Republic of)", "type": "country-code" }, { "domain": "gi", - "description": "Sapphire Networks", + "description": "Gibraltar", "type": "country-code" }, { @@ -2571,7 +2571,7 @@ module.exports = [ }, { "domain": "gl", - "description": "TELE Greenland A/S", + "description": "Greenland", "type": "country-code" }, { @@ -2601,7 +2601,7 @@ module.exports = [ }, { "domain": "gm", - "description": "GM-NIC", + "description": "Gambia (Republic of The)", "type": "country-code" }, { @@ -2626,7 +2626,7 @@ module.exports = [ }, { "domain": "gn", - "description": "Centre National des Sciences Halieutiques de Boussoura", + "description": "Guinea (Republic of)", "type": "country-code" }, { @@ -2686,22 +2686,22 @@ module.exports = [ }, { "domain": "gov", - "description": "General Services Administration\nAttn: QTDC, 2E08 (.gov Domain Registration)", + "description": "US government", "type": "sponsored" }, { "domain": "gp", - "description": "Networking Technologies Group", + "description": "Guadeloupe", "type": "country-code" }, { "domain": "gq", - "description": "GETESA", + "description": "Equatorial Guinea (Republic of)", "type": "country-code" }, { "domain": "gr", - "description": "ICS-FORTH GR", + "description": "Greece (Hellenic Republic)", "type": "country-code" }, { @@ -2741,17 +2741,17 @@ module.exports = [ }, { "domain": "gs", - "description": "Government of South Georgia and South Sandwich Islands (GSGSSI)", + "description": "South Georgia and the South Sandwich Islands", "type": "country-code" }, { "domain": "gt", - "description": "Universidad del Valle de Guatemala", + "description": "Guatemala (Republic of)", "type": "country-code" }, { "domain": "gu", - "description": "University of Guam", + "description": "Guam", "type": "country-code" }, { @@ -2786,12 +2786,12 @@ module.exports = [ }, { "domain": "gw", - "description": "Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau", + "description": "Guinea-Bissau (Republic of)", "type": "country-code" }, { "domain": "gy", - "description": "University of Guyana", + "description": "Guyana (Co-operative Republic of)", "type": "country-code" }, { @@ -2886,7 +2886,7 @@ module.exports = [ }, { "domain": "hk", - "description": "Hong Kong Internet Registration Corporation Ltd.", + "description": "Hong Kong (Hong Kong Special Administrative Region of the People's Republic of China)", "type": "country-code" }, { @@ -2896,12 +2896,12 @@ module.exports = [ }, { "domain": "hm", - "description": "HM Domain Registry", + "description": "Heard Island and McDonald Islands", "type": "country-code" }, { "domain": "hn", - "description": "Red de Desarrollo Sostenible Honduras", + "description": "Honduras (Republic of)", "type": "country-code" }, { @@ -3001,7 +3001,7 @@ module.exports = [ }, { "domain": "hr", - "description": "CARNet - Croatian Academic and Research Network", + "description": "Croatia (Republic of)", "type": "country-code" }, { @@ -3011,7 +3011,7 @@ module.exports = [ }, { "domain": "ht", - "description": "Consortium FDS/RDDH", + "description": "Haiti (Republic of)", "type": "country-code" }, { @@ -3021,7 +3021,7 @@ module.exports = [ }, { "domain": "hu", - "description": "Council of Hungarian Internet Providers (CHIP)", + "description": "Hungary", "type": "country-code" }, { @@ -3061,12 +3061,12 @@ module.exports = [ }, { "domain": "id", - "description": "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)", + "description": "Indonesia (Republic of)", "type": "country-code" }, { "domain": "ie", - "description": "University College Dublin\nComputing Services\nComputer Centre", + "description": "Ireland (Republic of)", "type": "country-code" }, { @@ -3091,12 +3091,12 @@ module.exports = [ }, { "domain": "il", - "description": "Internet Society of Israel", + "description": "Israel (State of)", "type": "country-code" }, { "domain": "im", - "description": "Isle of Man Government", + "description": "Isle of Man", "type": "country-code" }, { @@ -3121,7 +3121,7 @@ module.exports = [ }, { "domain": "in", - "description": "National Internet Exchange of India", + "description": "India (Republic of)", "type": "country-code" }, { @@ -3136,7 +3136,7 @@ module.exports = [ }, { "domain": "info", - "description": "Afilias Limited", + "description": "Informational sites", "type": "generic" }, { @@ -3166,7 +3166,7 @@ module.exports = [ }, { "domain": "int", - "description": "Internet Assigned Numbers Authority", + "description": "International treaty-based organizations", "type": "sponsored" }, { @@ -3191,7 +3191,7 @@ module.exports = [ }, { "domain": "io", - "description": "IO Top Level Domain Registry\nCable and Wireless", + "description": "British Indian Ocean Territory", "type": "country-code" }, { @@ -3201,12 +3201,12 @@ module.exports = [ }, { "domain": "iq", - "description": "Communications and Media Commission (CMC)", + "description": "Iraq (Republic of)", "type": "country-code" }, { "domain": "ir", - "description": "Institute for Research in Fundamental Sciences", + "description": "Iran (Islamic Republic of)", "type": "country-code" }, { @@ -3216,7 +3216,7 @@ module.exports = [ }, { "domain": "is", - "description": "ISNIC - Internet Iceland ltd.", + "description": "Iceland", "type": "country-code" }, { @@ -3241,7 +3241,7 @@ module.exports = [ }, { "domain": "it", - "description": "IIT - CNR", + "description": "Italy (Italian Republic)", "type": "country-code" }, { @@ -3286,7 +3286,7 @@ module.exports = [ }, { "domain": "je", - "description": "Island Networks (Jersey) Ltd.", + "description": "Jersey (Bailiwick of)", "type": "country-code" }, { @@ -3321,7 +3321,7 @@ module.exports = [ }, { "domain": "jm", - "description": "University of West Indies", + "description": "Jamaica (Commonwealth of)", "type": "country-code" }, { @@ -3336,12 +3336,12 @@ module.exports = [ }, { "domain": "jo", - "description": "National Information Technology Center (NITC)", + "description": "Jordan (Hashemite Kingdom of)", "type": "country-code" }, { "domain": "jobs", - "description": "Employ Media LLC", + "description": "Employment-related sites", "type": "sponsored" }, { @@ -3361,7 +3361,7 @@ module.exports = [ }, { "domain": "jp", - "description": "Japan Registry Services Co., Ltd.", + "description": "Japan", "type": "country-code" }, { @@ -3396,7 +3396,7 @@ module.exports = [ }, { "domain": "ke", - "description": "Kenya Network Information Center (KeNIC)", + "description": "Kenya (Republic of)", "type": "country-code" }, { @@ -3421,17 +3421,17 @@ module.exports = [ }, { "domain": "kg", - "description": "AsiaInfo Telecommunication Enterprise", + "description": "Kyrgyzstan (Kyrgyz Republic)", "type": "country-code" }, { "domain": "kh", - "description": "Telecommunication Regulator of Cambodia (TRC)", + "description": "Cambodia (Kingdom of)", "type": "country-code" }, { "domain": "ki", - "description": "Ministry of Communications, Transport, and Tourism Development", + "description": "Kiribati (Republic of)", "type": "country-code" }, { @@ -3466,12 +3466,12 @@ module.exports = [ }, { "domain": "km", - "description": "Comores Telecom", + "description": "Comoros (Union of the)", "type": "country-code" }, { "domain": "kn", - "description": "Ministry of Finance, Sustainable Development Information & Technology", + "description": "Saint Kitts and Nevis (Federation of)", "type": "country-code" }, { @@ -3491,7 +3491,7 @@ module.exports = [ }, { "domain": "kp", - "description": "Star Joint Venture Company", + "description": "Korea (Democratic People's Republic of) [North Korea]", "type": "country-code" }, { @@ -3506,7 +3506,7 @@ module.exports = [ }, { "domain": "kr", - "description": "Korea Internet & Security Agency (KISA)", + "description": "Korea (Republic of) [South Korea]", "type": "country-code" }, { @@ -3526,12 +3526,12 @@ module.exports = [ }, { "domain": "kw", - "description": "Communications and Information Technology Regulatory Authority", + "description": "Kuwait (State of Kuwait)", "type": "country-code" }, { "domain": "ky", - "description": "Utility Regulation and Competition Office (OfReg)", + "description": "Cayman Islands", "type": "country-code" }, { @@ -3541,12 +3541,12 @@ module.exports = [ }, { "domain": "kz", - "description": "Association of IT Companies of Kazakhstan", + "description": "Kazakhstan (Republic of)", "type": "country-code" }, { "domain": "la", - "description": "Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications", + "description": "Laos (Lao People's Democratic Republic)", "type": "country-code" }, { @@ -3631,12 +3631,12 @@ module.exports = [ }, { "domain": "lb", - "description": "American University of Beirut\nComputing and Networking Services", + "description": "Lebanon (Lebanese Republic)", "type": "country-code" }, { "domain": "lc", - "description": "University of Puerto Rico", + "description": "Saint Lucia", "type": "country-code" }, { @@ -3681,7 +3681,7 @@ module.exports = [ }, { "domain": "li", - "description": "SWITCH The Swiss Education & Research Network", + "description": "Liechtenstein (Principality of)", "type": "country-code" }, { @@ -3771,7 +3771,7 @@ module.exports = [ }, { "domain": "lk", - "description": "Council for Information Technology\nLK Domain Registrar", + "description": "Sri Lanka (Democratic Socialist Republic of)", "type": "country-code" }, { @@ -3841,17 +3841,17 @@ module.exports = [ }, { "domain": "lr", - "description": "Data Technology Solutions, Inc.", + "description": "Liberia (Republic of)", "type": "country-code" }, { "domain": "ls", - "description": "National University of Lesotho", + "description": "Lesotho (Kingdom of)", "type": "country-code" }, { "domain": "lt", - "description": "Kaunas University of Technology", + "description": "Lithuania (Republic of)", "type": "country-code" }, { @@ -3866,7 +3866,7 @@ module.exports = [ }, { "domain": "lu", - "description": "RESTENA", + "description": "Luxembourg (Grand Duchy of)", "type": "country-code" }, { @@ -3891,17 +3891,17 @@ module.exports = [ }, { "domain": "lv", - "description": "University of Latvia\nInstitute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)", + "description": "Latvia (Republic of)", "type": "country-code" }, { "domain": "ly", - "description": "General Post and Telecommunication Company", + "description": "Libya", "type": "country-code" }, { "domain": "ma", - "description": "Agence Nationale de Réglementation des Télécommunications (ANRT)", + "description": "Morocco", "type": "country-code" }, { @@ -3991,7 +3991,7 @@ module.exports = [ }, { "domain": "mc", - "description": "Gouvernement de Monaco\nDirection des Communications Electroniques", + "description": "Monaco (Principality of)", "type": "country-code" }, { @@ -4011,12 +4011,12 @@ module.exports = [ }, { "domain": "md", - "description": "MoldData S.E.", + "description": "Moldova (Republic of)", "type": "country-code" }, { "domain": "me", - "description": "Government of Montenegro", + "description": "Montenegro", "type": "country-code" }, { @@ -4076,17 +4076,17 @@ module.exports = [ }, { "domain": "mf", - "description": "Not assigned", + "description": "Saint Martin (Collectivity of) {unassigned - see also: .gp and .fr}", "type": "country-code" }, { "domain": "mg", - "description": "NIC-MG (Network Information Center Madagascar)", + "description": "Madagascar (Republic of)", "type": "country-code" }, { "domain": "mh", - "description": "Office of the Cabinet", + "description": "Marshall Islands (Republic of the)", "type": "country-code" }, { @@ -4101,7 +4101,7 @@ module.exports = [ }, { "domain": "mil", - "description": "DoD Network Information Center", + "description": "US military", "type": "sponsored" }, { @@ -4126,12 +4126,12 @@ module.exports = [ }, { "domain": "mk", - "description": "Macedonian Academic Research Network Skopje", + "description": "Macedonia (Republic of)", "type": "country-code" }, { "domain": "ml", - "description": "Agence des Technologies de l’Information et de la Communication", + "description": "Mali (Republic of)", "type": "country-code" }, { @@ -4146,7 +4146,7 @@ module.exports = [ }, { "domain": "mm", - "description": "Ministry of Communications, Posts & Telegraphs", + "description": "Myanmar (Republic of the Union of) [Burma]", "type": "country-code" }, { @@ -4156,17 +4156,17 @@ module.exports = [ }, { "domain": "mn", - "description": "Datacom Co., Ltd.", + "description": "Mongolia", "type": "country-code" }, { "domain": "mo", - "description": "Macao Post and Telecommunications Bureau (CTT)", + "description": "Macau (Macau Special Administrative Region of the People's Republic of China) [Macao]", "type": "country-code" }, { "domain": "mobi", - "description": "Afilias Technologies Limited dba dotMobi", + "description": "Mobile", "type": "generic" }, { @@ -4266,22 +4266,22 @@ module.exports = [ }, { "domain": "mp", - "description": "Saipan Datacom, Inc.", + "description": "Northern Mariana Islands (Commonwealth of the)", "type": "country-code" }, { "domain": "mq", - "description": "MEDIASERV", + "description": "Martinique", "type": "country-code" }, { "domain": "mr", - "description": "Université de Nouakchott Al Aasriya", + "description": "Mauritania (Islamic Republic of)", "type": "country-code" }, { "domain": "ms", - "description": "MNI Networks Ltd.", + "description": "Montserrat", "type": "country-code" }, { @@ -4291,7 +4291,7 @@ module.exports = [ }, { "domain": "mt", - "description": "NIC (Malta)", + "description": "Malta (Republic of)", "type": "country-code" }, { @@ -4311,12 +4311,12 @@ module.exports = [ }, { "domain": "mu", - "description": "Internet Direct Ltd", + "description": "Mauritius (Republic of)", "type": "country-code" }, { "domain": "museum", - "description": "Museum Domain Management Association", + "description": "Museums", "type": "sponsored" }, { @@ -4331,32 +4331,32 @@ module.exports = [ }, { "domain": "mv", - "description": "Dhiraagu Pvt. Ltd. (DHIVEHINET)", + "description": "Maldives (Republic of)", "type": "country-code" }, { "domain": "mw", - "description": "Malawi Sustainable Development Network Programme\n(Malawi SDNP)", + "description": "Malawi (Republic of)", "type": "country-code" }, { "domain": "mx", - "description": "NIC-Mexico\nITESM - Campus Monterrey", + "description": "Mexico (United Mexican States)", "type": "country-code" }, { "domain": "my", - "description": "MYNIC Berhad", + "description": "Malaysia", "type": "country-code" }, { "domain": "mz", - "description": "Centro de Informatica de Universidade Eduardo Mondlane", + "description": "Mozambique (Republic of)", "type": "country-code" }, { "domain": "na", - "description": "Namibian Network Information Center", + "description": "Namibia (Republic of)", "type": "country-code" }, { @@ -4376,7 +4376,7 @@ module.exports = [ }, { "domain": "name", - "description": "VeriSign Information Services, Inc.", + "description": "Individuals", "type": "generic-restricted" }, { @@ -4401,12 +4401,12 @@ module.exports = [ }, { "domain": "nc", - "description": "Office des Postes et Telecommunications", + "description": "New Caledonia", "type": "country-code" }, { "domain": "ne", - "description": "SONITEL", + "description": "Niger (Republic of)", "type": "country-code" }, { @@ -4416,7 +4416,7 @@ module.exports = [ }, { "domain": "net", - "description": "VeriSign Global Registry Services", + "description": "Network", "type": "generic" }, { @@ -4471,7 +4471,7 @@ module.exports = [ }, { "domain": "nf", - "description": "Norfolk Island Data Services", + "description": "Norfolk Island (Territory of)", "type": "country-code" }, { @@ -4481,7 +4481,7 @@ module.exports = [ }, { "domain": "ng", - "description": "Nigeria Internet Registration Association", + "description": "Nigeria (Federal Republic of)", "type": "country-code" }, { @@ -4496,7 +4496,7 @@ module.exports = [ }, { "domain": "ni", - "description": "Universidad Nacional del Ingernieria\nCentro de Computo", + "description": "Nicaragua (Republic of)", "type": "country-code" }, { @@ -4531,12 +4531,12 @@ module.exports = [ }, { "domain": "nl", - "description": "SIDN (Stichting Internet Domeinregistratie Nederland)", + "description": "Netherlands", "type": "country-code" }, { "domain": "no", - "description": "UNINETT Norid A/S", + "description": "Norway (Kingdom of)", "type": "country-code" }, { @@ -4571,12 +4571,12 @@ module.exports = [ }, { "domain": "np", - "description": "Mercantile Communications Pvt. Ltd.", + "description": "Nepal (Federal Democratic Republic of)", "type": "country-code" }, { "domain": "nr", - "description": "CENPAC NET", + "description": "Nauru (Republic of)", "type": "country-code" }, { @@ -4596,7 +4596,7 @@ module.exports = [ }, { "domain": "nu", - "description": "The IUSN Foundation", + "description": "Niue", "type": "country-code" }, { @@ -4606,7 +4606,7 @@ module.exports = [ }, { "domain": "nz", - "description": "InternetNZ", + "description": "New Zealand", "type": "country-code" }, { @@ -4656,7 +4656,7 @@ module.exports = [ }, { "domain": "om", - "description": "Telecommunications Regulatory Authority (TRA)", + "description": "Oman (Sultanate of)", "type": "country-code" }, { @@ -4711,7 +4711,7 @@ module.exports = [ }, { "domain": "org", - "description": "Public Interest Registry (PIR)", + "description": "Non-profit organizations", "type": "generic" }, { @@ -4751,7 +4751,7 @@ module.exports = [ }, { "domain": "pa", - "description": "Universidad Tecnologica de Panama", + "description": "Panama (Republic of)", "type": "country-code" }, { @@ -4816,7 +4816,7 @@ module.exports = [ }, { "domain": "pe", - "description": "Red Cientifica Peruana", + "description": "Peru (Republic of)", "type": "country-code" }, { @@ -4826,7 +4826,7 @@ module.exports = [ }, { "domain": "pf", - "description": "Gouvernement de la Polynésie française", + "description": "French Polynesia and Clipperton Island", "type": "country-code" }, { @@ -4836,12 +4836,12 @@ module.exports = [ }, { "domain": "pg", - "description": "PNG DNS Administration\nVice Chancellors Office\nThe Papua New Guinea University of Technology", + "description": "Papua New Guinea (Independent State of)", "type": "country-code" }, { "domain": "ph", - "description": "PH Domain Foundation", + "description": "Philippines (Republic of the)", "type": "country-code" }, { @@ -4936,12 +4936,12 @@ module.exports = [ }, { "domain": "pk", - "description": "PKNIC", + "description": "Pakistan (Islamic Republic of)", "type": "country-code" }, { "domain": "pl", - "description": "Research and Academic Computer Network", + "description": "Poland (Republic of)", "type": "country-code" }, { @@ -4971,12 +4971,12 @@ module.exports = [ }, { "domain": "pm", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Saint Pierre and Miquelon", "type": "country-code" }, { "domain": "pn", - "description": "Pitcairn Island Administration", + "description": "Pitcairn Islands (Pitcairn - Henderson - Ducie and Oeno Islands)", "type": "country-code" }, { @@ -5011,7 +5011,7 @@ module.exports = [ }, { "domain": "pr", - "description": "Gauss Research Laboratory Inc.", + "description": "Puerto Rico (Commonwealth of)", "type": "country-code" }, { @@ -5036,7 +5036,7 @@ module.exports = [ }, { "domain": "pro", - "description": "Registry Services Corporation\ndba RegistryPro", + "description": "Profession", "type": "generic-restricted" }, { @@ -5091,12 +5091,12 @@ module.exports = [ }, { "domain": "ps", - "description": "Ministry Of Telecommunications &\nInformation Technology,\nGovernment Computer Center.", + "description": "Palestine (State of)", "type": "country-code" }, { "domain": "pt", - "description": "Associação DNS.PT", + "description": "Portugal (Portuguese Republic)", "type": "country-code" }, { @@ -5106,7 +5106,7 @@ module.exports = [ }, { "domain": "pw", - "description": "Micronesia Investment and Development Corporation", + "description": "Palau (Republic of)", "type": "country-code" }, { @@ -5116,12 +5116,12 @@ module.exports = [ }, { "domain": "py", - "description": "NIC-PY", + "description": "Paraguay (Republic of)", "type": "country-code" }, { "domain": "qa", - "description": "Communications Regulatory Authority", + "description": "Qatar (State of)", "type": "country-code" }, { @@ -5161,7 +5161,7 @@ module.exports = [ }, { "domain": "re", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Réunion", "type": "country-code" }, { @@ -5326,7 +5326,7 @@ module.exports = [ }, { "domain": "ro", - "description": "National Institute for R&D in Informatics", + "description": "Romania", "type": "country-code" }, { @@ -5356,7 +5356,7 @@ module.exports = [ }, { "domain": "rs", - "description": "Serbian National Internet Domain Registry (RNIDS)", + "description": "Serbia (Republic of)", "type": "country-code" }, { @@ -5366,7 +5366,7 @@ module.exports = [ }, { "domain": "ru", - "description": "Coordination Center for TLD RU", + "description": "Russia (Russian Federation)", "type": "country-code" }, { @@ -5386,7 +5386,7 @@ module.exports = [ }, { "domain": "rw", - "description": "Rwanda Information Communication and Technology Association (RICTA)", + "description": "Rwanda (Republic of)", "type": "country-code" }, { @@ -5401,7 +5401,7 @@ module.exports = [ }, { "domain": "sa", - "description": "Communications and Information Technology Commission", + "description": "Saudi Arabia (Kingdom of)", "type": "country-code" }, { @@ -5491,7 +5491,7 @@ module.exports = [ }, { "domain": "sb", - "description": "Solomon Telekom Company Limited", + "description": "Solomon Islands", "type": "country-code" }, { @@ -5506,7 +5506,7 @@ module.exports = [ }, { "domain": "sc", - "description": "VCS Pty Ltd", + "description": "Seychelles (Republic of)", "type": "country-code" }, { @@ -5571,12 +5571,12 @@ module.exports = [ }, { "domain": "sd", - "description": "Sudan Internet Society", + "description": "Sudan (Republic of)", "type": "country-code" }, { "domain": "se", - "description": "The Internet Infrastructure Foundation", + "description": "Sweden (Kingdom of)", "type": "country-code" }, { @@ -5651,12 +5651,12 @@ module.exports = [ }, { "domain": "sg", - "description": "Singapore Network Information Centre (SGNIC) Pte Ltd", + "description": "Singapore (Republic of)", "type": "country-code" }, { "domain": "sh", - "description": "Government of St. Helena", + "description": "Saint Helena", "type": "country-code" }, { @@ -5726,7 +5726,7 @@ module.exports = [ }, { "domain": "si", - "description": "Academic and Research Network of Slovenia (ARNES)", + "description": "Slovenia (Republic of)", "type": "country-code" }, { @@ -5751,12 +5751,12 @@ module.exports = [ }, { "domain": "sj", - "description": "UNINETT Norid A/S", + "description": "Svalbard and Jan Mayen {not in use - see also: .no}", "type": "country-code" }, { "domain": "sk", - "description": "SK-NIC, a.s.", + "description": "Slovakia (Slovak Republic)", "type": "country-code" }, { @@ -5781,7 +5781,7 @@ module.exports = [ }, { "domain": "sl", - "description": "Sierratel", + "description": "Sierra Leone (Republic of)", "type": "country-code" }, { @@ -5791,7 +5791,7 @@ module.exports = [ }, { "domain": "sm", - "description": "Telecom Italia San Marino S.p.A.", + "description": "San Marino (Republic of)", "type": "country-code" }, { @@ -5806,7 +5806,7 @@ module.exports = [ }, { "domain": "sn", - "description": "Universite Cheikh Anta Diop\nNIC Senegal", + "description": "Senegal (Republic of)", "type": "country-code" }, { @@ -5816,7 +5816,7 @@ module.exports = [ }, { "domain": "so", - "description": "Ministry of Post and Telecommunications", + "description": "Somalia (Federal Republic of)", "type": "country-code" }, { @@ -5896,7 +5896,7 @@ module.exports = [ }, { "domain": "sr", - "description": "Telesur", + "description": "Suriname (Republic of)", "type": "country-code" }, { @@ -5911,12 +5911,12 @@ module.exports = [ }, { "domain": "ss", - "description": "Not assigned", + "description": "South Sudan (Republic of)", "type": "country-code" }, { "domain": "st", - "description": "Tecnisys", + "description": "São Tomé and Príncipe (Democratic Republic of)", "type": "country-code" }, { @@ -6001,7 +6001,7 @@ module.exports = [ }, { "domain": "su", - "description": "Russian Institute for Development of Public Networks\n(ROSNIIROS)", + "description": "Soviet Union (Union of Soviet Socialist Republics)", "type": "country-code" }, { @@ -6041,7 +6041,7 @@ module.exports = [ }, { "domain": "sv", - "description": "SVNet", + "description": "El Salvador (Republic of)", "type": "country-code" }, { @@ -6061,12 +6061,12 @@ module.exports = [ }, { "domain": "sx", - "description": "SX Registry SA B.V.", + "description": "Sint Maarten", "type": "country-code" }, { "domain": "sy", - "description": "National Agency for Network Services (NANS)", + "description": "Syria (Syrian Arab Republic)", "type": "country-code" }, { @@ -6086,7 +6086,7 @@ module.exports = [ }, { "domain": "sz", - "description": "University of Swaziland\nDepartment of Computer Science", + "description": "Swaziland (Kingdom of)", "type": "country-code" }, { @@ -6141,7 +6141,7 @@ module.exports = [ }, { "domain": "tc", - "description": "Melrex TC", + "description": "Turks and Caicos Islands", "type": "country-code" }, { @@ -6151,7 +6151,7 @@ module.exports = [ }, { "domain": "td", - "description": "l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC)", + "description": "Chad (Republic of)", "type": "country-code" }, { @@ -6176,7 +6176,7 @@ module.exports = [ }, { "domain": "tel", - "description": "Telnames Ltd.", + "description": "Telephone", "type": "sponsored" }, { @@ -6206,17 +6206,17 @@ module.exports = [ }, { "domain": "tf", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "French Southern and Antarctic Lands (Territory of the)", "type": "country-code" }, { "domain": "tg", - "description": "Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)", + "description": "Togo (Togolese Republic)", "type": "country-code" }, { "domain": "th", - "description": "Thai Network Information Center Foundation", + "description": "Thailand (Kingdom of)", "type": "country-code" }, { @@ -6271,7 +6271,7 @@ module.exports = [ }, { "domain": "tj", - "description": "Information Technology Center", + "description": "Tajikistan (Republic of)", "type": "country-code" }, { @@ -6286,7 +6286,7 @@ module.exports = [ }, { "domain": "tk", - "description": "Telecommunication Tokelau Corporation (Teletok)", + "description": "Tokelau", "type": "country-code" }, { @@ -6296,12 +6296,12 @@ module.exports = [ }, { "domain": "tl", - "description": "Autoridade Nacional de Comunicações", + "description": "Timor-Leste (Democratic Republic of) [East Timor]", "type": "country-code" }, { "domain": "tm", - "description": "TM Domain Registry Ltd", + "description": "Turkmenistan", "type": "country-code" }, { @@ -6311,12 +6311,12 @@ module.exports = [ }, { "domain": "tn", - "description": "Agence Tunisienne d'Internet", + "description": "Tunisia (Republic of)", "type": "country-code" }, { "domain": "to", - "description": "Government of the Kingdom of Tonga\nH.R.H. Crown Prince Tupouto'a\nc/o Consulate of Tonga", + "description": "Tonga (Kingdom of)", "type": "country-code" }, { @@ -6376,12 +6376,12 @@ module.exports = [ }, { "domain": "tp", - "description": "Retired", + "description": "Timor-Leste (Democratic Republic of) [East Timor] {being phased out - also see: .tl}", "type": "country-code" }, { "domain": "tr", - "description": "Middle East Technical University\nDepartment of Computer Engineering", + "description": "Turkey (Republic of)", "type": "country-code" }, { @@ -6401,7 +6401,7 @@ module.exports = [ }, { "domain": "travel", - "description": "Dog\tBeach, LLC", + "description": "Travel", "type": "sponsored" }, { @@ -6431,7 +6431,7 @@ module.exports = [ }, { "domain": "tt", - "description": "University of the West Indies\nFaculty of Engineering", + "description": "Trinidad and Tobago (Republic of)", "type": "country-code" }, { @@ -6456,7 +6456,7 @@ module.exports = [ }, { "domain": "tv", - "description": "Ministry of Finance and Tourism", + "description": "Tuvalu", "type": "country-code" }, { @@ -6466,17 +6466,17 @@ module.exports = [ }, { "domain": "tw", - "description": "Taiwan Network Information Center (TWNIC)", + "description": "Taiwan (Republic of China)", "type": "country-code" }, { "domain": "tz", - "description": "Tanzania Network Information Centre (tzNIC)", + "description": "Tanzania (United Republic of)", "type": "country-code" }, { "domain": "ua", - "description": "Hostmaster Ltd.", + "description": "Ukraine", "type": "country-code" }, { @@ -6496,17 +6496,17 @@ module.exports = [ }, { "domain": "ug", - "description": "Uganda Online Ltd.", + "description": "Uganda (Republic of)", "type": "country-code" }, { "domain": "uk", - "description": "Nominet UK", + "description": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", "type": "country-code" }, { "domain": "um", - "description": "Not assigned", + "description": "United States Minor Outlying Islands {formerly - retired 2010 - see also: .us}", "type": "country-code" }, { @@ -6536,22 +6536,22 @@ module.exports = [ }, { "domain": "us", - "description": "NeuStar, Inc.", + "description": "United States of America and United States Minor Outlying Islands", "type": "country-code" }, { "domain": "uy", - "description": "SeCIU - Universidad de la Republica", + "description": "Uruguay (Oriental Republic of)", "type": "country-code" }, { "domain": "uz", - "description": "Computerization and Information Technologies Developing Center\nUZINFOCOM", + "description": "Uzbekistan (Republic of)", "type": "country-code" }, { "domain": "va", - "description": "Holy See - Vatican City State", + "description": "Vatican City (Vatican City State)", "type": "country-code" }, { @@ -6571,12 +6571,12 @@ module.exports = [ }, { "domain": "vc", - "description": "Ministry of Telecommunications, Science, Technology and Industry", + "description": "Saint Vincent and the Grenadines", "type": "country-code" }, { "domain": "ve", - "description": "Comisión Nacional de Telecomunicaciones (CONATEL)", + "description": "Venezuela (Bolivarian Republic of)", "type": "country-code" }, { @@ -6606,12 +6606,12 @@ module.exports = [ }, { "domain": "vg", - "description": "Telecommunications Regulatory Commission of the Virgin Islands", + "description": "British Virgin Islands (Virgin Islands)", "type": "country-code" }, { "domain": "vi", - "description": "Virgin Islands Public Telecommunications System, Inc.", + "description": "United States Virgin Islands (United States Virgin Islands)", "type": "country-code" }, { @@ -6691,7 +6691,7 @@ module.exports = [ }, { "domain": "vn", - "description": "Ministry of Information and Communications of Socialist Republic of Viet Nam", + "description": "Vietnam (Socialist Republic of)", "type": "country-code" }, { @@ -6731,7 +6731,7 @@ module.exports = [ }, { "domain": "vu", - "description": "Telecom Vanuatu Limited", + "description": "Vanuatu (Republic of)", "type": "country-code" }, { @@ -6826,7 +6826,7 @@ module.exports = [ }, { "domain": "wf", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Wallis and Futuna (Territory of the Wallis and Futuna Islands)", "type": "country-code" }, { @@ -6906,7 +6906,7 @@ module.exports = [ }, { "domain": "ws", - "description": "Government of Samoa Ministry of Foreign Affairs & Trade", + "description": "Samoa (Independent State of)", "type": "country-code" }, { @@ -7766,7 +7766,7 @@ module.exports = [ }, { "domain": "xxx", - "description": "ICM Registry LLC", + "description": "Adult entertainment", "type": "sponsored" }, { @@ -7796,7 +7796,7 @@ module.exports = [ }, { "domain": "ye", - "description": "TeleYemen", + "description": "Yemen (Republic of)", "type": "country-code" }, { @@ -7826,7 +7826,7 @@ module.exports = [ }, { "domain": "yt", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Mayotte (Department of)", "type": "country-code" }, { @@ -7836,7 +7836,7 @@ module.exports = [ }, { "domain": "za", - "description": "ZA Domain Name Authority", + "description": "South Africa (Republic of)", "type": "country-code" }, { @@ -7866,7 +7866,7 @@ module.exports = [ }, { "domain": "zm", - "description": "Zambia Information and Communications Technology Authority (ZICTA)", + "description": "Zambia (Republic of)", "type": "country-code" }, { @@ -7881,7 +7881,7 @@ module.exports = [ }, { "domain": "zw", - "description": "Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)", + "description": "Zimbabwe (Republic of)", "type": "country-code" } ]; \ No newline at end of file diff --git a/formats/json/tld-desc.json b/formats/json/tld-desc.json index 1bd3793..2a394cf 100644 --- a/formats/json/tld-desc.json +++ b/formats/json/tld-desc.json @@ -9,7 +9,7 @@ "able": "Able Inc.", "abogado": "Top Level Domain Holdings Limited", "abudhabi": "Abu Dhabi Systems and Information Centre", - "ac": "Network Information Center (AC Domain Registry)\nc/o Cable and Wireless (Ascension Island)", + "ac": "Ascension Island", "academy": "Binky Moon, LLC", "accenture": "Accenture plc", "accountant": "dot Accountant Limited", @@ -17,29 +17,29 @@ "aco": "ACO Severin Ahlmann GmbH & Co. KG", "active": "Active Network, LLC", "actor": "United TLD Holdco Ltd.", - "ad": "Andorra Telecom", + "ad": "Andorra (Principality of)", "adac": "Allgemeiner Deutscher Automobil-Club e.V. (ADAC)", "ads": "Charleston Road Registry Inc.", "adult": "ICM Registry AD LLC", - "ae": "Telecommunication Regulatory Authority (TRA)", + "ae": "United Arab Emirates", "aeg": "Aktiebolaget Electrolux", - "aero": "Societe Internationale de Telecommunications Aeronautique (SITA INC USA)", + "aero": "Air-transport industry", "aetna": "Aetna Life Insurance Company", - "af": "Ministry of Communications and IT", + "af": "Afghanistan (Islamic Republic of)", "afamilycompany": "Johnson Shareholdings, Inc.", "afl": "Australian Football League", "africa": "ZA Central Registry NPC trading as Registry.Africa", - "ag": "UHSA School of Medicine", + "ag": "Antigua and Barbuda", "agakhan": "Fondation Aga Khan (Aga Khan Foundation)", "agency": "Binky Moon, LLC", - "ai": "Government of Anguilla", + "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": "Electronic and Postal Communications Authority - AKEP", + "al": "Albania (Republic of)", "alfaromeo": "Fiat Chrysler Automobiles N.V.", "alibaba": "Alibaba Group Holding Limited", "alipay": "Alibaba Group Holding Limited", @@ -48,41 +48,41 @@ "ally": "Ally Financial Inc.", "alsace": "REGION GRAND EST", "alstom": "ALSTOM", - "am": "\"Internet Society\" Non-governmental Organization", + "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": "Retired", + "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": "Faculdade de Engenharia da Universidade Agostinho Neto", + "ao": "Angola (Republic of)", "aol": "OATH Inc.", "apartments": "Binky Moon, LLC", "app": "Charleston Road Registry Inc.", "apple": "Apple Inc.", - "aq": "Antarctica Network Information Centre Limited", + "aq": "Antarctica", "aquarelle": "Aquarelle.com", - "ar": "Presidencia de la Nación – Secretaría Legal y Técnica", + "ar": "Argentina (Argentine Republic)", "arab": "League of Arab States", "aramco": "Aramco Services Company", "archi": "STARTING DOT LIMITED", "army": "United TLD Holdco Ltd.", - "arpa": "Internet Architecture Board (IAB)", + "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": "AS Domain Registry", + "as": "American Samoa", "asda": "Wal-Mart Stores, Inc.", - "asia": "DotAsia Organisation Ltd.", + "asia": "Organisations and individuals in the Asia-Pacific region", "associates": "Binky Moon, LLC", - "at": "nic.at GmbH", + "at": "Austria (Republic of)", "athleta": "The Gap, Inc.", "attorney": "United TLD Holdco, Ltd", - "au": ".au Domain Administration (auDA)", + "au": "Australia (Commonwealth of)", "auction": "United TLD HoldCo, Ltd.", "audi": "AUDI Aktiengesellschaft", "audible": "Amazon Registry Services, Inc.", @@ -92,13 +92,13 @@ "auto": "Cars Registry Limited", "autos": "DERAutos, LLC", "avianca": "Aerovias del Continente Americano S.A. Avianca", - "aw": "SETAR", + "aw": "Aruba", "aws": "Amazon Registry Services, Inc.", - "ax": "Ålands landskapsregering", + "ax": "Åland Islands", "axa": "AXA SA", - "az": "IntraNS", + "az": "Azerbaijan (Republic of)", "azure": "Microsoft Corporation", - "ba": "Universtiy Telinformatic Centre (UTIC)", + "ba": "Bosnia and Herzegovina", "baby": "Johnson & Johnson Services, Inc.", "baidu": "Baidu, Inc.", "banamex": "Citigroup Inc.", @@ -115,14 +115,14 @@ "basketball": "Fédération Internationale de Basketball (FIBA)", "bauhaus": "Werkhaus GmbH", "bayern": "Bayern Connect GmbH", - "bb": "Government of Barbados\nMinistry of Economic Affairs and Development\nTelecommunications Unit", + "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": "Posts and Telecommunications Division", - "be": "DNS Belgium vzw/asbl", + "bd": "Bangladesh (People's Republic of)", + "be": "Belgium (Kingdom of)", "beats": "Beats Electronics, LLC", "beauty": "L'Oréal", "beer": "Top Level Domain Holdings Limited", @@ -131,20 +131,20 @@ "best": "BestTLD Pty Ltd", "bestbuy": "BBY Solutions, Inc.", "bet": "Afilias plc", - "bf": "ARCE-AutoritÈ de RÈgulation des Communications Electroniques", - "bg": "Register.BG", - "bh": "Telecommunications Regulatory Authority (TRA)", + "bf": "Burkina Faso", + "bg": "Bulgaria (Republic of)", + "bh": "Bahrain (Kingdom of)", "bharti": "Bharti Enterprises (Holding) Private Limited", - "bi": "Centre National de l'Informatique", + "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": "Neustar, Inc.", - "bj": "Benin Telecoms S.A.", - "bl": "Not assigned", + "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", @@ -152,13 +152,13 @@ "blog": "Knock Knock WHOIS There, LLC", "bloomberg": "Bloomberg IP Holdings LLC", "blue": "Afilias plc", - "bm": "Registry General Department, Ministry of Home Affairs", + "bm": "Bermuda", "bms": "Bristol-Myers Squibb Company", "bmw": "Bayerische Motoren Werke Aktiengesellschaft", - "bn": "Authority for Info-communications Technology Industry of Brunei Darussalam (AITI)", + "bn": "Brunei (Nation of Brunei - the Abode of Peace) [Negara Brunei Darussalam]", "bnl": "Banca Nazionale del Lavoro", "bnpparibas": "BNP Paribas", - "bo": "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia", + "bo": "Bolivia (Plurinational State of)", "boats": "DERBoats, LLC", "boehringer": "Boehringer Ingelheim International GmbH", "bofa": "Bank of America Corporation", @@ -174,16 +174,16 @@ "bot": "Amazon Registry Services, Inc.", "boutique": "Binky Moon, LLC", "box": "NS1 Limited", - "bq": "Not assigned", - "br": "Comite Gestor da Internet no Brasil", + "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": "The College of the Bahamas", - "bt": "Ministry of Information and Communications", + "bs": "Bahamas (Commonwealth of the)", + "bt": "Bhutan (Kingdom of)", "budapest": "Top Level Domain Holdings Limited", "bugatti": "Bugatti International SA", "build": "Plan Bee LLC", @@ -191,12 +191,12 @@ "business": "Binky Moon, LLC", "buy": "Amazon Registry Services, INC", "buzz": "DOTSTRATEGY CO.", - "bv": "UNINETT Norid A/S", - "bw": "Botswana Communications Regulatory Authority (BOCRA)", - "by": "Reliable Software, Ltd.", - "bz": "University of Belize", + "bv": "Bouvet Island", + "bw": "Botswana (Republic of)", + "by": "Belarus (Republic of)", + "bz": "Belize", "bzh": "Association www.bzh", - "ca": "Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)", + "ca": "Canada", "cab": "Binky Moon, LLC", "cafe": "Binky Moon, LLC", "cal": "Charleston Road Registry Inc.", @@ -223,24 +223,24 @@ "caseih": "CNH Industrial N.V.", "cash": "Binky Moon, LLC", "casino": "Binky Moon, LLC", - "cat": "Fundacio puntCAT", + "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": "eNIC Cocos (Keeling) Islands Pty.\nLtd. d/b/a Island Internet Services", - "cd": "Office Congolais des Postes et Télécommunications - OCPT", + "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": "Societe Centrafricaine de Telecommunications (SOCATEL)", + "cf": "Central African Republic", "cfa": "CFA Institute", "cfd": "DOTCFD REGISTRY LTD", - "cg": "ONPT Congo and Interpoint Switzerland", - "ch": "SWITCH The Swiss Education & Research Network", + "cg": "Congo (Republic of) [Congo-Brazzaville]", + "ch": "Switzerland (Swiss Confederation)", "chanel": "Chanel International B.V.", "channel": "Charleston Road Registry Inc.", "charity": "Corn Lake, LLC", @@ -253,7 +253,7 @@ "chrome": "Charleston Road Registry Inc.", "chrysler": "FCA US LLC.", "church": "Binky Moon, LLC", - "ci": "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)", + "ci": "Ivory Coast (Republic of Côte d'Ivoire)", "cipriani": "Hotel Cipriani Srl", "circle": "Amazon Registry Services, Inc.", "cisco": "Cisco Technology, Inc.", @@ -262,8 +262,8 @@ "citic": "CITIC Group Corporation", "city": "Binky Moon, LLC", "cityeats": "Lifestyle Domain Holdings, Inc.", - "ck": "Telecom Cook Islands Ltd.", - "cl": "NIC Chile (University of Chile)", + "ck": "Cook Islands", + "cl": "Chile (Republic of)", "claims": "Binky Moon, LLC", "cleaning": "Binky Moon, LLC", "click": "Uniregistry, Corp.", @@ -273,15 +273,15 @@ "cloud": "ARUBA PEC S.p.A.", "club": ".CLUB DOMAINS, LLC", "clubmed": "Club Méditerranée S.A.", - "cm": "Cameroon Telecommunications (CAMTEL)", - "cn": "China Internet Network Information Center (CNNIC)", - "co": ".CO Internet S.A.S.", + "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": "punkt.wien GmbH", - "com": "VeriSign Global Registry Services", + "com": "Commercial organizations", "comcast": "Comcast IP Holdings I, LLC", "commbank": "COMMONWEALTH BANK OF AUSTRALIA", "community": "Binky Moon, LLC", @@ -297,13 +297,13 @@ "cooking": "Top Level Domain Holdings Limited", "cookingchannel": "Lifestyle Domain Holdings, Inc.", "cool": "Binky Moon, LLC", - "coop": "DotCooperation 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": "National Academy of Sciences\nAcademia Nacional de Ciencias", + "cr": "Costa Rica (Republic of)", "credit": "Binky Moon, LLC", "creditcard": "Binky Moon, LLC", "creditunion": "CUNA Performance Resources, LLC", @@ -313,15 +313,15 @@ "cruise": "Viking River Cruises (Bermuda) Ltd.", "cruises": "Binky Moon, LLC", "csc": "Alliance-One Services, Inc.", - "cu": "CENIAInternet\nIndustria y San Jose\nCapitolio Nacional", + "cu": "Cuba (Republic of)", "cuisinella": "SALM S.A.S.", - "cv": "Agência Nacional das Comunicações (ANAC)", - "cw": "University of Curacao", - "cx": "Christmas Island Domain Administration Limited", - "cy": "University of Cyprus", + "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": "CZ.NIC, z.s.p.o", + "cz": "Czech Republic", "dabur": "Dabur India Limited", "dad": "Charleston Road Registry Inc.", "dance": "United TLD Holdco Ltd.", @@ -332,7 +332,7 @@ "day": "Charleston Road Registry Inc.", "dclk": "Charleston Road Registry Inc.", "dds": "Minds + Machines Group Limited", - "de": "DENIC eG", + "de": "Germany (Federal Republic of)", "deal": "Amazon Registry Services, Inc.", "dealer": "Dealer Dot Com, Inc.", "deals": "Binky Moon, LLC", @@ -357,11 +357,11 @@ "discover": "Discover Financial Services", "dish": "Dish DBS Corporation", "diy": "Lifestyle Domain Holdings, Inc.", - "dj": "Djibouti Telecom S.A", - "dk": "Dansk Internet Forum", - "dm": "DotDM Corporation", + "dj": "Djibouti (Republic of)", + "dk": "Denmark (Kingdom of)", + "dm": "Dominica (Commonwealth of)", "dnp": "Dai Nippon Printing Co., Ltd.", - "do": "Pontificia Universidad Catolica Madre y Maestra\nRecinto Santo Tomas de Aquino", + "do": "Dominican Republic", "docs": "Charleston Road Registry Inc.", "doctor": "Binky Moon, LLC", "dodge": "FCA US LLC.", @@ -381,17 +381,17 @@ "durban": "ZA Central Registry NPC trading as ZA Central Registry", "dvag": "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "dvr": "Hughes Satellite Systems Corporation", - "dz": "CERIST", + "dz": "Algeria (People's Democratic Republic of)", "earth": "Interlink Co., Ltd.", "eat": "Charleston Road Registry Inc.", - "ec": "ECUADORDOMAIN S.A.", + "ec": "Ecuador (Republic of)", "eco": "Big Room Inc.", "edeka": "EDEKA Verband kaufmännischer Genossenschaften e.V.", - "edu": "EDUCAUSE", + "edu": "Educational establishments", "education": "Binky Moon, LLC", - "ee": "Eesti Interneti Sihtasutus (EIS)", - "eg": "Egyptian Universities Network (EUN)\nSupreme Council of Universities", - "eh": "Not assigned", + "ee": "Estonia (Republic of)", + "eg": "Egypt (Arab Republic of)", + "eh": "Western Sahara {reserved}", "email": "Binky Moon, LLC", "emerck": "Merck KGaA", "energy": "Binky Moon, LLC", @@ -401,16 +401,16 @@ "epost": "Deutsche Post AG", "epson": "Seiko Epson Corporation", "equipment": "Binky Moon, LLC", - "er": "Eritrea Telecommunication Services Corporation (EriTel)", + "er": "Eritrea (State of)", "ericsson": "Telefonaktiebolaget L M Ericsson", "erni": "ERNI Group Holding AG", - "es": "Red.es", + "es": "Spain (Kingdom of)", "esq": "Charleston Road Registry Inc.", "estate": "Binky Moon, LLC", "esurance": "Esurance Insurance Company", - "et": "Ethio telecom", + "et": "Ethiopia (Federal Democratic Republic of)", "etisalat": "Emirates Telecommunications Corporation (trading as Etisalat)", - "eu": "EURid vzw/asbl", + "eu": "European Union", "eurovision": "European Broadcasting Union (EBU)", "eus": "Puntueus Fundazioa", "events": "Binky Moon, LLC", @@ -435,7 +435,7 @@ "feedback": "Top Level Spectrum, Inc.", "ferrari": "Fiat Chrysler Automobiles N.V.", "ferrero": "Ferrero Trading Lux S.A.", - "fi": "Finnish Communications Regulatory Authority", + "fi": "Finland (Republic of)", "fiat": "Fiat Chrysler Automobiles N.V.", "fidelity": "Fidelity Brokerage Services LLC", "fido": "Rogers Communications Canada Inc.", @@ -450,8 +450,8 @@ "fishing": "Top Level Domain Holdings Limited", "fit": "Minds + Machines Group Limited", "fitness": "Binky Moon, LLC", - "fj": "The University of the South Pacific\nIT Services", - "fk": "Falkland Islands Government", + "fj": "Fiji (Republic of)", + "fk": "Falkland Islands (Malvinas)", "flickr": "Yahoo! Domain Services Inc.", "flights": "Binky Moon, LLC", "flir": "FLIR Systems, Inc.", @@ -459,8 +459,8 @@ "flowers": "Uniregistry, Corp.", "flsmidth": "Retired", "fly": "Charleston Road Registry Inc.", - "fm": "FSM Telecommunications Corporation", - "fo": "FO Council", + "fm": "Micronesia (Federated States of)", + "fo": "Faroe Islands", "foo": "Charleston Road Registry Inc.", "food": "Lifestyle Domain Holdings, Inc.", "foodnetwork": "Lifestyle Domain Holdings, Inc.", @@ -471,7 +471,7 @@ "forum": "Fegistry, LLC", "foundation": "Binky Moon, LLC", "fox": "FOX Registry, LLC", - "fr": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "fr": "France (French Republic)", "free": "Amazon Registry Services, Inc.", "fresenius": "Fresenius Immobilien-Verwaltungs-GmbH", "frl": "FRLregistry B.V.", @@ -486,7 +486,7 @@ "furniture": "Binky Moon, LLC", "futbol": "United TLD Holdco, Ltd.", "fyi": "Binky Moon, LLC", - "ga": "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)", + "ga": "Gabon (Gabonese Republic)", "gal": "Asociación puntoGAL", "gallery": "Binky Moon, LLC", "gallo": "Gallo Vineyards, Inc.", @@ -495,36 +495,36 @@ "games": "United TLD Holdco Ltd.", "gap": "The Gap, Inc.", "garden": "Top Level Domain Holdings Limited", - "gb": "Reserved Domain - IANA", + "gb": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", "gbiz": "Charleston Road Registry Inc.", - "gd": "The National Telecommunications Regulatory Commission (NTRC)", + "gd": "Grenada", "gdn": "Joint Stock Company \"Navigation-information systems\"", - "ge": "Caucasus Online LLC", + "ge": "Georgia", "gea": "GEA Group Aktiengesellschaft", "gent": "Combell nv", "genting": "Resorts World Inc. Pte. Ltd.", "george": "Wal-Mart Stores, Inc.", - "gf": "Net Plus", - "gg": "Island Networks Ltd.", + "gf": "French Guiana", + "gg": "Guernsey (Bailiwick of)", "ggee": "GMO Internet, Inc.", - "gh": "Network Computer Systems Limited", - "gi": "Sapphire Networks", + "gh": "Ghana (Republic of)", + "gi": "Gibraltar", "gift": "Uniregistry, Corp.", "gifts": "Binky Moon, LLC", "gives": "United TLD Holdco Ltd.", "giving": "Giving Limited", - "gl": "TELE Greenland A/S", + "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": "GM-NIC", + "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": "Centre National des Sciences Halieutiques de Boussoura", + "gn": "Guinea (Republic of)", "godaddy": "Go Daddy East, LLC", "gold": "Binky Moon, LLC", "goldpoint": "YODOBASHI CAMERA CO.,LTD.", @@ -536,10 +536,10 @@ "google": "Charleston Road Registry Inc.", "gop": "Republican State Leadership Committee, Inc.", "got": "Amazon Registry Services, Inc.", - "gov": "General Services Administration\nAttn: QTDC, 2E08 (.gov Domain Registration)", - "gp": "Networking Technologies Group", - "gq": "GETESA", - "gr": "ICS-FORTH GR", + "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", @@ -547,17 +547,17 @@ "gripe": "Binky Moon, LLC", "grocery": "Wal-Mart Stores, Inc.", "group": "Binky Moon, LLC", - "gs": "Government of South Georgia and South Sandwich Islands (GSGSSI)", - "gt": "Universidad del Valle de Guatemala", - "gu": "University of Guam", + "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": "Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau", - "gy": "University of Guyana", + "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.", @@ -576,10 +576,10 @@ "hisamitsu": "Hisamitsu Pharmaceutical Co.,Inc.", "hitachi": "Hitachi, Ltd.", "hiv": "Uniregistry, Corp.", - "hk": "Hong Kong Internet Registration Corporation Ltd.", + "hk": "Hong Kong (Hong Kong Special Administrative Region of the People's Republic of China)", "hkt": "PCCW-HKT DataCom Services Limited", - "hm": "HM Domain Registry", - "hn": "Red de Desarrollo Sostenible Honduras", + "hm": "Heard Island and McDonald Islands", + "hn": "Honduras (Republic of)", "hockey": "Binky Moon, LLC", "holdings": "Binky Moon, LLC", "holiday": "Binky Moon, LLC", @@ -599,11 +599,11 @@ "hotmail": "Microsoft Corporation", "house": "Binky Moon, LLC", "how": "Charleston Road Registry Inc.", - "hr": "CARNet - Croatian Academic and Research Network", + "hr": "Croatia (Republic of)", "hsbc": "HSBC Global Services (UK) Limited", - "ht": "Consortium FDS/RDDH", + "ht": "Haiti (Republic of)", "htc": "Not assigned", - "hu": "Council of Hungarian Internet Providers (CHIP)", + "hu": "Hungary", "hughes": "Hughes Satellite Systems Corporation", "hyatt": "Hyatt GTLD, L.L.C.", "hyundai": "Hyundai Motor Company", @@ -611,43 +611,43 @@ "icbc": "Industrial and Commercial Bank of China Limited", "ice": "IntercontinentalExchange, Inc.", "icu": "Shortdot SA", - "id": "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)", - "ie": "University College Dublin\nComputing Services\nComputer Centre", + "id": "Indonesia (Republic of)", + "ie": "Ireland (Republic of)", "ieee": "IEEE Global LLC", "ifm": "ifm electronic gmbh", "iinet": "Retired", "ikano": "Ikano S.A.", - "il": "Internet Society of Israel", - "im": "Isle of Man Government", + "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": "National Internet Exchange of India", + "in": "India (Republic of)", "industries": "Binky Moon, LLC", "infiniti": "NISSAN MOTOR CO., LTD.", - "info": "Afilias Limited", + "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": "Internet Assigned Numbers Authority", + "int": "International treaty-based organizations", "intel": "Intel Corporation", "international": "Binky Moon, LLC", "intuit": "Intuit Administrative Services, Inc.", "investments": "Binky Moon, LLC", - "io": "IO Top Level Domain Registry\nCable and Wireless", + "io": "British Indian Ocean Territory", "ipiranga": "Ipiranga Produtos de Petroleo S.A.", - "iq": "Communications and Media Commission (CMC)", - "ir": "Institute for Research in Fundamental Sciences", + "iq": "Iraq (Republic of)", + "ir": "Iran (Islamic Republic of)", "irish": "Binky Moon, LLC", - "is": "ISNIC - Internet Iceland ltd.", + "is": "Iceland", "iselect": "iSelect Ltd", "ismaili": "Fondation Aga Khan (Aga Khan Foundation)", "ist": "Istanbul Metropolitan Municipality", "istanbul": "Istanbul Metropolitan Municipality", - "it": "IIT - CNR", + "it": "Italy (Italian Republic)", "itau": "Itau Unibanco Holding S.A.", "itv": "ITV Services Limited", "iveco": "CNH Industrial N.V.", @@ -656,59 +656,59 @@ "java": "Oracle Corporation", "jcb": "JCB Co., Ltd.", "jcp": "JCP Media, Inc.", - "je": "Island Networks (Jersey) Ltd.", + "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": "University of West Indies", + "jm": "Jamaica (Commonwealth of)", "jmp": "Matrix IP LLC", "jnj": "Johnson & Johnson Services, Inc.", - "jo": "National Information Technology Center (NITC)", - "jobs": "Employ Media LLC", + "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 Registry Services Co., Ltd.", + "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 Network Information Center (KeNIC)", + "ke": "Kenya (Republic of)", "kerryhotels": "Kerry Trading Co. Limited", "kerrylogistics": "Kerry Trading Co. Limited", "kerryproperties": "Kerry Trading Co. Limited", "kfh": "Kuwait Finance House", - "kg": "AsiaInfo Telecommunication Enterprise", - "kh": "Telecommunication Regulator of Cambodia (TRC)", - "ki": "Ministry of Communications, Transport, and Tourism Development", + "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": "Comores Telecom", - "kn": "Ministry of Finance, Sustainable Development Information & Technology", + "km": "Comoros (Union of the)", + "kn": "Saint Kitts and Nevis (Federation of)", "koeln": "punkt.wien GmbH", "komatsu": "Komatsu Ltd.", "kosher": "Kosher Marketing Assets LLC", - "kp": "Star Joint Venture Company", + "kp": "Korea (Democratic People's Republic of) [North Korea]", "kpmg": "KPMG International Cooperative (KPMG International Genossenschaft)", "kpn": "Koninklijke KPN N.V.", - "kr": "Korea Internet & Security Agency (KISA)", + "kr": "Korea (Republic of) [South Korea]", "krd": "KRG Department of Information Technology", "kred": "KredTLD Pty Ltd", "kuokgroup": "Kerry Trading Co. Limited", - "kw": "Communications and Information Technology Regulatory Authority", - "ky": "Utility Regulation and Competition Office (OfReg)", + "kw": "Kuwait (State of Kuwait)", + "ky": "Cayman Islands", "kyoto": "Academic Institution: Kyoto Jyoho Gakuen", - "kz": "Association of IT Companies of Kazakhstan", - "la": "Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications", + "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.", @@ -725,8 +725,8 @@ "latrobe": "La Trobe University", "law": "Minds + Machines Group Limited", "lawyer": "United TLD Holdco, Ltd", - "lb": "American University of Beirut\nComputing and Networking Services", - "lc": "University of Puerto Rico", + "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", @@ -735,7 +735,7 @@ "lego": "LEGO Juris A/S", "lexus": "TOYOTA MOTOR CORPORATION", "lgbt": "Afilias plc", - "li": "SWITCH The Swiss Education & Research Network", + "li": "Liechtenstein (Principality of)", "liaison": "Liaison Technologies, Incorporated", "lidl": "Schwarz Domains und Services GmbH & Co. KG", "life": "Binky Moon, LLC", @@ -753,7 +753,7 @@ "live": "United TLD Holdco Ltd.", "living": "Lifestyle Domain Holdings, Inc.", "lixil": "LIXIL Group Corporation", - "lk": "Council for Information Technology\nLK Domain Registrar", + "lk": "Sri Lanka (Democratic Socialist Republic of)", "llc": "Afilias plc", "loan": "dot Loan Limited", "loans": "Binky Moon, LLC", @@ -767,19 +767,19 @@ "love": "Merchant Law Group LLP", "lpl": "LPL Holdings, Inc.", "lplfinancial": "LPL Holdings, Inc.", - "lr": "Data Technology Solutions, Inc.", - "ls": "National University of Lesotho", - "lt": "Kaunas University of Technology", + "lr": "Liberia (Republic of)", + "ls": "Lesotho (Kingdom of)", + "lt": "Lithuania (Republic of)", "ltd": "Binky Moon, LLC", "ltda": "InterNetX Corp.", - "lu": "RESTENA", + "lu": "Luxembourg (Grand Duchy of)", "lundbeck": "H. Lundbeck A/S", "lupin": "LUPIN LIMITED", "luxe": "Top Level Domain Holdings Limited", "luxury": "Luxury Partners LLC", - "lv": "University of Latvia\nInstitute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)", - "ly": "General Post and Telecommunication Company", - "ma": "Agence Nationale de Réglementation des Télécommunications (ANRT)", + "lv": "Latvia (Republic of)", + "ly": "Libya", + "ma": "Morocco", "macys": "Macys, Inc.", "madrid": "Comunidad de Madrid", "maif": "Mutuelle Assurance Instituteur France (MAIF)", @@ -797,12 +797,12 @@ "maserati": "Fiat Chrysler Automobiles N.V.", "mattel": "Mattel Sites, Inc.", "mba": "Binky Moon, LLC", - "mc": "Gouvernement de Monaco\nDirection des Communications Electroniques", + "mc": "Monaco (Principality of)", "mcd": "Not assigned", "mcdonalds": "Not assigned", "mckinsey": "McKinsey Holdings, Inc.", - "md": "MoldData S.E.", - "me": "Government of Montenegro", + "md": "Moldova (Republic of)", + "me": "Montenegro", "med": "Medistry LLC", "media": "Binky Moon, LLC", "meet": "Charleston Road Registry Inc.", @@ -814,25 +814,25 @@ "meo": "Not assigned", "merckmsd": "MSD Registry Holdings, Inc.", "metlife": "MetLife Services and Solutions, LLC", - "mf": "Not assigned", - "mg": "NIC-MG (Network Information Center Madagascar)", - "mh": "Office of the Cabinet", + "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": "DoD Network Information Center", + "mil": "US military", "mini": "Bayerische Motoren Werke Aktiengesellschaft", "mint": "Intuit Administrative Services, Inc.", "mit": "Massachusetts Institute of Technology", "mitsubishi": "Mitsubishi Corporation", - "mk": "Macedonian Academic Research Network Skopje", - "ml": "Agence des Technologies de l’Information et de la Communication", + "mk": "Macedonia (Republic of)", + "ml": "Mali (Republic of)", "mlb": "MLB Advanced Media DH, LLC", "mls": "The Canadian Real Estate Association", - "mm": "Ministry of Communications, Posts & Telegraphs", + "mm": "Myanmar (Republic of the Union of) [Burma]", "mma": "MMA IARD", - "mn": "Datacom Co., Ltd.", - "mo": "Macao Post and Telecommunications Bureau (CTT)", - "mobi": "Afilias Technologies Limited dba dotMobi", + "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.", @@ -852,37 +852,37 @@ "mov": "Charleston Road Registry Inc.", "movie": "Binky Moon, LLC", "movistar": "Telefónica S.A.", - "mp": "Saipan Datacom, Inc.", - "mq": "MEDIASERV", - "mr": "Université de Nouakchott Al Aasriya", - "ms": "MNI Networks Ltd.", + "mp": "Northern Mariana Islands (Commonwealth of the)", + "mq": "Martinique", + "mr": "Mauritania (Islamic Republic of)", + "ms": "Montserrat", "msd": "MSD Registry Holdings, Inc.", - "mt": "NIC (Malta)", + "mt": "Malta (Republic of)", "mtn": "MTN Dubai Limited", "mtpc": "Retired", "mtr": "MTR Corporation Limited", - "mu": "Internet Direct Ltd", - "museum": "Museum Domain Management Association", + "mu": "Mauritius (Republic of)", + "museum": "Museums", "mutual": "Northwestern Mutual MU TLD Registry, LLC", "mutuelle": "Retired", - "mv": "Dhiraagu Pvt. Ltd. (DHIVEHINET)", - "mw": "Malawi Sustainable Development Network Programme\n(Malawi SDNP)", - "mx": "NIC-Mexico\nITESM - Campus Monterrey", - "my": "MYNIC Berhad", - "mz": "Centro de Informatica de Universidade Eduardo Mondlane", - "na": "Namibian Network Information Center", + "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": "VeriSign Information Services, Inc.", + "name": "Individuals", "nationwide": "Nationwide Mutual Insurance Company", "natura": "NATURA COSMÉTICOS S.A.", "navy": "United TLD Holdco Ltd.", "nba": "NBA REGISTRY, LLC", - "nc": "Office des Postes et Telecommunications", - "ne": "SONITEL", + "nc": "New Caledonia", + "ne": "Niger (Republic of)", "nec": "NEC Corporation", - "net": "VeriSign Global Registry Services", + "net": "Network", "netbank": "COMMONWEALTH BANK OF AUSTRALIA", "netflix": "Netflix, Inc.", "network": "Binky Moon, LLC", @@ -893,34 +893,34 @@ "next": "Next plc", "nextdirect": "Next plc", "nexus": "Charleston Road Registry Inc.", - "nf": "Norfolk Island Data Services", + "nf": "Norfolk Island (Territory of)", "nfl": "NFL Reg Ops LLC", - "ng": "Nigeria Internet Registration Association", + "ng": "Nigeria (Federal Republic of)", "ngo": "Public Interest Registry", "nhk": "Japan Broadcasting Corporation (NHK)", - "ni": "Universidad Nacional del Ingernieria\nCentro de Computo", + "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": "SIDN (Stichting Internet Domeinregistratie Nederland)", - "no": "UNINETT Norid A/S", + "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": "Mercantile Communications Pvt. Ltd.", - "nr": "CENPAC NET", + "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": "The IUSN Foundation", + "nu": "Niue", "nyc": "The City of New York by and through the New York City Department of Information Technology & Telecommunications", - "nz": "InternetNZ", + "nz": "New Zealand", "obi": "OBI Group Holding SE & Co. KGaA", "observer": "Top Level Spectrum, Inc.", "off": "Johnson Shareholdings, Inc.", @@ -930,7 +930,7 @@ "olayangroup": "Crescent Holding GmbH", "oldnavy": "The Gap, Inc.", "ollo": "Dish DBS Corporation", - "om": "Telecommunications Regulatory Authority (TRA)", + "om": "Oman (Sultanate of)", "omega": "The Swatch Group Ltd", "one": "One.com A/S", "ong": "Public Interest Registry", @@ -941,7 +941,7 @@ "open": "American Express Travel Related Services Company, Inc.", "oracle": "Oracle Corporation", "orange": "Orange Brand Services Limited", - "org": "Public Interest Registry (PIR)", + "org": "Non-profit organizations", "organic": "Afilias plc", "orientexpress": "Retired", "origins": "The Estée Lauder Companies Inc.", @@ -949,7 +949,7 @@ "otsuka": "Otsuka Holdings Co., Ltd.", "ott": "Dish DBS Corporation", "ovh": "OVH SAS", - "pa": "Universidad Tecnologica de Panama", + "pa": "Panama (Republic of)", "page": "Charleston Road Registry Inc.", "pamperedchef": "Not assigned", "panasonic": "Panasonic Corporation", @@ -962,12 +962,12 @@ "passagens": "Travel Reservations SRL", "pay": "Amazon Registry Services, Inc.", "pccw": "PCCW Enterprises Limited", - "pe": "Red Cientifica Peruana", + "pe": "Peru (Republic of)", "pet": "Afilias plc", - "pf": "Gouvernement de la Polynésie française", + "pf": "French Polynesia and Clipperton Island", "pfizer": "Pfizer Inc.", - "pg": "PNG DNS Administration\nVice Chancellors Office\nThe Papua New Guinea University of Technology", - "ph": "PH Domain Foundation", + "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.", @@ -986,27 +986,27 @@ "pink": "Afilias plc", "pioneer": "Pioneer Corporation", "pizza": "Binky Moon, LLC", - "pk": "PKNIC", - "pl": "Research and Academic Computer Network", + "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": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", - "pn": "Pitcairn Island Administration", + "pm": "Saint Pierre and Miquelon", + "pn": "Pitcairn Islands (Pitcairn - Henderson - Ducie and Oeno Islands)", "pnc": "PNC Domain Co., LLC", "pohl": "Deutsche Vermögensberatung Aktiengesellschaft DVAG", "poker": "Afilias plc", "politie": "Politie Nederland", "porn": "ICM Registry PN LLC", "post": "Universal Postal Union", - "pr": "Gauss Research Laboratory Inc.", + "pr": "Puerto Rico (Commonwealth of)", "pramerica": "Prudential Financial, Inc.", "praxi": "Praxi S.p.A.", "press": "DotPress Inc.", "prime": "Amazon Registry Services, Inc.", - "pro": "Registry Services Corporation\ndba RegistryPro", + "pro": "Profession", "prod": "Charleston Road Registry Inc.", "productions": "Binky Moon, LLC", "prof": "Charleston Road Registry Inc.", @@ -1017,13 +1017,13 @@ "protection": "XYZ.COM LLC", "pru": "Prudential Financial, Inc.", "prudential": "Prudential Financial, Inc.", - "ps": "Ministry Of Telecommunications &\nInformation Technology,\nGovernment Computer Center.", - "pt": "Associação DNS.PT", + "ps": "Palestine (State of)", + "pt": "Portugal (Portuguese Republic)", "pub": "United TLD Holdco Ltd.", - "pw": "Micronesia Investment and Development Corporation", + "pw": "Palau (Republic of)", "pwc": "PricewaterhouseCoopers LLP", - "py": "NIC-PY", - "qa": "Communications Regulatory Authority", + "py": "Paraguay (Republic of)", + "qa": "Qatar (State of)", "qpon": "dotCOOL, Inc.", "quebec": "PointQuébec Inc", "quest": "Quest ION Limited", @@ -1031,7 +1031,7 @@ "racing": "Premier Registry Limited", "radio": "European Broadcasting Union (EBU)", "raid": "Johnson Shareholdings, Inc.", - "re": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "re": "Réunion", "read": "Amazon Registry Services, Inc.", "realestate": "dotRealEstate LLC", "realtor": "Real Estate Domains LLC", @@ -1064,22 +1064,22 @@ "rio": "Empresa Municipal de Informática SA - IPLANRIO", "rip": "United TLD Holdco Ltd.", "rmit": "Royal Melbourne Institute of Technology", - "ro": "National Institute for R&D in Informatics", + "ro": "Romania", "rocher": "Ferrero Trading Lux S.A.", "rocks": "United TLD Holdco, LTD.", "rodeo": "Top Level Domain Holdings Limited", "rogers": "Rogers Communications Canada Inc.", "room": "Amazon Registry Services, Inc.", - "rs": "Serbian National Internet Domain Registry (RNIDS)", + "rs": "Serbia (Republic of)", "rsvp": "Charleston Road Registry Inc.", - "ru": "Coordination Center for TLD RU", + "ru": "Russia (Russian Federation)", "rugby": "World Rugby Strategic Developments Limited", "ruhr": "regiodot GmbH & Co. KG", "run": "Binky Moon, LLC", - "rw": "Rwanda Information Communication and Technology Association (RICTA)", + "rw": "Rwanda (Republic of)", "rwe": "RWE AG", "ryukyu": "BRregistry, Inc.", - "sa": "Communications and Information Technology Commission", + "sa": "Saudi Arabia (Kingdom of)", "saarland": "dotSaarland GmbH", "safe": "Amazon Registry Services, Inc.", "safety": "Safety Registry Services, LLC.", @@ -1097,10 +1097,10 @@ "sas": "Research IP LLC", "save": "Amazon Registry Services, Inc.", "saxo": "Saxo Bank A/S", - "sb": "Solomon Telekom Company Limited", + "sb": "Solomon Islands", "sbi": "STATE BANK OF INDIA", "sbs": "SPECIAL BROADCASTING SERVICE CORPORATION", - "sc": "VCS Pty Ltd", + "sc": "Seychelles (Republic of)", "sca": "SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ)", "scb": "The Siam Commercial Bank Public Company Limited (\"SCB\")", "schaeffler": "Schaeffler Technologies AG & Co. KG", @@ -1113,8 +1113,8 @@ "scjohnson": "Johnson Shareholdings, Inc.", "scor": "SCOR SE", "scot": "Dot Scot Registry Limited", - "sd": "Sudan Internet Society", - "se": "The Internet Infrastructure Foundation", + "sd": "Sudan (Republic of)", + "se": "Sweden (Kingdom of)", "search": "Charleston Road Registry Inc.", "seat": "SEAT, S.A. (Sociedad Unipersonal)", "secure": "Amazon Registry Services, Inc.", @@ -1129,8 +1129,8 @@ "sex": "ICM Registry SX LLC", "sexy": "Uniregistry, Corp.", "sfr": "Societe Francaise du Radiotelephone - SFR", - "sg": "Singapore Network Information Centre (SGNIC) Pte Ltd", - "sh": "Government of St. Helena", + "sg": "Singapore (Republic of)", + "sh": "Saint Helena", "shangrila": "Shangri‐La International Hotel Management Limited", "sharp": "Sharp Corporation", "shaw": "Shaw Cablesystems G.P.", @@ -1144,25 +1144,25 @@ "show": "Binky Moon, LLC", "showtime": "CBS Domains Inc.", "shriram": "Shriram Capital Ltd.", - "si": "Academic and Research Network of Slovenia (ARNES)", + "si": "Slovenia (Republic of)", "silk": "Amazon Registry Services, Inc.", "sina": "Sina Corporation", "singles": "Binky Moon, LLC", "site": "DotSite Inc.", - "sj": "UNINETT Norid A/S", - "sk": "SK-NIC, a.s.", + "sj": "Svalbard and Jan Mayen {not in use - see also: .no}", + "sk": "Slovakia (Slovak Republic)", "ski": "STARTING DOT LIMITED", "skin": "L'Oréal", "sky": "Sky International AG", "skype": "Microsoft Corporation", - "sl": "Sierratel", + "sl": "Sierra Leone (Republic of)", "sling": "Hughes Satellite Systems Corporation", - "sm": "Telecom Italia San Marino S.p.A.", + "sm": "San Marino (Republic of)", "smart": "Smart Communications, Inc. (SMART)", "smile": "Amazon Registry Services, Inc.", - "sn": "Universite Cheikh Anta Diop\nNIC Senegal", + "sn": "Senegal (Republic of)", "sncf": "SNCF (Société Nationale des Chemins de fer Francais)", - "so": "Ministry of Post and Telecommunications", + "so": "Somalia (Federal Republic of)", "soccer": "Binky Moon, LLC", "social": "United TLD Holdco Ltd.", "softbank": "SoftBank Group Corp.", @@ -1178,11 +1178,11 @@ "sport": "Global Association of International Sports Federations (GAISF)", "spot": "Amazon Registry Services, Inc.", "spreadbetting": "DOTSPREADBETTING REGISTRY LTD", - "sr": "Telesur", + "sr": "Suriname (Republic of)", "srl": "InterNetX Corp.", "srt": "FCA US LLC.", - "ss": "Not assigned", - "st": "Tecnisys", + "ss": "South Sudan (Republic of)", + "st": "São Tomé and Príncipe (Democratic Republic of)", "stada": "STADA Arzneimittel AG", "staples": "Staples, Inc.", "star": "Star India Private Limited", @@ -1199,7 +1199,7 @@ "studio": "United TLD Holdco Ltd.", "study": "OPEN UNIVERSITIES AUSTRALIA PTY LTD", "style": "Binky Moon, LLC", - "su": "Russian Institute for Development of Public Networks\n(ROSNIIROS)", + "su": "Soviet Union (Union of Soviet Socialist Republics)", "sucks": "Vox Populi Registry Ltd.", "supplies": "Binky Moon, LLC", "supply": "Binky Moon, LLC", @@ -1207,16 +1207,16 @@ "surf": "Top Level Domain Holdings Limited", "surgery": "Binky Moon, LLC", "suzuki": "SUZUKI MOTOR CORPORATION", - "sv": "SVNet", + "sv": "El Salvador (Republic of)", "swatch": "The Swatch Group Ltd", "swiftcover": "Swiftcover Insurance Services Limited", "swiss": "Swiss Confederation", - "sx": "SX Registry SA B.V.", - "sy": "National Agency for Network Services (NANS)", + "sx": "Sint Maarten", + "sy": "Syria (Syrian Arab Republic)", "sydney": "State of New South Wales, Department of Premier and Cabinet", "symantec": "Symantec Corporation", "systems": "Binky Moon, LLC", - "sz": "University of Swaziland\nDepartment of Computer Science", + "sz": "Swaziland (Kingdom of)", "tab": "Tabcorp Holdings Limited", "taipei": "Taipei City Government", "talk": "Amazon Registry Services, Inc.", @@ -1227,22 +1227,22 @@ "tattoo": "Uniregistry, Corp.", "tax": "Binky Moon, LLC", "taxi": "Binky Moon, LLC", - "tc": "Melrex TC", + "tc": "Turks and Caicos Islands", "tci": "Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.", - "td": "l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC)", + "td": "Chad (Republic of)", "tdk": "TDK Corporation", "team": "Binky Moon, LLC", "tech": "Dot Tech LLC", "technology": "Binky Moon, LLC", - "tel": "Telnames Ltd.", + "tel": "Telephone", "telecity": "TelecityGroup International Limited", "telefonica": "Telefónica S.A.", "temasek": "Temasek Holdings (Private) Limited", "tennis": "Binky Moon, LLC", "teva": "Teva Pharmaceutical Industries Limited", - "tf": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", - "tg": "Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)", - "th": "Thai Network Information Center Foundation", + "tf": "French Southern and Antarctic Lands (Territory of the)", + "tg": "Togo (Togolese Republic)", + "th": "Thailand (Kingdom of)", "thd": "Home Depot Product Authority, LLC", "theater": "Binky Moon, LLC", "theatre": "XYZ.COM LLC", @@ -1253,16 +1253,16 @@ "tips": "Binky Moon, LLC", "tires": "Binky Moon, LLC", "tirol": "punkt Tirol GmbH", - "tj": "Information Technology Center", + "tj": "Tajikistan (Republic of)", "tjmaxx": "The TJX Companies, Inc.", "tjx": "The TJX Companies, Inc.", - "tk": "Telecommunication Tokelau Corporation (Teletok)", + "tk": "Tokelau", "tkmaxx": "The TJX Companies, Inc.", - "tl": "Autoridade Nacional de Comunicações", - "tm": "TM Domain Registry Ltd", + "tl": "Timor-Leste (Democratic Republic of) [East Timor]", + "tm": "Turkmenistan", "tmall": "Alibaba Group Holding Limited", - "tn": "Agence Tunisienne d'Internet", - "to": "Government of the Kingdom of Tonga\nH.R.H. Crown Prince Tupouto'a\nc/o Consulate of Tonga", + "tn": "Tunisia (Republic of)", + "to": "Tonga (Kingdom of)", "today": "Binky Moon, LLC", "tokyo": "GMO Registry, Inc.", "tools": "Binky Moon, LLC", @@ -1274,54 +1274,54 @@ "town": "Binky Moon, LLC", "toyota": "TOYOTA MOTOR CORPORATION", "toys": "Binky Moon, LLC", - "tp": "Retired", - "tr": "Middle East Technical University\nDepartment of Computer Engineering", + "tp": "Timor-Leste (Democratic Republic of) [East Timor] {being phased out - also see: .tl}", + "tr": "Turkey (Republic of)", "trade": "Elite Registry Limited", "trading": "DOTTRADING REGISTRY LTD", "training": "Binky Moon, LLC", - "travel": "Dog\tBeach, LLC", + "travel": "Travel", "travelchannel": "Lifestyle Domain Holdings, Inc.", "travelers": "Travelers TLD, LLC", "travelersinsurance": "Travelers TLD, LLC", "trust": "Artemis Internet Inc", "trv": "Travelers TLD, LLC", - "tt": "University of the West Indies\nFaculty of Engineering", + "tt": "Trinidad and Tobago (Republic of)", "tube": "Latin American Telecom LLC", "tui": "TUI AG", "tunes": "Amazon Registry Services, Inc.", "tushu": "Amazon Registry Services, Inc.", - "tv": "Ministry of Finance and Tourism", + "tv": "Tuvalu", "tvs": "T V SUNDRAM IYENGAR & SONS PRIVATE LIMITED", - "tw": "Taiwan Network Information Center (TWNIC)", - "tz": "Tanzania Network Information Centre (tzNIC)", - "ua": "Hostmaster Ltd.", + "tw": "Taiwan (Republic of China)", + "tz": "Tanzania (United Republic of)", + "ua": "Ukraine", "ubank": "National Australia Bank Limited", "ubs": "UBS AG", "uconnect": "FCA US LLC.", - "ug": "Uganda Online Ltd.", - "uk": "Nominet UK", - "um": "Not assigned", + "ug": "Uganda (Republic of)", + "uk": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", + "um": "United States Minor Outlying Islands {formerly - retired 2010 - see also: .us}", "unicom": "China United Network Communications Corporation Limited", "university": "Binky Moon, LLC", "uno": "Dot Latin LLC", "uol": "UBN INTERNET LTDA.", "ups": "UPS Market Driver, Inc.", - "us": "NeuStar, Inc.", - "uy": "SeCIU - Universidad de la Republica", - "uz": "Computerization and Information Technologies Developing Center\nUZINFOCOM", - "va": "Holy See - Vatican City State", + "us": "United States of America and United States Minor Outlying Islands", + "uy": "Uruguay (Oriental Republic of)", + "uz": "Uzbekistan (Republic of)", + "va": "Vatican City (Vatican City State)", "vacations": "Binky Moon, LLC", "vana": "Lifestyle Domain Holdings, Inc.", "vanguard": "The Vanguard Group, Inc.", - "vc": "Ministry of Telecommunications, Science, Technology and Industry", - "ve": "Comisión Nacional de Telecomunicaciones (CONATEL)", + "vc": "Saint Vincent and the Grenadines", + "ve": "Venezuela (Bolivarian Republic of)", "vegas": "Dot Vegas, Inc.", "ventures": "Binky Moon, LLC", "verisign": "VeriSign, Inc.", "versicherung": "TLD-BOX Registrydienstleistungen GmbH", "vet": "United TLD Holdco, Ltd", - "vg": "Telecommunications Regulatory Commission of the Virgin Islands", - "vi": "Virgin Islands Public Telecommunications System, Inc.", + "vg": "British Virgin Islands (Virgin Islands)", + "vi": "United States Virgin Islands (United States Virgin Islands)", "viajes": "Binky Moon, LLC", "video": "United TLD Holdco, Ltd", "vig": "VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe", @@ -1337,7 +1337,7 @@ "viva": "Saudi Telecom Company", "vivo": "Telefonica Brasil S.A.", "vlaanderen": "DNS.be vzw", - "vn": "Ministry of Information and Communications of Socialist Republic of Viet Nam", + "vn": "Vietnam (Socialist Republic of)", "vodka": "Top Level Domain Holdings Limited", "volkswagen": "Volkswagen Group of America Inc.", "volvo": "Volvo Holding Sverige Aktiebolag", @@ -1345,7 +1345,7 @@ "voting": "Valuetainment Corp.", "voto": "Monolith Registry LLC", "voyage": "Binky Moon, LLC", - "vu": "Telecom Vanuatu Limited", + "vu": "Vanuatu (Republic of)", "vuelos": "Travel Reservations SRL", "wales": "Nominet UK", "walmart": "Wal-Mart Stores, Inc.", @@ -1364,7 +1364,7 @@ "wedding": "Top Level Domain Holdings Limited", "weibo": "Sina Corporation", "weir": "Weir Group IP Limited", - "wf": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "wf": "Wallis and Futuna (Territory of the Wallis and Futuna Islands)", "whoswho": "Who's Who Registry", "wien": "punkt.wien GmbH", "wiki": "Top Level Design, LLC", @@ -1380,7 +1380,7 @@ "works": "Binky Moon, LLC", "world": "Binky Moon, LLC", "wow": "Amazon Registry Services, Inc.", - "ws": "Government of Samoa Ministry of Foreign Affairs & Trade", + "ws": "Samoa (Independent State of)", "wtc": "World Trade Centers Association, Inc.", "wtf": "Binky Moon, LLC", "xbox": "Microsoft Corporation", @@ -1552,28 +1552,28 @@ "テスト": "Internet Assigned Numbers Authority", "政务": "China Organizational Name Administration Center", "xperia": "Sony Mobile Communications AB", - "xxx": "ICM Registry LLC", + "xxx": "Adult entertainment", "xyz": "XYZ.COM LLC", "yachts": "DERYachts, LLC", "yahoo": "Yahoo! Domain Services Inc.", "yamaxun": "Amazon Registry Services, Inc.", "yandex": "YANDEX, LLC", - "ye": "TeleYemen", + "ye": "Yemen (Republic of)", "yodobashi": "YODOBASHI CAMERA CO.,LTD.", "yoga": "Top Level Domain Holdings Limited", "yokohama": "GMO Registry, Inc.", "you": "Amazon Registry Services, Inc.", "youtube": "Charleston Road Registry Inc.", - "yt": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "yt": "Mayotte (Department of)", "yun": "QIHOO 360 TECHNOLOGY CO. LTD.", - "za": "ZA Domain Name Authority", + "za": "South Africa (Republic of)", "zappos": "Amazon Registry Services, Inc.", "zara": "Industria de Diseño Textil, S.A. (INDITEX, S.A.)", "zero": "Amazon Registry Services, Inc.", "zip": "Charleston Road Registry Inc.", "zippo": "Zadco Company", - "zm": "Zambia Information and Communications Technology Authority (ZICTA)", + "zm": "Zambia (Republic of)", "zone": "Binky Moon, LLC", "zuerich": "Kanton Zürich (Canton of Zurich)", - "zw": "Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)" + "zw": "Zimbabwe (Republic of)" } \ No newline at end of file diff --git a/formats/json/tld-info.json b/formats/json/tld-info.json index 38d2379..66f26cb 100644 --- a/formats/json/tld-info.json +++ b/formats/json/tld-info.json @@ -51,7 +51,7 @@ }, { "domain": "ac", - "description": "Network Information Center (AC Domain Registry)\nc/o Cable and Wireless (Ascension Island)", + "description": "Ascension Island", "type": "country-code" }, { @@ -91,7 +91,7 @@ }, { "domain": "ad", - "description": "Andorra Telecom", + "description": "Andorra (Principality of)", "type": "country-code" }, { @@ -111,7 +111,7 @@ }, { "domain": "ae", - "description": "Telecommunication Regulatory Authority (TRA)", + "description": "United Arab Emirates", "type": "country-code" }, { @@ -121,7 +121,7 @@ }, { "domain": "aero", - "description": "Societe Internationale de Telecommunications Aeronautique (SITA INC USA)", + "description": "Air-transport industry", "type": "sponsored" }, { @@ -131,7 +131,7 @@ }, { "domain": "af", - "description": "Ministry of Communications and IT", + "description": "Afghanistan (Islamic Republic of)", "type": "country-code" }, { @@ -151,7 +151,7 @@ }, { "domain": "ag", - "description": "UHSA School of Medicine", + "description": "Antigua and Barbuda", "type": "country-code" }, { @@ -166,7 +166,7 @@ }, { "domain": "ai", - "description": "Government of Anguilla", + "description": "Anguilla", "type": "country-code" }, { @@ -201,7 +201,7 @@ }, { "domain": "al", - "description": "Electronic and Postal Communications Authority - AKEP", + "description": "Albania (Republic of)", "type": "country-code" }, { @@ -246,7 +246,7 @@ }, { "domain": "am", - "description": "\"Internet Society\" Non-governmental Organization", + "description": "Armenia (Republic of)", "type": "country-code" }, { @@ -281,7 +281,7 @@ }, { "domain": "an", - "description": "Retired", + "description": "Netherlands Antilles", "type": "country-code" }, { @@ -306,7 +306,7 @@ }, { "domain": "ao", - "description": "Faculdade de Engenharia da Universidade Agostinho Neto", + "description": "Angola (Republic of)", "type": "country-code" }, { @@ -331,7 +331,7 @@ }, { "domain": "aq", - "description": "Antarctica Network Information Centre Limited", + "description": "Antarctica", "type": "country-code" }, { @@ -341,7 +341,7 @@ }, { "domain": "ar", - "description": "Presidencia de la Nación – Secretaría Legal y Técnica", + "description": "Argentina (Argentine Republic)", "type": "country-code" }, { @@ -366,7 +366,7 @@ }, { "domain": "arpa", - "description": "Internet Architecture Board (IAB)", + "description": "Address and Routing Parameter Area", "type": "infrastructure" }, { @@ -381,7 +381,7 @@ }, { "domain": "as", - "description": "AS Domain Registry", + "description": "American Samoa", "type": "country-code" }, { @@ -391,7 +391,7 @@ }, { "domain": "asia", - "description": "DotAsia Organisation Ltd.", + "description": "Organisations and individuals in the Asia-Pacific region", "type": "sponsored" }, { @@ -401,7 +401,7 @@ }, { "domain": "at", - "description": "nic.at GmbH", + "description": "Austria (Republic of)", "type": "country-code" }, { @@ -416,7 +416,7 @@ }, { "domain": "au", - "description": ".au Domain Administration (auDA)", + "description": "Australia (Commonwealth of)", "type": "country-code" }, { @@ -466,7 +466,7 @@ }, { "domain": "aw", - "description": "SETAR", + "description": "Aruba", "type": "country-code" }, { @@ -476,7 +476,7 @@ }, { "domain": "ax", - "description": "Ålands landskapsregering", + "description": "Åland Islands", "type": "country-code" }, { @@ -486,7 +486,7 @@ }, { "domain": "az", - "description": "IntraNS", + "description": "Azerbaijan (Republic of)", "type": "country-code" }, { @@ -496,7 +496,7 @@ }, { "domain": "ba", - "description": "Universtiy Telinformatic Centre (UTIC)", + "description": "Bosnia and Herzegovina", "type": "country-code" }, { @@ -581,7 +581,7 @@ }, { "domain": "bb", - "description": "Government of Barbados\nMinistry of Economic Affairs and Development\nTelecommunications Unit", + "description": "Barbados", "type": "country-code" }, { @@ -611,12 +611,12 @@ }, { "domain": "bd", - "description": "Posts and Telecommunications Division", + "description": "Bangladesh (People's Republic of)", "type": "country-code" }, { "domain": "be", - "description": "DNS Belgium vzw/asbl", + "description": "Belgium (Kingdom of)", "type": "country-code" }, { @@ -661,17 +661,17 @@ }, { "domain": "bf", - "description": "ARCE-AutoritÈ de RÈgulation des Communications Electroniques", + "description": "Burkina Faso", "type": "country-code" }, { "domain": "bg", - "description": "Register.BG", + "description": "Bulgaria (Republic of)", "type": "country-code" }, { "domain": "bh", - "description": "Telecommunications Regulatory Authority (TRA)", + "description": "Bahrain (Kingdom of)", "type": "country-code" }, { @@ -681,7 +681,7 @@ }, { "domain": "bi", - "description": "Centre National de l'Informatique", + "description": "Burundi (Republic of)", "type": "country-code" }, { @@ -716,17 +716,17 @@ }, { "domain": "biz", - "description": "Neustar, Inc.", + "description": "Business", "type": "generic-restricted" }, { "domain": "bj", - "description": "Benin Telecoms S.A.", + "description": "Benin (Republic of)", "type": "country-code" }, { "domain": "bl", - "description": "Not assigned", + "description": "Saint Barthélemy (Collectivity of) {unassigned - see also: .gp and .fr}", "type": "country-code" }, { @@ -766,7 +766,7 @@ }, { "domain": "bm", - "description": "Registry General Department, Ministry of Home Affairs", + "description": "Bermuda", "type": "country-code" }, { @@ -781,7 +781,7 @@ }, { "domain": "bn", - "description": "Authority for Info-communications Technology Industry of Brunei Darussalam (AITI)", + "description": "Brunei (Nation of Brunei - the Abode of Peace) [Negara Brunei Darussalam]", "type": "country-code" }, { @@ -796,7 +796,7 @@ }, { "domain": "bo", - "description": "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia", + "description": "Bolivia (Plurinational State of)", "type": "country-code" }, { @@ -876,12 +876,12 @@ }, { "domain": "bq", - "description": "Not assigned", + "description": "Caribbean Netherlands [Bonaire - Sint Eustatius and Saba] {unassigned - see also: .an and .nl}", "type": "country-code" }, { "domain": "br", - "description": "Comite Gestor da Internet no Brasil", + "description": "Brazil (Federative Republic of)", "type": "country-code" }, { @@ -916,12 +916,12 @@ }, { "domain": "bs", - "description": "The College of the Bahamas", + "description": "Bahamas (Commonwealth of the)", "type": "country-code" }, { "domain": "bt", - "description": "Ministry of Information and Communications", + "description": "Bhutan (Kingdom of)", "type": "country-code" }, { @@ -961,22 +961,22 @@ }, { "domain": "bv", - "description": "UNINETT Norid A/S", + "description": "Bouvet Island", "type": "country-code" }, { "domain": "bw", - "description": "Botswana Communications Regulatory Authority (BOCRA)", + "description": "Botswana (Republic of)", "type": "country-code" }, { "domain": "by", - "description": "Reliable Software, Ltd.", + "description": "Belarus (Republic of)", "type": "country-code" }, { "domain": "bz", - "description": "University of Belize", + "description": "Belize", "type": "country-code" }, { @@ -986,7 +986,7 @@ }, { "domain": "ca", - "description": "Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI)", + "description": "Canada", "type": "country-code" }, { @@ -1121,7 +1121,7 @@ }, { "domain": "cat", - "description": "Fundacio puntCAT", + "description": "Catalan", "type": "sponsored" }, { @@ -1156,12 +1156,12 @@ }, { "domain": "cc", - "description": "eNIC Cocos (Keeling) Islands Pty.\nLtd. d/b/a Island Internet Services", + "description": "Cocos (Keeling) Islands (Territory of the)", "type": "country-code" }, { "domain": "cd", - "description": "Office Congolais des Postes et Télécommunications - OCPT", + "description": "Congo (Democratic Republic of the) [Congo-Kinshasa]", "type": "country-code" }, { @@ -1186,7 +1186,7 @@ }, { "domain": "cf", - "description": "Societe Centrafricaine de Telecommunications (SOCATEL)", + "description": "Central African Republic", "type": "country-code" }, { @@ -1201,12 +1201,12 @@ }, { "domain": "cg", - "description": "ONPT Congo and Interpoint Switzerland", + "description": "Congo (Republic of) [Congo-Brazzaville]", "type": "country-code" }, { "domain": "ch", - "description": "SWITCH The Swiss Education & Research Network", + "description": "Switzerland (Swiss Confederation)", "type": "country-code" }, { @@ -1271,7 +1271,7 @@ }, { "domain": "ci", - "description": "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)", + "description": "Ivory Coast (Republic of Côte d'Ivoire)", "type": "country-code" }, { @@ -1316,12 +1316,12 @@ }, { "domain": "ck", - "description": "Telecom Cook Islands Ltd.", + "description": "Cook Islands", "type": "country-code" }, { "domain": "cl", - "description": "NIC Chile (University of Chile)", + "description": "Chile (Republic of)", "type": "country-code" }, { @@ -1371,17 +1371,17 @@ }, { "domain": "cm", - "description": "Cameroon Telecommunications (CAMTEL)", + "description": "Cameroon (Republic of)", "type": "country-code" }, { "domain": "cn", - "description": "China Internet Network Information Center (CNNIC)", + "description": "China (People's Republic of)", "type": "country-code" }, { "domain": "co", - "description": ".CO Internet S.A.S.", + "description": "Colombia (Republic of)", "type": "country-code" }, { @@ -1411,7 +1411,7 @@ }, { "domain": "com", - "description": "VeriSign Global Registry Services", + "description": "Commercial organizations", "type": "generic" }, { @@ -1491,7 +1491,7 @@ }, { "domain": "coop", - "description": "DotCooperation LLC", + "description": "Cooperatives", "type": "sponsored" }, { @@ -1521,7 +1521,7 @@ }, { "domain": "cr", - "description": "National Academy of Sciences\nAcademia Nacional de Ciencias", + "description": "Costa Rica (Republic of)", "type": "country-code" }, { @@ -1571,7 +1571,7 @@ }, { "domain": "cu", - "description": "CENIAInternet\nIndustria y San Jose\nCapitolio Nacional", + "description": "Cuba (Republic of)", "type": "country-code" }, { @@ -1581,22 +1581,22 @@ }, { "domain": "cv", - "description": "Agência Nacional das Comunicações (ANAC)", + "description": "Cape Verde (Republic of)", "type": "country-code" }, { "domain": "cw", - "description": "University of Curacao", + "description": "Curaçao (Country of)", "type": "country-code" }, { "domain": "cx", - "description": "Christmas Island Domain Administration Limited", + "description": "Christmas Island (Territory of)", "type": "country-code" }, { "domain": "cy", - "description": "University of Cyprus", + "description": "Cyprus (Republic of)", "type": "country-code" }, { @@ -1611,7 +1611,7 @@ }, { "domain": "cz", - "description": "CZ.NIC, z.s.p.o", + "description": "Czech Republic", "type": "country-code" }, { @@ -1666,7 +1666,7 @@ }, { "domain": "de", - "description": "DENIC eG", + "description": "Germany (Federal Republic of)", "type": "country-code" }, { @@ -1791,17 +1791,17 @@ }, { "domain": "dj", - "description": "Djibouti Telecom S.A", + "description": "Djibouti (Republic of)", "type": "country-code" }, { "domain": "dk", - "description": "Dansk Internet Forum", + "description": "Denmark (Kingdom of)", "type": "country-code" }, { "domain": "dm", - "description": "DotDM Corporation", + "description": "Dominica (Commonwealth of)", "type": "country-code" }, { @@ -1811,7 +1811,7 @@ }, { "domain": "do", - "description": "Pontificia Universidad Catolica Madre y Maestra\nRecinto Santo Tomas de Aquino", + "description": "Dominican Republic", "type": "country-code" }, { @@ -1911,7 +1911,7 @@ }, { "domain": "dz", - "description": "CERIST", + "description": "Algeria (People's Democratic Republic of)", "type": "country-code" }, { @@ -1926,7 +1926,7 @@ }, { "domain": "ec", - "description": "ECUADORDOMAIN S.A.", + "description": "Ecuador (Republic of)", "type": "country-code" }, { @@ -1941,7 +1941,7 @@ }, { "domain": "edu", - "description": "EDUCAUSE", + "description": "Educational establishments", "type": "sponsored" }, { @@ -1951,17 +1951,17 @@ }, { "domain": "ee", - "description": "Eesti Interneti Sihtasutus (EIS)", + "description": "Estonia (Republic of)", "type": "country-code" }, { "domain": "eg", - "description": "Egyptian Universities Network (EUN)\nSupreme Council of Universities", + "description": "Egypt (Arab Republic of)", "type": "country-code" }, { "domain": "eh", - "description": "Not assigned", + "description": "Western Sahara {reserved}", "type": "country-code" }, { @@ -2011,7 +2011,7 @@ }, { "domain": "er", - "description": "Eritrea Telecommunication Services Corporation (EriTel)", + "description": "Eritrea (State of)", "type": "country-code" }, { @@ -2026,7 +2026,7 @@ }, { "domain": "es", - "description": "Red.es", + "description": "Spain (Kingdom of)", "type": "country-code" }, { @@ -2046,7 +2046,7 @@ }, { "domain": "et", - "description": "Ethio telecom", + "description": "Ethiopia (Federal Democratic Republic of)", "type": "country-code" }, { @@ -2056,7 +2056,7 @@ }, { "domain": "eu", - "description": "EURid vzw/asbl", + "description": "European Union", "type": "country-code" }, { @@ -2181,7 +2181,7 @@ }, { "domain": "fi", - "description": "Finnish Communications Regulatory Authority", + "description": "Finland (Republic of)", "type": "country-code" }, { @@ -2256,12 +2256,12 @@ }, { "domain": "fj", - "description": "The University of the South Pacific\nIT Services", + "description": "Fiji (Republic of)", "type": "country-code" }, { "domain": "fk", - "description": "Falkland Islands Government", + "description": "Falkland Islands (Malvinas)", "type": "country-code" }, { @@ -2301,12 +2301,12 @@ }, { "domain": "fm", - "description": "FSM Telecommunications Corporation", + "description": "Micronesia (Federated States of)", "type": "country-code" }, { "domain": "fo", - "description": "FO Council", + "description": "Faroe Islands", "type": "country-code" }, { @@ -2361,7 +2361,7 @@ }, { "domain": "fr", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "France (French Republic)", "type": "country-code" }, { @@ -2436,7 +2436,7 @@ }, { "domain": "ga", - "description": "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)", + "description": "Gabon (Gabonese Republic)", "type": "country-code" }, { @@ -2481,7 +2481,7 @@ }, { "domain": "gb", - "description": "Reserved Domain - IANA", + "description": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", "type": "country-code" }, { @@ -2491,7 +2491,7 @@ }, { "domain": "gd", - "description": "The National Telecommunications Regulatory Commission (NTRC)", + "description": "Grenada", "type": "country-code" }, { @@ -2501,7 +2501,7 @@ }, { "domain": "ge", - "description": "Caucasus Online LLC", + "description": "Georgia", "type": "country-code" }, { @@ -2526,12 +2526,12 @@ }, { "domain": "gf", - "description": "Net Plus", + "description": "French Guiana", "type": "country-code" }, { "domain": "gg", - "description": "Island Networks Ltd.", + "description": "Guernsey (Bailiwick of)", "type": "country-code" }, { @@ -2541,12 +2541,12 @@ }, { "domain": "gh", - "description": "Network Computer Systems Limited", + "description": "Ghana (Republic of)", "type": "country-code" }, { "domain": "gi", - "description": "Sapphire Networks", + "description": "Gibraltar", "type": "country-code" }, { @@ -2571,7 +2571,7 @@ }, { "domain": "gl", - "description": "TELE Greenland A/S", + "description": "Greenland", "type": "country-code" }, { @@ -2601,7 +2601,7 @@ }, { "domain": "gm", - "description": "GM-NIC", + "description": "Gambia (Republic of The)", "type": "country-code" }, { @@ -2626,7 +2626,7 @@ }, { "domain": "gn", - "description": "Centre National des Sciences Halieutiques de Boussoura", + "description": "Guinea (Republic of)", "type": "country-code" }, { @@ -2686,22 +2686,22 @@ }, { "domain": "gov", - "description": "General Services Administration\nAttn: QTDC, 2E08 (.gov Domain Registration)", + "description": "US government", "type": "sponsored" }, { "domain": "gp", - "description": "Networking Technologies Group", + "description": "Guadeloupe", "type": "country-code" }, { "domain": "gq", - "description": "GETESA", + "description": "Equatorial Guinea (Republic of)", "type": "country-code" }, { "domain": "gr", - "description": "ICS-FORTH GR", + "description": "Greece (Hellenic Republic)", "type": "country-code" }, { @@ -2741,17 +2741,17 @@ }, { "domain": "gs", - "description": "Government of South Georgia and South Sandwich Islands (GSGSSI)", + "description": "South Georgia and the South Sandwich Islands", "type": "country-code" }, { "domain": "gt", - "description": "Universidad del Valle de Guatemala", + "description": "Guatemala (Republic of)", "type": "country-code" }, { "domain": "gu", - "description": "University of Guam", + "description": "Guam", "type": "country-code" }, { @@ -2786,12 +2786,12 @@ }, { "domain": "gw", - "description": "Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau", + "description": "Guinea-Bissau (Republic of)", "type": "country-code" }, { "domain": "gy", - "description": "University of Guyana", + "description": "Guyana (Co-operative Republic of)", "type": "country-code" }, { @@ -2886,7 +2886,7 @@ }, { "domain": "hk", - "description": "Hong Kong Internet Registration Corporation Ltd.", + "description": "Hong Kong (Hong Kong Special Administrative Region of the People's Republic of China)", "type": "country-code" }, { @@ -2896,12 +2896,12 @@ }, { "domain": "hm", - "description": "HM Domain Registry", + "description": "Heard Island and McDonald Islands", "type": "country-code" }, { "domain": "hn", - "description": "Red de Desarrollo Sostenible Honduras", + "description": "Honduras (Republic of)", "type": "country-code" }, { @@ -3001,7 +3001,7 @@ }, { "domain": "hr", - "description": "CARNet - Croatian Academic and Research Network", + "description": "Croatia (Republic of)", "type": "country-code" }, { @@ -3011,7 +3011,7 @@ }, { "domain": "ht", - "description": "Consortium FDS/RDDH", + "description": "Haiti (Republic of)", "type": "country-code" }, { @@ -3021,7 +3021,7 @@ }, { "domain": "hu", - "description": "Council of Hungarian Internet Providers (CHIP)", + "description": "Hungary", "type": "country-code" }, { @@ -3061,12 +3061,12 @@ }, { "domain": "id", - "description": "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)", + "description": "Indonesia (Republic of)", "type": "country-code" }, { "domain": "ie", - "description": "University College Dublin\nComputing Services\nComputer Centre", + "description": "Ireland (Republic of)", "type": "country-code" }, { @@ -3091,12 +3091,12 @@ }, { "domain": "il", - "description": "Internet Society of Israel", + "description": "Israel (State of)", "type": "country-code" }, { "domain": "im", - "description": "Isle of Man Government", + "description": "Isle of Man", "type": "country-code" }, { @@ -3121,7 +3121,7 @@ }, { "domain": "in", - "description": "National Internet Exchange of India", + "description": "India (Republic of)", "type": "country-code" }, { @@ -3136,7 +3136,7 @@ }, { "domain": "info", - "description": "Afilias Limited", + "description": "Informational sites", "type": "generic" }, { @@ -3166,7 +3166,7 @@ }, { "domain": "int", - "description": "Internet Assigned Numbers Authority", + "description": "International treaty-based organizations", "type": "sponsored" }, { @@ -3191,7 +3191,7 @@ }, { "domain": "io", - "description": "IO Top Level Domain Registry\nCable and Wireless", + "description": "British Indian Ocean Territory", "type": "country-code" }, { @@ -3201,12 +3201,12 @@ }, { "domain": "iq", - "description": "Communications and Media Commission (CMC)", + "description": "Iraq (Republic of)", "type": "country-code" }, { "domain": "ir", - "description": "Institute for Research in Fundamental Sciences", + "description": "Iran (Islamic Republic of)", "type": "country-code" }, { @@ -3216,7 +3216,7 @@ }, { "domain": "is", - "description": "ISNIC - Internet Iceland ltd.", + "description": "Iceland", "type": "country-code" }, { @@ -3241,7 +3241,7 @@ }, { "domain": "it", - "description": "IIT - CNR", + "description": "Italy (Italian Republic)", "type": "country-code" }, { @@ -3286,7 +3286,7 @@ }, { "domain": "je", - "description": "Island Networks (Jersey) Ltd.", + "description": "Jersey (Bailiwick of)", "type": "country-code" }, { @@ -3321,7 +3321,7 @@ }, { "domain": "jm", - "description": "University of West Indies", + "description": "Jamaica (Commonwealth of)", "type": "country-code" }, { @@ -3336,12 +3336,12 @@ }, { "domain": "jo", - "description": "National Information Technology Center (NITC)", + "description": "Jordan (Hashemite Kingdom of)", "type": "country-code" }, { "domain": "jobs", - "description": "Employ Media LLC", + "description": "Employment-related sites", "type": "sponsored" }, { @@ -3361,7 +3361,7 @@ }, { "domain": "jp", - "description": "Japan Registry Services Co., Ltd.", + "description": "Japan", "type": "country-code" }, { @@ -3396,7 +3396,7 @@ }, { "domain": "ke", - "description": "Kenya Network Information Center (KeNIC)", + "description": "Kenya (Republic of)", "type": "country-code" }, { @@ -3421,17 +3421,17 @@ }, { "domain": "kg", - "description": "AsiaInfo Telecommunication Enterprise", + "description": "Kyrgyzstan (Kyrgyz Republic)", "type": "country-code" }, { "domain": "kh", - "description": "Telecommunication Regulator of Cambodia (TRC)", + "description": "Cambodia (Kingdom of)", "type": "country-code" }, { "domain": "ki", - "description": "Ministry of Communications, Transport, and Tourism Development", + "description": "Kiribati (Republic of)", "type": "country-code" }, { @@ -3466,12 +3466,12 @@ }, { "domain": "km", - "description": "Comores Telecom", + "description": "Comoros (Union of the)", "type": "country-code" }, { "domain": "kn", - "description": "Ministry of Finance, Sustainable Development Information & Technology", + "description": "Saint Kitts and Nevis (Federation of)", "type": "country-code" }, { @@ -3491,7 +3491,7 @@ }, { "domain": "kp", - "description": "Star Joint Venture Company", + "description": "Korea (Democratic People's Republic of) [North Korea]", "type": "country-code" }, { @@ -3506,7 +3506,7 @@ }, { "domain": "kr", - "description": "Korea Internet & Security Agency (KISA)", + "description": "Korea (Republic of) [South Korea]", "type": "country-code" }, { @@ -3526,12 +3526,12 @@ }, { "domain": "kw", - "description": "Communications and Information Technology Regulatory Authority", + "description": "Kuwait (State of Kuwait)", "type": "country-code" }, { "domain": "ky", - "description": "Utility Regulation and Competition Office (OfReg)", + "description": "Cayman Islands", "type": "country-code" }, { @@ -3541,12 +3541,12 @@ }, { "domain": "kz", - "description": "Association of IT Companies of Kazakhstan", + "description": "Kazakhstan (Republic of)", "type": "country-code" }, { "domain": "la", - "description": "Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications", + "description": "Laos (Lao People's Democratic Republic)", "type": "country-code" }, { @@ -3631,12 +3631,12 @@ }, { "domain": "lb", - "description": "American University of Beirut\nComputing and Networking Services", + "description": "Lebanon (Lebanese Republic)", "type": "country-code" }, { "domain": "lc", - "description": "University of Puerto Rico", + "description": "Saint Lucia", "type": "country-code" }, { @@ -3681,7 +3681,7 @@ }, { "domain": "li", - "description": "SWITCH The Swiss Education & Research Network", + "description": "Liechtenstein (Principality of)", "type": "country-code" }, { @@ -3771,7 +3771,7 @@ }, { "domain": "lk", - "description": "Council for Information Technology\nLK Domain Registrar", + "description": "Sri Lanka (Democratic Socialist Republic of)", "type": "country-code" }, { @@ -3841,17 +3841,17 @@ }, { "domain": "lr", - "description": "Data Technology Solutions, Inc.", + "description": "Liberia (Republic of)", "type": "country-code" }, { "domain": "ls", - "description": "National University of Lesotho", + "description": "Lesotho (Kingdom of)", "type": "country-code" }, { "domain": "lt", - "description": "Kaunas University of Technology", + "description": "Lithuania (Republic of)", "type": "country-code" }, { @@ -3866,7 +3866,7 @@ }, { "domain": "lu", - "description": "RESTENA", + "description": "Luxembourg (Grand Duchy of)", "type": "country-code" }, { @@ -3891,17 +3891,17 @@ }, { "domain": "lv", - "description": "University of Latvia\nInstitute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)", + "description": "Latvia (Republic of)", "type": "country-code" }, { "domain": "ly", - "description": "General Post and Telecommunication Company", + "description": "Libya", "type": "country-code" }, { "domain": "ma", - "description": "Agence Nationale de Réglementation des Télécommunications (ANRT)", + "description": "Morocco", "type": "country-code" }, { @@ -3991,7 +3991,7 @@ }, { "domain": "mc", - "description": "Gouvernement de Monaco\nDirection des Communications Electroniques", + "description": "Monaco (Principality of)", "type": "country-code" }, { @@ -4011,12 +4011,12 @@ }, { "domain": "md", - "description": "MoldData S.E.", + "description": "Moldova (Republic of)", "type": "country-code" }, { "domain": "me", - "description": "Government of Montenegro", + "description": "Montenegro", "type": "country-code" }, { @@ -4076,17 +4076,17 @@ }, { "domain": "mf", - "description": "Not assigned", + "description": "Saint Martin (Collectivity of) {unassigned - see also: .gp and .fr}", "type": "country-code" }, { "domain": "mg", - "description": "NIC-MG (Network Information Center Madagascar)", + "description": "Madagascar (Republic of)", "type": "country-code" }, { "domain": "mh", - "description": "Office of the Cabinet", + "description": "Marshall Islands (Republic of the)", "type": "country-code" }, { @@ -4101,7 +4101,7 @@ }, { "domain": "mil", - "description": "DoD Network Information Center", + "description": "US military", "type": "sponsored" }, { @@ -4126,12 +4126,12 @@ }, { "domain": "mk", - "description": "Macedonian Academic Research Network Skopje", + "description": "Macedonia (Republic of)", "type": "country-code" }, { "domain": "ml", - "description": "Agence des Technologies de l’Information et de la Communication", + "description": "Mali (Republic of)", "type": "country-code" }, { @@ -4146,7 +4146,7 @@ }, { "domain": "mm", - "description": "Ministry of Communications, Posts & Telegraphs", + "description": "Myanmar (Republic of the Union of) [Burma]", "type": "country-code" }, { @@ -4156,17 +4156,17 @@ }, { "domain": "mn", - "description": "Datacom Co., Ltd.", + "description": "Mongolia", "type": "country-code" }, { "domain": "mo", - "description": "Macao Post and Telecommunications Bureau (CTT)", + "description": "Macau (Macau Special Administrative Region of the People's Republic of China) [Macao]", "type": "country-code" }, { "domain": "mobi", - "description": "Afilias Technologies Limited dba dotMobi", + "description": "Mobile", "type": "generic" }, { @@ -4266,22 +4266,22 @@ }, { "domain": "mp", - "description": "Saipan Datacom, Inc.", + "description": "Northern Mariana Islands (Commonwealth of the)", "type": "country-code" }, { "domain": "mq", - "description": "MEDIASERV", + "description": "Martinique", "type": "country-code" }, { "domain": "mr", - "description": "Université de Nouakchott Al Aasriya", + "description": "Mauritania (Islamic Republic of)", "type": "country-code" }, { "domain": "ms", - "description": "MNI Networks Ltd.", + "description": "Montserrat", "type": "country-code" }, { @@ -4291,7 +4291,7 @@ }, { "domain": "mt", - "description": "NIC (Malta)", + "description": "Malta (Republic of)", "type": "country-code" }, { @@ -4311,12 +4311,12 @@ }, { "domain": "mu", - "description": "Internet Direct Ltd", + "description": "Mauritius (Republic of)", "type": "country-code" }, { "domain": "museum", - "description": "Museum Domain Management Association", + "description": "Museums", "type": "sponsored" }, { @@ -4331,32 +4331,32 @@ }, { "domain": "mv", - "description": "Dhiraagu Pvt. Ltd. (DHIVEHINET)", + "description": "Maldives (Republic of)", "type": "country-code" }, { "domain": "mw", - "description": "Malawi Sustainable Development Network Programme\n(Malawi SDNP)", + "description": "Malawi (Republic of)", "type": "country-code" }, { "domain": "mx", - "description": "NIC-Mexico\nITESM - Campus Monterrey", + "description": "Mexico (United Mexican States)", "type": "country-code" }, { "domain": "my", - "description": "MYNIC Berhad", + "description": "Malaysia", "type": "country-code" }, { "domain": "mz", - "description": "Centro de Informatica de Universidade Eduardo Mondlane", + "description": "Mozambique (Republic of)", "type": "country-code" }, { "domain": "na", - "description": "Namibian Network Information Center", + "description": "Namibia (Republic of)", "type": "country-code" }, { @@ -4376,7 +4376,7 @@ }, { "domain": "name", - "description": "VeriSign Information Services, Inc.", + "description": "Individuals", "type": "generic-restricted" }, { @@ -4401,12 +4401,12 @@ }, { "domain": "nc", - "description": "Office des Postes et Telecommunications", + "description": "New Caledonia", "type": "country-code" }, { "domain": "ne", - "description": "SONITEL", + "description": "Niger (Republic of)", "type": "country-code" }, { @@ -4416,7 +4416,7 @@ }, { "domain": "net", - "description": "VeriSign Global Registry Services", + "description": "Network", "type": "generic" }, { @@ -4471,7 +4471,7 @@ }, { "domain": "nf", - "description": "Norfolk Island Data Services", + "description": "Norfolk Island (Territory of)", "type": "country-code" }, { @@ -4481,7 +4481,7 @@ }, { "domain": "ng", - "description": "Nigeria Internet Registration Association", + "description": "Nigeria (Federal Republic of)", "type": "country-code" }, { @@ -4496,7 +4496,7 @@ }, { "domain": "ni", - "description": "Universidad Nacional del Ingernieria\nCentro de Computo", + "description": "Nicaragua (Republic of)", "type": "country-code" }, { @@ -4531,12 +4531,12 @@ }, { "domain": "nl", - "description": "SIDN (Stichting Internet Domeinregistratie Nederland)", + "description": "Netherlands", "type": "country-code" }, { "domain": "no", - "description": "UNINETT Norid A/S", + "description": "Norway (Kingdom of)", "type": "country-code" }, { @@ -4571,12 +4571,12 @@ }, { "domain": "np", - "description": "Mercantile Communications Pvt. Ltd.", + "description": "Nepal (Federal Democratic Republic of)", "type": "country-code" }, { "domain": "nr", - "description": "CENPAC NET", + "description": "Nauru (Republic of)", "type": "country-code" }, { @@ -4596,7 +4596,7 @@ }, { "domain": "nu", - "description": "The IUSN Foundation", + "description": "Niue", "type": "country-code" }, { @@ -4606,7 +4606,7 @@ }, { "domain": "nz", - "description": "InternetNZ", + "description": "New Zealand", "type": "country-code" }, { @@ -4656,7 +4656,7 @@ }, { "domain": "om", - "description": "Telecommunications Regulatory Authority (TRA)", + "description": "Oman (Sultanate of)", "type": "country-code" }, { @@ -4711,7 +4711,7 @@ }, { "domain": "org", - "description": "Public Interest Registry (PIR)", + "description": "Non-profit organizations", "type": "generic" }, { @@ -4751,7 +4751,7 @@ }, { "domain": "pa", - "description": "Universidad Tecnologica de Panama", + "description": "Panama (Republic of)", "type": "country-code" }, { @@ -4816,7 +4816,7 @@ }, { "domain": "pe", - "description": "Red Cientifica Peruana", + "description": "Peru (Republic of)", "type": "country-code" }, { @@ -4826,7 +4826,7 @@ }, { "domain": "pf", - "description": "Gouvernement de la Polynésie française", + "description": "French Polynesia and Clipperton Island", "type": "country-code" }, { @@ -4836,12 +4836,12 @@ }, { "domain": "pg", - "description": "PNG DNS Administration\nVice Chancellors Office\nThe Papua New Guinea University of Technology", + "description": "Papua New Guinea (Independent State of)", "type": "country-code" }, { "domain": "ph", - "description": "PH Domain Foundation", + "description": "Philippines (Republic of the)", "type": "country-code" }, { @@ -4936,12 +4936,12 @@ }, { "domain": "pk", - "description": "PKNIC", + "description": "Pakistan (Islamic Republic of)", "type": "country-code" }, { "domain": "pl", - "description": "Research and Academic Computer Network", + "description": "Poland (Republic of)", "type": "country-code" }, { @@ -4971,12 +4971,12 @@ }, { "domain": "pm", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Saint Pierre and Miquelon", "type": "country-code" }, { "domain": "pn", - "description": "Pitcairn Island Administration", + "description": "Pitcairn Islands (Pitcairn - Henderson - Ducie and Oeno Islands)", "type": "country-code" }, { @@ -5011,7 +5011,7 @@ }, { "domain": "pr", - "description": "Gauss Research Laboratory Inc.", + "description": "Puerto Rico (Commonwealth of)", "type": "country-code" }, { @@ -5036,7 +5036,7 @@ }, { "domain": "pro", - "description": "Registry Services Corporation\ndba RegistryPro", + "description": "Profession", "type": "generic-restricted" }, { @@ -5091,12 +5091,12 @@ }, { "domain": "ps", - "description": "Ministry Of Telecommunications &\nInformation Technology,\nGovernment Computer Center.", + "description": "Palestine (State of)", "type": "country-code" }, { "domain": "pt", - "description": "Associação DNS.PT", + "description": "Portugal (Portuguese Republic)", "type": "country-code" }, { @@ -5106,7 +5106,7 @@ }, { "domain": "pw", - "description": "Micronesia Investment and Development Corporation", + "description": "Palau (Republic of)", "type": "country-code" }, { @@ -5116,12 +5116,12 @@ }, { "domain": "py", - "description": "NIC-PY", + "description": "Paraguay (Republic of)", "type": "country-code" }, { "domain": "qa", - "description": "Communications Regulatory Authority", + "description": "Qatar (State of)", "type": "country-code" }, { @@ -5161,7 +5161,7 @@ }, { "domain": "re", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Réunion", "type": "country-code" }, { @@ -5326,7 +5326,7 @@ }, { "domain": "ro", - "description": "National Institute for R&D in Informatics", + "description": "Romania", "type": "country-code" }, { @@ -5356,7 +5356,7 @@ }, { "domain": "rs", - "description": "Serbian National Internet Domain Registry (RNIDS)", + "description": "Serbia (Republic of)", "type": "country-code" }, { @@ -5366,7 +5366,7 @@ }, { "domain": "ru", - "description": "Coordination Center for TLD RU", + "description": "Russia (Russian Federation)", "type": "country-code" }, { @@ -5386,7 +5386,7 @@ }, { "domain": "rw", - "description": "Rwanda Information Communication and Technology Association (RICTA)", + "description": "Rwanda (Republic of)", "type": "country-code" }, { @@ -5401,7 +5401,7 @@ }, { "domain": "sa", - "description": "Communications and Information Technology Commission", + "description": "Saudi Arabia (Kingdom of)", "type": "country-code" }, { @@ -5491,7 +5491,7 @@ }, { "domain": "sb", - "description": "Solomon Telekom Company Limited", + "description": "Solomon Islands", "type": "country-code" }, { @@ -5506,7 +5506,7 @@ }, { "domain": "sc", - "description": "VCS Pty Ltd", + "description": "Seychelles (Republic of)", "type": "country-code" }, { @@ -5571,12 +5571,12 @@ }, { "domain": "sd", - "description": "Sudan Internet Society", + "description": "Sudan (Republic of)", "type": "country-code" }, { "domain": "se", - "description": "The Internet Infrastructure Foundation", + "description": "Sweden (Kingdom of)", "type": "country-code" }, { @@ -5651,12 +5651,12 @@ }, { "domain": "sg", - "description": "Singapore Network Information Centre (SGNIC) Pte Ltd", + "description": "Singapore (Republic of)", "type": "country-code" }, { "domain": "sh", - "description": "Government of St. Helena", + "description": "Saint Helena", "type": "country-code" }, { @@ -5726,7 +5726,7 @@ }, { "domain": "si", - "description": "Academic and Research Network of Slovenia (ARNES)", + "description": "Slovenia (Republic of)", "type": "country-code" }, { @@ -5751,12 +5751,12 @@ }, { "domain": "sj", - "description": "UNINETT Norid A/S", + "description": "Svalbard and Jan Mayen {not in use - see also: .no}", "type": "country-code" }, { "domain": "sk", - "description": "SK-NIC, a.s.", + "description": "Slovakia (Slovak Republic)", "type": "country-code" }, { @@ -5781,7 +5781,7 @@ }, { "domain": "sl", - "description": "Sierratel", + "description": "Sierra Leone (Republic of)", "type": "country-code" }, { @@ -5791,7 +5791,7 @@ }, { "domain": "sm", - "description": "Telecom Italia San Marino S.p.A.", + "description": "San Marino (Republic of)", "type": "country-code" }, { @@ -5806,7 +5806,7 @@ }, { "domain": "sn", - "description": "Universite Cheikh Anta Diop\nNIC Senegal", + "description": "Senegal (Republic of)", "type": "country-code" }, { @@ -5816,7 +5816,7 @@ }, { "domain": "so", - "description": "Ministry of Post and Telecommunications", + "description": "Somalia (Federal Republic of)", "type": "country-code" }, { @@ -5896,7 +5896,7 @@ }, { "domain": "sr", - "description": "Telesur", + "description": "Suriname (Republic of)", "type": "country-code" }, { @@ -5911,12 +5911,12 @@ }, { "domain": "ss", - "description": "Not assigned", + "description": "South Sudan (Republic of)", "type": "country-code" }, { "domain": "st", - "description": "Tecnisys", + "description": "São Tomé and Príncipe (Democratic Republic of)", "type": "country-code" }, { @@ -6001,7 +6001,7 @@ }, { "domain": "su", - "description": "Russian Institute for Development of Public Networks\n(ROSNIIROS)", + "description": "Soviet Union (Union of Soviet Socialist Republics)", "type": "country-code" }, { @@ -6041,7 +6041,7 @@ }, { "domain": "sv", - "description": "SVNet", + "description": "El Salvador (Republic of)", "type": "country-code" }, { @@ -6061,12 +6061,12 @@ }, { "domain": "sx", - "description": "SX Registry SA B.V.", + "description": "Sint Maarten", "type": "country-code" }, { "domain": "sy", - "description": "National Agency for Network Services (NANS)", + "description": "Syria (Syrian Arab Republic)", "type": "country-code" }, { @@ -6086,7 +6086,7 @@ }, { "domain": "sz", - "description": "University of Swaziland\nDepartment of Computer Science", + "description": "Swaziland (Kingdom of)", "type": "country-code" }, { @@ -6141,7 +6141,7 @@ }, { "domain": "tc", - "description": "Melrex TC", + "description": "Turks and Caicos Islands", "type": "country-code" }, { @@ -6151,7 +6151,7 @@ }, { "domain": "td", - "description": "l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC)", + "description": "Chad (Republic of)", "type": "country-code" }, { @@ -6176,7 +6176,7 @@ }, { "domain": "tel", - "description": "Telnames Ltd.", + "description": "Telephone", "type": "sponsored" }, { @@ -6206,17 +6206,17 @@ }, { "domain": "tf", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "French Southern and Antarctic Lands (Territory of the)", "type": "country-code" }, { "domain": "tg", - "description": "Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P)", + "description": "Togo (Togolese Republic)", "type": "country-code" }, { "domain": "th", - "description": "Thai Network Information Center Foundation", + "description": "Thailand (Kingdom of)", "type": "country-code" }, { @@ -6271,7 +6271,7 @@ }, { "domain": "tj", - "description": "Information Technology Center", + "description": "Tajikistan (Republic of)", "type": "country-code" }, { @@ -6286,7 +6286,7 @@ }, { "domain": "tk", - "description": "Telecommunication Tokelau Corporation (Teletok)", + "description": "Tokelau", "type": "country-code" }, { @@ -6296,12 +6296,12 @@ }, { "domain": "tl", - "description": "Autoridade Nacional de Comunicações", + "description": "Timor-Leste (Democratic Republic of) [East Timor]", "type": "country-code" }, { "domain": "tm", - "description": "TM Domain Registry Ltd", + "description": "Turkmenistan", "type": "country-code" }, { @@ -6311,12 +6311,12 @@ }, { "domain": "tn", - "description": "Agence Tunisienne d'Internet", + "description": "Tunisia (Republic of)", "type": "country-code" }, { "domain": "to", - "description": "Government of the Kingdom of Tonga\nH.R.H. Crown Prince Tupouto'a\nc/o Consulate of Tonga", + "description": "Tonga (Kingdom of)", "type": "country-code" }, { @@ -6376,12 +6376,12 @@ }, { "domain": "tp", - "description": "Retired", + "description": "Timor-Leste (Democratic Republic of) [East Timor] {being phased out - also see: .tl}", "type": "country-code" }, { "domain": "tr", - "description": "Middle East Technical University\nDepartment of Computer Engineering", + "description": "Turkey (Republic of)", "type": "country-code" }, { @@ -6401,7 +6401,7 @@ }, { "domain": "travel", - "description": "Dog\tBeach, LLC", + "description": "Travel", "type": "sponsored" }, { @@ -6431,7 +6431,7 @@ }, { "domain": "tt", - "description": "University of the West Indies\nFaculty of Engineering", + "description": "Trinidad and Tobago (Republic of)", "type": "country-code" }, { @@ -6456,7 +6456,7 @@ }, { "domain": "tv", - "description": "Ministry of Finance and Tourism", + "description": "Tuvalu", "type": "country-code" }, { @@ -6466,17 +6466,17 @@ }, { "domain": "tw", - "description": "Taiwan Network Information Center (TWNIC)", + "description": "Taiwan (Republic of China)", "type": "country-code" }, { "domain": "tz", - "description": "Tanzania Network Information Centre (tzNIC)", + "description": "Tanzania (United Republic of)", "type": "country-code" }, { "domain": "ua", - "description": "Hostmaster Ltd.", + "description": "Ukraine", "type": "country-code" }, { @@ -6496,17 +6496,17 @@ }, { "domain": "ug", - "description": "Uganda Online Ltd.", + "description": "Uganda (Republic of)", "type": "country-code" }, { "domain": "uk", - "description": "Nominet UK", + "description": "United Kingdom (United Kingdom of Great Britain and Northern Ireland)", "type": "country-code" }, { "domain": "um", - "description": "Not assigned", + "description": "United States Minor Outlying Islands {formerly - retired 2010 - see also: .us}", "type": "country-code" }, { @@ -6536,22 +6536,22 @@ }, { "domain": "us", - "description": "NeuStar, Inc.", + "description": "United States of America and United States Minor Outlying Islands", "type": "country-code" }, { "domain": "uy", - "description": "SeCIU - Universidad de la Republica", + "description": "Uruguay (Oriental Republic of)", "type": "country-code" }, { "domain": "uz", - "description": "Computerization and Information Technologies Developing Center\nUZINFOCOM", + "description": "Uzbekistan (Republic of)", "type": "country-code" }, { "domain": "va", - "description": "Holy See - Vatican City State", + "description": "Vatican City (Vatican City State)", "type": "country-code" }, { @@ -6571,12 +6571,12 @@ }, { "domain": "vc", - "description": "Ministry of Telecommunications, Science, Technology and Industry", + "description": "Saint Vincent and the Grenadines", "type": "country-code" }, { "domain": "ve", - "description": "Comisión Nacional de Telecomunicaciones (CONATEL)", + "description": "Venezuela (Bolivarian Republic of)", "type": "country-code" }, { @@ -6606,12 +6606,12 @@ }, { "domain": "vg", - "description": "Telecommunications Regulatory Commission of the Virgin Islands", + "description": "British Virgin Islands (Virgin Islands)", "type": "country-code" }, { "domain": "vi", - "description": "Virgin Islands Public Telecommunications System, Inc.", + "description": "United States Virgin Islands (United States Virgin Islands)", "type": "country-code" }, { @@ -6691,7 +6691,7 @@ }, { "domain": "vn", - "description": "Ministry of Information and Communications of Socialist Republic of Viet Nam", + "description": "Vietnam (Socialist Republic of)", "type": "country-code" }, { @@ -6731,7 +6731,7 @@ }, { "domain": "vu", - "description": "Telecom Vanuatu Limited", + "description": "Vanuatu (Republic of)", "type": "country-code" }, { @@ -6826,7 +6826,7 @@ }, { "domain": "wf", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Wallis and Futuna (Territory of the Wallis and Futuna Islands)", "type": "country-code" }, { @@ -6906,7 +6906,7 @@ }, { "domain": "ws", - "description": "Government of Samoa Ministry of Foreign Affairs & Trade", + "description": "Samoa (Independent State of)", "type": "country-code" }, { @@ -7766,7 +7766,7 @@ }, { "domain": "xxx", - "description": "ICM Registry LLC", + "description": "Adult entertainment", "type": "sponsored" }, { @@ -7796,7 +7796,7 @@ }, { "domain": "ye", - "description": "TeleYemen", + "description": "Yemen (Republic of)", "type": "country-code" }, { @@ -7826,7 +7826,7 @@ }, { "domain": "yt", - "description": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)", + "description": "Mayotte (Department of)", "type": "country-code" }, { @@ -7836,7 +7836,7 @@ }, { "domain": "za", - "description": "ZA Domain Name Authority", + "description": "South Africa (Republic of)", "type": "country-code" }, { @@ -7866,7 +7866,7 @@ }, { "domain": "zm", - "description": "Zambia Information and Communications Technology Authority (ZICTA)", + "description": "Zambia (Republic of)", "type": "country-code" }, { @@ -7881,7 +7881,7 @@ }, { "domain": "zw", - "description": "Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ)", + "description": "Zimbabwe (Republic of)", "type": "country-code" } ] \ No newline at end of file diff --git a/formats/php/TldEnum/TldDesc.php b/formats/php/TldEnum/TldDesc.php index 657d957..f9ebf6d 100644 --- a/formats/php/TldEnum/TldDesc.php +++ b/formats/php/TldEnum/TldDesc.php @@ -13,8 +13,7 @@ class TldDesc { 'able' => 'Able Inc.', 'abogado' => 'Top Level Domain Holdings Limited', 'abudhabi' => 'Abu Dhabi Systems and Information Centre', - 'ac' => 'Network Information Center [AC Domain Registry] -c/o Cable and Wireless [Ascension Island]', + 'ac' => 'Ascension Island', 'academy' => 'Binky Moon, LLC', 'accenture' => 'Accenture plc', 'accountant' => 'dot Accountant Limited', @@ -22,29 +21,29 @@ c/o Cable and Wireless [Ascension Island]', 'aco' => 'ACO Severin Ahlmann GmbH & Co. KG', 'active' => 'Active Network, LLC', 'actor' => 'United TLD Holdco Ltd.', - 'ad' => 'Andorra Telecom', + 'ad' => 'Andorra [Principality of]', 'adac' => 'Allgemeiner Deutscher Automobil-Club e.V. [ADAC]', 'ads' => 'Charleston Road Registry Inc.', 'adult' => 'ICM Registry AD LLC', - 'ae' => 'Telecommunication Regulatory Authority [TRA]', + 'ae' => 'United Arab Emirates', 'aeg' => 'Aktiebolaget Electrolux', - 'aero' => 'Societe Internationale de Telecommunications Aeronautique [SITA INC USA]', + 'aero' => 'Air-transport industry', 'aetna' => 'Aetna Life Insurance Company', - 'af' => 'Ministry of Communications and IT', + 'af' => 'Afghanistan [Islamic Republic of]', 'afamilycompany' => 'Johnson Shareholdings, Inc.', 'afl' => 'Australian Football League', 'africa' => 'ZA Central Registry NPC trading as Registry.Africa', - 'ag' => 'UHSA School of Medicine', + 'ag' => 'Antigua and Barbuda', 'agakhan' => 'Fondation Aga Khan [Aga Khan Foundation]', 'agency' => 'Binky Moon, LLC', - 'ai' => 'Government of Anguilla', + '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' => 'Electronic and Postal Communications Authority - AKEP', + 'al' => 'Albania [Republic of]', 'alfaromeo' => 'Fiat Chrysler Automobiles N.V.', 'alibaba' => 'Alibaba Group Holding Limited', 'alipay' => 'Alibaba Group Holding Limited', @@ -53,41 +52,41 @@ c/o Cable and Wireless [Ascension Island]', 'ally' => 'Ally Financial Inc.', 'alsace' => 'REGION GRAND EST', 'alstom' => 'ALSTOM', - 'am' => '"Internet Society" Non-governmental Organization', + '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' => 'Retired', + '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' => 'Faculdade de Engenharia da Universidade Agostinho Neto', + 'ao' => 'Angola [Republic of]', 'aol' => 'OATH Inc.', 'apartments' => 'Binky Moon, LLC', 'app' => 'Charleston Road Registry Inc.', 'apple' => 'Apple Inc.', - 'aq' => 'Antarctica Network Information Centre Limited', + 'aq' => 'Antarctica', 'aquarelle' => 'Aquarelle.com', - 'ar' => 'Presidencia de la Nación – Secretaría Legal y Técnica', + 'ar' => 'Argentina [Argentine Republic]', 'arab' => 'League of Arab States', 'aramco' => 'Aramco Services Company', 'archi' => 'STARTING DOT LIMITED', 'army' => 'United TLD Holdco Ltd.', - 'arpa' => 'Internet Architecture Board [IAB]', + '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' => 'AS Domain Registry', + 'as' => 'American Samoa', 'asda' => 'Wal-Mart Stores, Inc.', - 'asia' => 'DotAsia Organisation Ltd.', + 'asia' => 'Organisations and individuals in the Asia-Pacific region', 'associates' => 'Binky Moon, LLC', - 'at' => 'nic.at GmbH', + 'at' => 'Austria [Republic of]', 'athleta' => 'The Gap, Inc.', 'attorney' => 'United TLD Holdco, Ltd', - 'au' => '.au Domain Administration [auDA]', + 'au' => 'Australia [Commonwealth of]', 'auction' => 'United TLD HoldCo, Ltd.', 'audi' => 'AUDI Aktiengesellschaft', 'audible' => 'Amazon Registry Services, Inc.', @@ -97,13 +96,13 @@ c/o Cable and Wireless [Ascension Island]', 'auto' => 'Cars Registry Limited', 'autos' => 'DERAutos, LLC', 'avianca' => 'Aerovias del Continente Americano S.A. Avianca', - 'aw' => 'SETAR', + 'aw' => 'Aruba', 'aws' => 'Amazon Registry Services, Inc.', - 'ax' => 'Ålands landskapsregering', + 'ax' => 'Åland Islands', 'axa' => 'AXA SA', - 'az' => 'IntraNS', + 'az' => 'Azerbaijan [Republic of]', 'azure' => 'Microsoft Corporation', - 'ba' => 'Universtiy Telinformatic Centre [UTIC]', + 'ba' => 'Bosnia and Herzegovina', 'baby' => 'Johnson & Johnson Services, Inc.', 'baidu' => 'Baidu, Inc.', 'banamex' => 'Citigroup Inc.', @@ -120,16 +119,14 @@ c/o Cable and Wireless [Ascension Island]', 'basketball' => 'Fédération Internationale de Basketball [FIBA]', 'bauhaus' => 'Werkhaus GmbH', 'bayern' => 'Bayern Connect GmbH', - 'bb' => 'Government of Barbados -Ministry of Economic Affairs and Development -Telecommunications Unit', + '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' => 'Posts and Telecommunications Division', - 'be' => 'DNS Belgium vzw/asbl', + 'bd' => 'Bangladesh [People\'s Republic of]', + 'be' => 'Belgium [Kingdom of]', 'beats' => 'Beats Electronics, LLC', 'beauty' => 'L\'Oréal', 'beer' => 'Top Level Domain Holdings Limited', @@ -138,20 +135,20 @@ Telecommunications Unit', 'best' => 'BestTLD Pty Ltd', 'bestbuy' => 'BBY Solutions, Inc.', 'bet' => 'Afilias plc', - 'bf' => 'ARCE-AutoritÈ de RÈgulation des Communications Electroniques', - 'bg' => 'Register.BG', - 'bh' => 'Telecommunications Regulatory Authority [TRA]', + 'bf' => 'Burkina Faso', + 'bg' => 'Bulgaria [Republic of]', + 'bh' => 'Bahrain [Kingdom of]', 'bharti' => 'Bharti Enterprises [Holding] Private Limited', - 'bi' => 'Centre National de l\'Informatique', + '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' => 'Neustar, Inc.', - 'bj' => 'Benin Telecoms S.A.', - 'bl' => 'Not assigned', + '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', @@ -159,13 +156,13 @@ Telecommunications Unit', 'blog' => 'Knock Knock WHOIS There, LLC', 'bloomberg' => 'Bloomberg IP Holdings LLC', 'blue' => 'Afilias plc', - 'bm' => 'Registry General Department, Ministry of Home Affairs', + 'bm' => 'Bermuda', 'bms' => 'Bristol-Myers Squibb Company', 'bmw' => 'Bayerische Motoren Werke Aktiengesellschaft', - 'bn' => 'Authority for Info-communications Technology Industry of Brunei Darussalam [AITI]', + 'bn' => 'Brunei [Nation of Brunei - the Abode of Peace] [Negara Brunei Darussalam]', 'bnl' => 'Banca Nazionale del Lavoro', 'bnpparibas' => 'BNP Paribas', - 'bo' => 'Agencia para el Desarrollo de la Información de la Sociedad en Bolivia', + 'bo' => 'Bolivia [Plurinational State of]', 'boats' => 'DERBoats, LLC', 'boehringer' => 'Boehringer Ingelheim International GmbH', 'bofa' => 'Bank of America Corporation', @@ -181,16 +178,16 @@ Telecommunications Unit', 'bot' => 'Amazon Registry Services, Inc.', 'boutique' => 'Binky Moon, LLC', 'box' => 'NS1 Limited', - 'bq' => 'Not assigned', - 'br' => 'Comite Gestor da Internet no Brasil', + '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' => 'The College of the Bahamas', - 'bt' => 'Ministry of Information and Communications', + 'bs' => 'Bahamas [Commonwealth of the]', + 'bt' => 'Bhutan [Kingdom of]', 'budapest' => 'Top Level Domain Holdings Limited', 'bugatti' => 'Bugatti International SA', 'build' => 'Plan Bee LLC', @@ -198,12 +195,12 @@ Telecommunications Unit', 'business' => 'Binky Moon, LLC', 'buy' => 'Amazon Registry Services, INC', 'buzz' => 'DOTSTRATEGY CO.', - 'bv' => 'UNINETT Norid A/S', - 'bw' => 'Botswana Communications Regulatory Authority [BOCRA]', - 'by' => 'Reliable Software, Ltd.', - 'bz' => 'University of Belize', + 'bv' => 'Bouvet Island', + 'bw' => 'Botswana [Republic of]', + 'by' => 'Belarus [Republic of]', + 'bz' => 'Belize', 'bzh' => 'Association www.bzh', - 'ca' => 'Canadian Internet Registration Authority [CIRA] Autorité Canadienne pour les enregistrements Internet [ACEI]', + 'ca' => 'Canada', 'cab' => 'Binky Moon, LLC', 'cafe' => 'Binky Moon, LLC', 'cal' => 'Charleston Road Registry Inc.', @@ -230,25 +227,24 @@ Telecommunications Unit', 'caseih' => 'CNH Industrial N.V.', 'cash' => 'Binky Moon, LLC', 'casino' => 'Binky Moon, LLC', - 'cat' => 'Fundacio puntCAT', + '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' => 'eNIC Cocos [Keeling] Islands Pty. -Ltd. d/b/a Island Internet Services', - 'cd' => 'Office Congolais des Postes et Télécommunications - OCPT', + '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' => 'Societe Centrafricaine de Telecommunications [SOCATEL]', + 'cf' => 'Central African Republic', 'cfa' => 'CFA Institute', 'cfd' => 'DOTCFD REGISTRY LTD', - 'cg' => 'ONPT Congo and Interpoint Switzerland', - 'ch' => 'SWITCH The Swiss Education & Research Network', + 'cg' => 'Congo [Republic of] [Congo-Brazzaville]', + 'ch' => 'Switzerland [Swiss Confederation]', 'chanel' => 'Chanel International B.V.', 'channel' => 'Charleston Road Registry Inc.', 'charity' => 'Corn Lake, LLC', @@ -261,7 +257,7 @@ Ltd. d/b/a Island Internet Services', 'chrome' => 'Charleston Road Registry Inc.', 'chrysler' => 'FCA US LLC.', 'church' => 'Binky Moon, LLC', - 'ci' => 'Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire [ARTCI]', + 'ci' => 'Ivory Coast [Republic of Côte d\'Ivoire]', 'cipriani' => 'Hotel Cipriani Srl', 'circle' => 'Amazon Registry Services, Inc.', 'cisco' => 'Cisco Technology, Inc.', @@ -270,8 +266,8 @@ Ltd. d/b/a Island Internet Services', 'citic' => 'CITIC Group Corporation', 'city' => 'Binky Moon, LLC', 'cityeats' => 'Lifestyle Domain Holdings, Inc.', - 'ck' => 'Telecom Cook Islands Ltd.', - 'cl' => 'NIC Chile [University of Chile]', + 'ck' => 'Cook Islands', + 'cl' => 'Chile [Republic of]', 'claims' => 'Binky Moon, LLC', 'cleaning' => 'Binky Moon, LLC', 'click' => 'Uniregistry, Corp.', @@ -281,15 +277,15 @@ Ltd. d/b/a Island Internet Services', 'cloud' => 'ARUBA PEC S.p.A.', 'club' => '.CLUB DOMAINS, LLC', 'clubmed' => 'Club Méditerranée S.A.', - 'cm' => 'Cameroon Telecommunications [CAMTEL]', - 'cn' => 'China Internet Network Information Center [CNNIC]', - 'co' => '.CO Internet S.A.S.', + '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' => 'punkt.wien GmbH', - 'com' => 'VeriSign Global Registry Services', + 'com' => 'Commercial organizations', 'comcast' => 'Comcast IP Holdings I, LLC', 'commbank' => 'COMMONWEALTH BANK OF AUSTRALIA', 'community' => 'Binky Moon, LLC', @@ -305,14 +301,13 @@ Ltd. d/b/a Island Internet Services', 'cooking' => 'Top Level Domain Holdings Limited', 'cookingchannel' => 'Lifestyle Domain Holdings, Inc.', 'cool' => 'Binky Moon, LLC', - 'coop' => 'DotCooperation 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' => 'National Academy of Sciences -Academia Nacional de Ciencias', + 'cr' => 'Costa Rica [Republic of]', 'credit' => 'Binky Moon, LLC', 'creditcard' => 'Binky Moon, LLC', 'creditunion' => 'CUNA Performance Resources, LLC', @@ -322,17 +317,15 @@ Academia Nacional de Ciencias', 'cruise' => 'Viking River Cruises [Bermuda] Ltd.', 'cruises' => 'Binky Moon, LLC', 'csc' => 'Alliance-One Services, Inc.', - 'cu' => 'CENIAInternet -Industria y San Jose -Capitolio Nacional', + 'cu' => 'Cuba [Republic of]', 'cuisinella' => 'SALM S.A.S.', - 'cv' => 'Agência Nacional das Comunicações [ANAC]', - 'cw' => 'University of Curacao', - 'cx' => 'Christmas Island Domain Administration Limited', - 'cy' => 'University of Cyprus', + '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' => 'CZ.NIC, z.s.p.o', + 'cz' => 'Czech Republic', 'dabur' => 'Dabur India Limited', 'dad' => 'Charleston Road Registry Inc.', 'dance' => 'United TLD Holdco Ltd.', @@ -343,7 +336,7 @@ Capitolio Nacional', 'day' => 'Charleston Road Registry Inc.', 'dclk' => 'Charleston Road Registry Inc.', 'dds' => 'Minds + Machines Group Limited', - 'de' => 'DENIC eG', + 'de' => 'Germany [Federal Republic of]', 'deal' => 'Amazon Registry Services, Inc.', 'dealer' => 'Dealer Dot Com, Inc.', 'deals' => 'Binky Moon, LLC', @@ -368,12 +361,11 @@ Capitolio Nacional', 'discover' => 'Discover Financial Services', 'dish' => 'Dish DBS Corporation', 'diy' => 'Lifestyle Domain Holdings, Inc.', - 'dj' => 'Djibouti Telecom S.A', - 'dk' => 'Dansk Internet Forum', - 'dm' => 'DotDM Corporation', + 'dj' => 'Djibouti [Republic of]', + 'dk' => 'Denmark [Kingdom of]', + 'dm' => 'Dominica [Commonwealth of]', 'dnp' => 'Dai Nippon Printing Co., Ltd.', - 'do' => 'Pontificia Universidad Catolica Madre y Maestra -Recinto Santo Tomas de Aquino', + 'do' => 'Dominican Republic', 'docs' => 'Charleston Road Registry Inc.', 'doctor' => 'Binky Moon, LLC', 'dodge' => 'FCA US LLC.', @@ -393,18 +385,17 @@ Recinto Santo Tomas de Aquino', 'durban' => 'ZA Central Registry NPC trading as ZA Central Registry', 'dvag' => 'Deutsche Vermögensberatung Aktiengesellschaft DVAG', 'dvr' => 'Hughes Satellite Systems Corporation', - 'dz' => 'CERIST', + 'dz' => 'Algeria [People\'s Democratic Republic of]', 'earth' => 'Interlink Co., Ltd.', 'eat' => 'Charleston Road Registry Inc.', - 'ec' => 'ECUADORDOMAIN S.A.', + 'ec' => 'Ecuador [Republic of]', 'eco' => 'Big Room Inc.', 'edeka' => 'EDEKA Verband kaufmännischer Genossenschaften e.V.', - 'edu' => 'EDUCAUSE', + 'edu' => 'Educational establishments', 'education' => 'Binky Moon, LLC', - 'ee' => 'Eesti Interneti Sihtasutus [EIS]', - 'eg' => 'Egyptian Universities Network [EUN] -Supreme Council of Universities', - 'eh' => 'Not assigned', + 'ee' => 'Estonia [Republic of]', + 'eg' => 'Egypt [Arab Republic of]', + 'eh' => 'Western Sahara {reserved}', 'email' => 'Binky Moon, LLC', 'emerck' => 'Merck KGaA', 'energy' => 'Binky Moon, LLC', @@ -414,16 +405,16 @@ Supreme Council of Universities', 'epost' => 'Deutsche Post AG', 'epson' => 'Seiko Epson Corporation', 'equipment' => 'Binky Moon, LLC', - 'er' => 'Eritrea Telecommunication Services Corporation [EriTel]', + 'er' => 'Eritrea [State of]', 'ericsson' => 'Telefonaktiebolaget L M Ericsson', 'erni' => 'ERNI Group Holding AG', - 'es' => 'Red.es', + 'es' => 'Spain [Kingdom of]', 'esq' => 'Charleston Road Registry Inc.', 'estate' => 'Binky Moon, LLC', 'esurance' => 'Esurance Insurance Company', - 'et' => 'Ethio telecom', + 'et' => 'Ethiopia [Federal Democratic Republic of]', 'etisalat' => 'Emirates Telecommunications Corporation [trading as Etisalat]', - 'eu' => 'EURid vzw/asbl', + 'eu' => 'European Union', 'eurovision' => 'European Broadcasting Union [EBU]', 'eus' => 'Puntueus Fundazioa', 'events' => 'Binky Moon, LLC', @@ -448,7 +439,7 @@ Supreme Council of Universities', 'feedback' => 'Top Level Spectrum, Inc.', 'ferrari' => 'Fiat Chrysler Automobiles N.V.', 'ferrero' => 'Ferrero Trading Lux S.A.', - 'fi' => 'Finnish Communications Regulatory Authority', + 'fi' => 'Finland [Republic of]', 'fiat' => 'Fiat Chrysler Automobiles N.V.', 'fidelity' => 'Fidelity Brokerage Services LLC', 'fido' => 'Rogers Communications Canada Inc.', @@ -463,9 +454,8 @@ Supreme Council of Universities', 'fishing' => 'Top Level Domain Holdings Limited', 'fit' => 'Minds + Machines Group Limited', 'fitness' => 'Binky Moon, LLC', - 'fj' => 'The University of the South Pacific -IT Services', - 'fk' => 'Falkland Islands Government', + 'fj' => 'Fiji [Republic of]', + 'fk' => 'Falkland Islands [Malvinas]', 'flickr' => 'Yahoo! Domain Services Inc.', 'flights' => 'Binky Moon, LLC', 'flir' => 'FLIR Systems, Inc.', @@ -473,8 +463,8 @@ IT Services', 'flowers' => 'Uniregistry, Corp.', 'flsmidth' => 'Retired', 'fly' => 'Charleston Road Registry Inc.', - 'fm' => 'FSM Telecommunications Corporation', - 'fo' => 'FO Council', + 'fm' => 'Micronesia [Federated States of]', + 'fo' => 'Faroe Islands', 'foo' => 'Charleston Road Registry Inc.', 'food' => 'Lifestyle Domain Holdings, Inc.', 'foodnetwork' => 'Lifestyle Domain Holdings, Inc.', @@ -485,7 +475,7 @@ IT Services', 'forum' => 'Fegistry, LLC', 'foundation' => 'Binky Moon, LLC', 'fox' => 'FOX Registry, LLC', - 'fr' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'fr' => 'France [French Republic]', 'free' => 'Amazon Registry Services, Inc.', 'fresenius' => 'Fresenius Immobilien-Verwaltungs-GmbH', 'frl' => 'FRLregistry B.V.', @@ -500,7 +490,7 @@ IT Services', 'furniture' => 'Binky Moon, LLC', 'futbol' => 'United TLD Holdco, Ltd.', 'fyi' => 'Binky Moon, LLC', - 'ga' => 'Agence Nationale des Infrastructures Numériques et des Fréquences [ANINF]', + 'ga' => 'Gabon [Gabonese Republic]', 'gal' => 'Asociación puntoGAL', 'gallery' => 'Binky Moon, LLC', 'gallo' => 'Gallo Vineyards, Inc.', @@ -509,36 +499,36 @@ IT Services', 'games' => 'United TLD Holdco Ltd.', 'gap' => 'The Gap, Inc.', 'garden' => 'Top Level Domain Holdings Limited', - 'gb' => 'Reserved Domain - IANA', + 'gb' => 'United Kingdom [United Kingdom of Great Britain and Northern Ireland]', 'gbiz' => 'Charleston Road Registry Inc.', - 'gd' => 'The National Telecommunications Regulatory Commission [NTRC]', + 'gd' => 'Grenada', 'gdn' => 'Joint Stock Company "Navigation-information systems"', - 'ge' => 'Caucasus Online LLC', + 'ge' => 'Georgia', 'gea' => 'GEA Group Aktiengesellschaft', 'gent' => 'Combell nv', 'genting' => 'Resorts World Inc. Pte. Ltd.', 'george' => 'Wal-Mart Stores, Inc.', - 'gf' => 'Net Plus', - 'gg' => 'Island Networks Ltd.', + 'gf' => 'French Guiana', + 'gg' => 'Guernsey [Bailiwick of]', 'ggee' => 'GMO Internet, Inc.', - 'gh' => 'Network Computer Systems Limited', - 'gi' => 'Sapphire Networks', + 'gh' => 'Ghana [Republic of]', + 'gi' => 'Gibraltar', 'gift' => 'Uniregistry, Corp.', 'gifts' => 'Binky Moon, LLC', 'gives' => 'United TLD Holdco Ltd.', 'giving' => 'Giving Limited', - 'gl' => 'TELE Greenland A/S', + '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' => 'GM-NIC', + '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' => 'Centre National des Sciences Halieutiques de Boussoura', + 'gn' => 'Guinea [Republic of]', 'godaddy' => 'Go Daddy East, LLC', 'gold' => 'Binky Moon, LLC', 'goldpoint' => 'YODOBASHI CAMERA CO.,LTD.', @@ -550,11 +540,10 @@ IT Services', 'google' => 'Charleston Road Registry Inc.', 'gop' => 'Republican State Leadership Committee, Inc.', 'got' => 'Amazon Registry Services, Inc.', - 'gov' => 'General Services Administration -Attn: QTDC, 2E08 [.gov Domain Registration]', - 'gp' => 'Networking Technologies Group', - 'gq' => 'GETESA', - 'gr' => 'ICS-FORTH GR', + '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', @@ -562,17 +551,17 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', 'gripe' => 'Binky Moon, LLC', 'grocery' => 'Wal-Mart Stores, Inc.', 'group' => 'Binky Moon, LLC', - 'gs' => 'Government of South Georgia and South Sandwich Islands [GSGSSI]', - 'gt' => 'Universidad del Valle de Guatemala', - 'gu' => 'University of Guam', + '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' => 'Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau', - 'gy' => 'University of Guyana', + '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.', @@ -591,10 +580,10 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', 'hisamitsu' => 'Hisamitsu Pharmaceutical Co.,Inc.', 'hitachi' => 'Hitachi, Ltd.', 'hiv' => 'Uniregistry, Corp.', - 'hk' => 'Hong Kong Internet Registration Corporation Ltd.', + 'hk' => 'Hong Kong [Hong Kong Special Administrative Region of the People\'s Republic of China]', 'hkt' => 'PCCW-HKT DataCom Services Limited', - 'hm' => 'HM Domain Registry', - 'hn' => 'Red de Desarrollo Sostenible Honduras', + 'hm' => 'Heard Island and McDonald Islands', + 'hn' => 'Honduras [Republic of]', 'hockey' => 'Binky Moon, LLC', 'holdings' => 'Binky Moon, LLC', 'holiday' => 'Binky Moon, LLC', @@ -614,11 +603,11 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', 'hotmail' => 'Microsoft Corporation', 'house' => 'Binky Moon, LLC', 'how' => 'Charleston Road Registry Inc.', - 'hr' => 'CARNet - Croatian Academic and Research Network', + 'hr' => 'Croatia [Republic of]', 'hsbc' => 'HSBC Global Services [UK] Limited', - 'ht' => 'Consortium FDS/RDDH', + 'ht' => 'Haiti [Republic of]', 'htc' => 'Not assigned', - 'hu' => 'Council of Hungarian Internet Providers [CHIP]', + 'hu' => 'Hungary', 'hughes' => 'Hughes Satellite Systems Corporation', 'hyatt' => 'Hyatt GTLD, L.L.C.', 'hyundai' => 'Hyundai Motor Company', @@ -626,46 +615,43 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', 'icbc' => 'Industrial and Commercial Bank of China Limited', 'ice' => 'IntercontinentalExchange, Inc.', 'icu' => 'Shortdot SA', - 'id' => 'Perkumpulan Pengelola Nama Domain Internet Indonesia [PANDI]', - 'ie' => 'University College Dublin -Computing Services -Computer Centre', + 'id' => 'Indonesia [Republic of]', + 'ie' => 'Ireland [Republic of]', 'ieee' => 'IEEE Global LLC', 'ifm' => 'ifm electronic gmbh', 'iinet' => 'Retired', 'ikano' => 'Ikano S.A.', - 'il' => 'Internet Society of Israel', - 'im' => 'Isle of Man Government', + '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' => 'National Internet Exchange of India', + 'in' => 'India [Republic of]', 'industries' => 'Binky Moon, LLC', 'infiniti' => 'NISSAN MOTOR CO., LTD.', - 'info' => 'Afilias Limited', + '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' => 'Internet Assigned Numbers Authority', + 'int' => 'International treaty-based organizations', 'intel' => 'Intel Corporation', 'international' => 'Binky Moon, LLC', 'intuit' => 'Intuit Administrative Services, Inc.', 'investments' => 'Binky Moon, LLC', - 'io' => 'IO Top Level Domain Registry -Cable and Wireless', + 'io' => 'British Indian Ocean Territory', 'ipiranga' => 'Ipiranga Produtos de Petroleo S.A.', - 'iq' => 'Communications and Media Commission [CMC]', - 'ir' => 'Institute for Research in Fundamental Sciences', + 'iq' => 'Iraq [Republic of]', + 'ir' => 'Iran [Islamic Republic of]', 'irish' => 'Binky Moon, LLC', - 'is' => 'ISNIC - Internet Iceland ltd.', + 'is' => 'Iceland', 'iselect' => 'iSelect Ltd', 'ismaili' => 'Fondation Aga Khan [Aga Khan Foundation]', 'ist' => 'Istanbul Metropolitan Municipality', 'istanbul' => 'Istanbul Metropolitan Municipality', - 'it' => 'IIT - CNR', + 'it' => 'Italy [Italian Republic]', 'itau' => 'Itau Unibanco Holding S.A.', 'itv' => 'ITV Services Limited', 'iveco' => 'CNH Industrial N.V.', @@ -674,59 +660,59 @@ Cable and Wireless', 'java' => 'Oracle Corporation', 'jcb' => 'JCB Co., Ltd.', 'jcp' => 'JCP Media, Inc.', - 'je' => 'Island Networks [Jersey] Ltd.', + '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' => 'University of West Indies', + 'jm' => 'Jamaica [Commonwealth of]', 'jmp' => 'Matrix IP LLC', 'jnj' => 'Johnson & Johnson Services, Inc.', - 'jo' => 'National Information Technology Center [NITC]', - 'jobs' => 'Employ Media LLC', + '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 Registry Services Co., Ltd.', + '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 Network Information Center [KeNIC]', + 'ke' => 'Kenya [Republic of]', 'kerryhotels' => 'Kerry Trading Co. Limited', 'kerrylogistics' => 'Kerry Trading Co. Limited', 'kerryproperties' => 'Kerry Trading Co. Limited', 'kfh' => 'Kuwait Finance House', - 'kg' => 'AsiaInfo Telecommunication Enterprise', - 'kh' => 'Telecommunication Regulator of Cambodia [TRC]', - 'ki' => 'Ministry of Communications, Transport, and Tourism Development', + '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' => 'Comores Telecom', - 'kn' => 'Ministry of Finance, Sustainable Development Information & Technology', + 'km' => 'Comoros [Union of the]', + 'kn' => 'Saint Kitts and Nevis [Federation of]', 'koeln' => 'punkt.wien GmbH', 'komatsu' => 'Komatsu Ltd.', 'kosher' => 'Kosher Marketing Assets LLC', - 'kp' => 'Star Joint Venture Company', + 'kp' => 'Korea [Democratic People\'s Republic of] [North Korea]', 'kpmg' => 'KPMG International Cooperative [KPMG International Genossenschaft]', 'kpn' => 'Koninklijke KPN N.V.', - 'kr' => 'Korea Internet & Security Agency [KISA]', + 'kr' => 'Korea [Republic of] [South Korea]', 'krd' => 'KRG Department of Information Technology', 'kred' => 'KredTLD Pty Ltd', 'kuokgroup' => 'Kerry Trading Co. Limited', - 'kw' => 'Communications and Information Technology Regulatory Authority', - 'ky' => 'Utility Regulation and Competition Office [OfReg]', + 'kw' => 'Kuwait [State of Kuwait]', + 'ky' => 'Cayman Islands', 'kyoto' => 'Academic Institution: Kyoto Jyoho Gakuen', - 'kz' => 'Association of IT Companies of Kazakhstan', - 'la' => 'Lao National Internet Committee [LANIC], Ministry of Posts and Telecommunications', + '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.', @@ -743,9 +729,8 @@ Cable and Wireless', 'latrobe' => 'La Trobe University', 'law' => 'Minds + Machines Group Limited', 'lawyer' => 'United TLD Holdco, Ltd', - 'lb' => 'American University of Beirut -Computing and Networking Services', - 'lc' => 'University of Puerto Rico', + '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', @@ -754,7 +739,7 @@ Computing and Networking Services', 'lego' => 'LEGO Juris A/S', 'lexus' => 'TOYOTA MOTOR CORPORATION', 'lgbt' => 'Afilias plc', - 'li' => 'SWITCH The Swiss Education & Research Network', + 'li' => 'Liechtenstein [Principality of]', 'liaison' => 'Liaison Technologies, Incorporated', 'lidl' => 'Schwarz Domains und Services GmbH & Co. KG', 'life' => 'Binky Moon, LLC', @@ -772,8 +757,7 @@ Computing and Networking Services', 'live' => 'United TLD Holdco Ltd.', 'living' => 'Lifestyle Domain Holdings, Inc.', 'lixil' => 'LIXIL Group Corporation', - 'lk' => 'Council for Information Technology -LK Domain Registrar', + 'lk' => 'Sri Lanka [Democratic Socialist Republic of]', 'llc' => 'Afilias plc', 'loan' => 'dot Loan Limited', 'loans' => 'Binky Moon, LLC', @@ -787,21 +771,19 @@ LK Domain Registrar', 'love' => 'Merchant Law Group LLP', 'lpl' => 'LPL Holdings, Inc.', 'lplfinancial' => 'LPL Holdings, Inc.', - 'lr' => 'Data Technology Solutions, Inc.', - 'ls' => 'National University of Lesotho', - 'lt' => 'Kaunas University of Technology', + 'lr' => 'Liberia [Republic of]', + 'ls' => 'Lesotho [Kingdom of]', + 'lt' => 'Lithuania [Republic of]', 'ltd' => 'Binky Moon, LLC', 'ltda' => 'InterNetX Corp.', - 'lu' => 'RESTENA', + 'lu' => 'Luxembourg [Grand Duchy of]', 'lundbeck' => 'H. Lundbeck A/S', 'lupin' => 'LUPIN LIMITED', 'luxe' => 'Top Level Domain Holdings Limited', 'luxury' => 'Luxury Partners LLC', - 'lv' => 'University of Latvia -Institute of Mathematics and Computer Science -Department of Network Solutions [DNS]', - 'ly' => 'General Post and Telecommunication Company', - 'ma' => 'Agence Nationale de Réglementation des Télécommunications [ANRT]', + 'lv' => 'Latvia [Republic of]', + 'ly' => 'Libya', + 'ma' => 'Morocco', 'macys' => 'Macys, Inc.', 'madrid' => 'Comunidad de Madrid', 'maif' => 'Mutuelle Assurance Instituteur France [MAIF]', @@ -819,13 +801,12 @@ Department of Network Solutions [DNS]', 'maserati' => 'Fiat Chrysler Automobiles N.V.', 'mattel' => 'Mattel Sites, Inc.', 'mba' => 'Binky Moon, LLC', - 'mc' => 'Gouvernement de Monaco -Direction des Communications Electroniques', + 'mc' => 'Monaco [Principality of]', 'mcd' => 'Not assigned', 'mcdonalds' => 'Not assigned', 'mckinsey' => 'McKinsey Holdings, Inc.', - 'md' => 'MoldData S.E.', - 'me' => 'Government of Montenegro', + 'md' => 'Moldova [Republic of]', + 'me' => 'Montenegro', 'med' => 'Medistry LLC', 'media' => 'Binky Moon, LLC', 'meet' => 'Charleston Road Registry Inc.', @@ -837,25 +818,25 @@ Direction des Communications Electroniques', 'meo' => 'Not assigned', 'merckmsd' => 'MSD Registry Holdings, Inc.', 'metlife' => 'MetLife Services and Solutions, LLC', - 'mf' => 'Not assigned', - 'mg' => 'NIC-MG [Network Information Center Madagascar]', - 'mh' => 'Office of the Cabinet', + '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' => 'DoD Network Information Center', + 'mil' => 'US military', 'mini' => 'Bayerische Motoren Werke Aktiengesellschaft', 'mint' => 'Intuit Administrative Services, Inc.', 'mit' => 'Massachusetts Institute of Technology', 'mitsubishi' => 'Mitsubishi Corporation', - 'mk' => 'Macedonian Academic Research Network Skopje', - 'ml' => 'Agence des Technologies de l’Information et de la Communication', + 'mk' => 'Macedonia [Republic of]', + 'ml' => 'Mali [Republic of]', 'mlb' => 'MLB Advanced Media DH, LLC', 'mls' => 'The Canadian Real Estate Association', - 'mm' => 'Ministry of Communications, Posts & Telegraphs', + 'mm' => 'Myanmar [Republic of the Union of] [Burma]', 'mma' => 'MMA IARD', - 'mn' => 'Datacom Co., Ltd.', - 'mo' => 'Macao Post and Telecommunications Bureau [CTT]', - 'mobi' => 'Afilias Technologies Limited dba dotMobi', + '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.', @@ -875,39 +856,37 @@ Direction des Communications Electroniques', 'mov' => 'Charleston Road Registry Inc.', 'movie' => 'Binky Moon, LLC', 'movistar' => 'Telefónica S.A.', - 'mp' => 'Saipan Datacom, Inc.', - 'mq' => 'MEDIASERV', - 'mr' => 'Université de Nouakchott Al Aasriya', - 'ms' => 'MNI Networks Ltd.', + 'mp' => 'Northern Mariana Islands [Commonwealth of the]', + 'mq' => 'Martinique', + 'mr' => 'Mauritania [Islamic Republic of]', + 'ms' => 'Montserrat', 'msd' => 'MSD Registry Holdings, Inc.', - 'mt' => 'NIC [Malta]', + 'mt' => 'Malta [Republic of]', 'mtn' => 'MTN Dubai Limited', 'mtpc' => 'Retired', 'mtr' => 'MTR Corporation Limited', - 'mu' => 'Internet Direct Ltd', - 'museum' => 'Museum Domain Management Association', + 'mu' => 'Mauritius [Republic of]', + 'museum' => 'Museums', 'mutual' => 'Northwestern Mutual MU TLD Registry, LLC', 'mutuelle' => 'Retired', - 'mv' => 'Dhiraagu Pvt. Ltd. [DHIVEHINET]', - 'mw' => 'Malawi Sustainable Development Network Programme -[Malawi SDNP]', - 'mx' => 'NIC-Mexico -ITESM - Campus Monterrey', - 'my' => 'MYNIC Berhad', - 'mz' => 'Centro de Informatica de Universidade Eduardo Mondlane', - 'na' => 'Namibian Network Information Center', + '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' => 'VeriSign Information Services, Inc.', + 'name' => 'Individuals', 'nationwide' => 'Nationwide Mutual Insurance Company', 'natura' => 'NATURA COSMÉTICOS S.A.', 'navy' => 'United TLD Holdco Ltd.', 'nba' => 'NBA REGISTRY, LLC', - 'nc' => 'Office des Postes et Telecommunications', - 'ne' => 'SONITEL', + 'nc' => 'New Caledonia', + 'ne' => 'Niger [Republic of]', 'nec' => 'NEC Corporation', - 'net' => 'VeriSign Global Registry Services', + 'net' => 'Network', 'netbank' => 'COMMONWEALTH BANK OF AUSTRALIA', 'netflix' => 'Netflix, Inc.', 'network' => 'Binky Moon, LLC', @@ -918,35 +897,34 @@ ITESM - Campus Monterrey', 'next' => 'Next plc', 'nextdirect' => 'Next plc', 'nexus' => 'Charleston Road Registry Inc.', - 'nf' => 'Norfolk Island Data Services', + 'nf' => 'Norfolk Island [Territory of]', 'nfl' => 'NFL Reg Ops LLC', - 'ng' => 'Nigeria Internet Registration Association', + 'ng' => 'Nigeria [Federal Republic of]', 'ngo' => 'Public Interest Registry', 'nhk' => 'Japan Broadcasting Corporation [NHK]', - 'ni' => 'Universidad Nacional del Ingernieria -Centro de Computo', + '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' => 'SIDN [Stichting Internet Domeinregistratie Nederland]', - 'no' => 'UNINETT Norid A/S', + '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' => 'Mercantile Communications Pvt. Ltd.', - 'nr' => 'CENPAC NET', + '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' => 'The IUSN Foundation', + 'nu' => 'Niue', 'nyc' => 'The City of New York by and through the New York City Department of Information Technology & Telecommunications', - 'nz' => 'InternetNZ', + 'nz' => 'New Zealand', 'obi' => 'OBI Group Holding SE & Co. KGaA', 'observer' => 'Top Level Spectrum, Inc.', 'off' => 'Johnson Shareholdings, Inc.', @@ -956,7 +934,7 @@ Centro de Computo', 'olayangroup' => 'Crescent Holding GmbH', 'oldnavy' => 'The Gap, Inc.', 'ollo' => 'Dish DBS Corporation', - 'om' => 'Telecommunications Regulatory Authority [TRA]', + 'om' => 'Oman [Sultanate of]', 'omega' => 'The Swatch Group Ltd', 'one' => 'One.com A/S', 'ong' => 'Public Interest Registry', @@ -967,7 +945,7 @@ Centro de Computo', 'open' => 'American Express Travel Related Services Company, Inc.', 'oracle' => 'Oracle Corporation', 'orange' => 'Orange Brand Services Limited', - 'org' => 'Public Interest Registry [PIR]', + 'org' => 'Non-profit organizations', 'organic' => 'Afilias plc', 'orientexpress' => 'Retired', 'origins' => 'The Estée Lauder Companies Inc.', @@ -975,7 +953,7 @@ Centro de Computo', 'otsuka' => 'Otsuka Holdings Co., Ltd.', 'ott' => 'Dish DBS Corporation', 'ovh' => 'OVH SAS', - 'pa' => 'Universidad Tecnologica de Panama', + 'pa' => 'Panama [Republic of]', 'page' => 'Charleston Road Registry Inc.', 'pamperedchef' => 'Not assigned', 'panasonic' => 'Panasonic Corporation', @@ -988,14 +966,12 @@ Centro de Computo', 'passagens' => 'Travel Reservations SRL', 'pay' => 'Amazon Registry Services, Inc.', 'pccw' => 'PCCW Enterprises Limited', - 'pe' => 'Red Cientifica Peruana', + 'pe' => 'Peru [Republic of]', 'pet' => 'Afilias plc', - 'pf' => 'Gouvernement de la Polynésie française', + 'pf' => 'French Polynesia and Clipperton Island', 'pfizer' => 'Pfizer Inc.', - 'pg' => 'PNG DNS Administration -Vice Chancellors Office -The Papua New Guinea University of Technology', - 'ph' => 'PH Domain Foundation', + '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.', @@ -1014,28 +990,27 @@ The Papua New Guinea University of Technology', 'pink' => 'Afilias plc', 'pioneer' => 'Pioneer Corporation', 'pizza' => 'Binky Moon, LLC', - 'pk' => 'PKNIC', - 'pl' => 'Research and Academic Computer Network', + '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' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', - 'pn' => 'Pitcairn Island Administration', + 'pm' => 'Saint Pierre and Miquelon', + 'pn' => 'Pitcairn Islands [Pitcairn - Henderson - Ducie and Oeno Islands]', 'pnc' => 'PNC Domain Co., LLC', 'pohl' => 'Deutsche Vermögensberatung Aktiengesellschaft DVAG', 'poker' => 'Afilias plc', 'politie' => 'Politie Nederland', 'porn' => 'ICM Registry PN LLC', 'post' => 'Universal Postal Union', - 'pr' => 'Gauss Research Laboratory Inc.', + 'pr' => 'Puerto Rico [Commonwealth of]', 'pramerica' => 'Prudential Financial, Inc.', 'praxi' => 'Praxi S.p.A.', 'press' => 'DotPress Inc.', 'prime' => 'Amazon Registry Services, Inc.', - 'pro' => 'Registry Services Corporation -dba RegistryPro', + 'pro' => 'Profession', 'prod' => 'Charleston Road Registry Inc.', 'productions' => 'Binky Moon, LLC', 'prof' => 'Charleston Road Registry Inc.', @@ -1046,15 +1021,13 @@ dba RegistryPro', 'protection' => 'XYZ.COM LLC', 'pru' => 'Prudential Financial, Inc.', 'prudential' => 'Prudential Financial, Inc.', - 'ps' => 'Ministry Of Telecommunications & -Information Technology, -Government Computer Center.', - 'pt' => 'Associação DNS.PT', + 'ps' => 'Palestine [State of]', + 'pt' => 'Portugal [Portuguese Republic]', 'pub' => 'United TLD Holdco Ltd.', - 'pw' => 'Micronesia Investment and Development Corporation', + 'pw' => 'Palau [Republic of]', 'pwc' => 'PricewaterhouseCoopers LLP', - 'py' => 'NIC-PY', - 'qa' => 'Communications Regulatory Authority', + 'py' => 'Paraguay [Republic of]', + 'qa' => 'Qatar [State of]', 'qpon' => 'dotCOOL, Inc.', 'quebec' => 'PointQuébec Inc', 'quest' => 'Quest ION Limited', @@ -1062,7 +1035,7 @@ Government Computer Center.', 'racing' => 'Premier Registry Limited', 'radio' => 'European Broadcasting Union [EBU]', 'raid' => 'Johnson Shareholdings, Inc.', - 're' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 're' => 'Réunion', 'read' => 'Amazon Registry Services, Inc.', 'realestate' => 'dotRealEstate LLC', 'realtor' => 'Real Estate Domains LLC', @@ -1095,22 +1068,22 @@ Government Computer Center.', 'rio' => 'Empresa Municipal de Informática SA - IPLANRIO', 'rip' => 'United TLD Holdco Ltd.', 'rmit' => 'Royal Melbourne Institute of Technology', - 'ro' => 'National Institute for R&D in Informatics', + 'ro' => 'Romania', 'rocher' => 'Ferrero Trading Lux S.A.', 'rocks' => 'United TLD Holdco, LTD.', 'rodeo' => 'Top Level Domain Holdings Limited', 'rogers' => 'Rogers Communications Canada Inc.', 'room' => 'Amazon Registry Services, Inc.', - 'rs' => 'Serbian National Internet Domain Registry [RNIDS]', + 'rs' => 'Serbia [Republic of]', 'rsvp' => 'Charleston Road Registry Inc.', - 'ru' => 'Coordination Center for TLD RU', + 'ru' => 'Russia [Russian Federation]', 'rugby' => 'World Rugby Strategic Developments Limited', 'ruhr' => 'regiodot GmbH & Co. KG', 'run' => 'Binky Moon, LLC', - 'rw' => 'Rwanda Information Communication and Technology Association [RICTA]', + 'rw' => 'Rwanda [Republic of]', 'rwe' => 'RWE AG', 'ryukyu' => 'BRregistry, Inc.', - 'sa' => 'Communications and Information Technology Commission', + 'sa' => 'Saudi Arabia [Kingdom of]', 'saarland' => 'dotSaarland GmbH', 'safe' => 'Amazon Registry Services, Inc.', 'safety' => 'Safety Registry Services, LLC.', @@ -1128,10 +1101,10 @@ Government Computer Center.', 'sas' => 'Research IP LLC', 'save' => 'Amazon Registry Services, Inc.', 'saxo' => 'Saxo Bank A/S', - 'sb' => 'Solomon Telekom Company Limited', + 'sb' => 'Solomon Islands', 'sbi' => 'STATE BANK OF INDIA', 'sbs' => 'SPECIAL BROADCASTING SERVICE CORPORATION', - 'sc' => 'VCS Pty Ltd', + 'sc' => 'Seychelles [Republic of]', 'sca' => 'SVENSKA CELLULOSA AKTIEBOLAGET SCA [publ]', 'scb' => 'The Siam Commercial Bank Public Company Limited ["SCB"]', 'schaeffler' => 'Schaeffler Technologies AG & Co. KG', @@ -1144,8 +1117,8 @@ Government Computer Center.', 'scjohnson' => 'Johnson Shareholdings, Inc.', 'scor' => 'SCOR SE', 'scot' => 'Dot Scot Registry Limited', - 'sd' => 'Sudan Internet Society', - 'se' => 'The Internet Infrastructure Foundation', + 'sd' => 'Sudan [Republic of]', + 'se' => 'Sweden [Kingdom of]', 'search' => 'Charleston Road Registry Inc.', 'seat' => 'SEAT, S.A. [Sociedad Unipersonal]', 'secure' => 'Amazon Registry Services, Inc.', @@ -1160,8 +1133,8 @@ Government Computer Center.', 'sex' => 'ICM Registry SX LLC', 'sexy' => 'Uniregistry, Corp.', 'sfr' => 'Societe Francaise du Radiotelephone - SFR', - 'sg' => 'Singapore Network Information Centre [SGNIC] Pte Ltd', - 'sh' => 'Government of St. Helena', + 'sg' => 'Singapore [Republic of]', + 'sh' => 'Saint Helena', 'shangrila' => 'Shangri‐La International Hotel Management Limited', 'sharp' => 'Sharp Corporation', 'shaw' => 'Shaw Cablesystems G.P.', @@ -1175,26 +1148,25 @@ Government Computer Center.', 'show' => 'Binky Moon, LLC', 'showtime' => 'CBS Domains Inc.', 'shriram' => 'Shriram Capital Ltd.', - 'si' => 'Academic and Research Network of Slovenia [ARNES]', + 'si' => 'Slovenia [Republic of]', 'silk' => 'Amazon Registry Services, Inc.', 'sina' => 'Sina Corporation', 'singles' => 'Binky Moon, LLC', 'site' => 'DotSite Inc.', - 'sj' => 'UNINETT Norid A/S', - 'sk' => 'SK-NIC, a.s.', + 'sj' => 'Svalbard and Jan Mayen {not in use - see also: .no}', + 'sk' => 'Slovakia [Slovak Republic]', 'ski' => 'STARTING DOT LIMITED', 'skin' => 'L\'Oréal', 'sky' => 'Sky International AG', 'skype' => 'Microsoft Corporation', - 'sl' => 'Sierratel', + 'sl' => 'Sierra Leone [Republic of]', 'sling' => 'Hughes Satellite Systems Corporation', - 'sm' => 'Telecom Italia San Marino S.p.A.', + 'sm' => 'San Marino [Republic of]', 'smart' => 'Smart Communications, Inc. [SMART]', 'smile' => 'Amazon Registry Services, Inc.', - 'sn' => 'Universite Cheikh Anta Diop -NIC Senegal', + 'sn' => 'Senegal [Republic of]', 'sncf' => 'SNCF [Société Nationale des Chemins de fer Francais]', - 'so' => 'Ministry of Post and Telecommunications', + 'so' => 'Somalia [Federal Republic of]', 'soccer' => 'Binky Moon, LLC', 'social' => 'United TLD Holdco Ltd.', 'softbank' => 'SoftBank Group Corp.', @@ -1210,11 +1182,11 @@ NIC Senegal', 'sport' => 'Global Association of International Sports Federations [GAISF]', 'spot' => 'Amazon Registry Services, Inc.', 'spreadbetting' => 'DOTSPREADBETTING REGISTRY LTD', - 'sr' => 'Telesur', + 'sr' => 'Suriname [Republic of]', 'srl' => 'InterNetX Corp.', 'srt' => 'FCA US LLC.', - 'ss' => 'Not assigned', - 'st' => 'Tecnisys', + 'ss' => 'South Sudan [Republic of]', + 'st' => 'São Tomé and Príncipe [Democratic Republic of]', 'stada' => 'STADA Arzneimittel AG', 'staples' => 'Staples, Inc.', 'star' => 'Star India Private Limited', @@ -1231,8 +1203,7 @@ NIC Senegal', 'studio' => 'United TLD Holdco Ltd.', 'study' => 'OPEN UNIVERSITIES AUSTRALIA PTY LTD', 'style' => 'Binky Moon, LLC', - 'su' => 'Russian Institute for Development of Public Networks -[ROSNIIROS]', + 'su' => 'Soviet Union [Union of Soviet Socialist Republics]', 'sucks' => 'Vox Populi Registry Ltd.', 'supplies' => 'Binky Moon, LLC', 'supply' => 'Binky Moon, LLC', @@ -1240,17 +1211,16 @@ NIC Senegal', 'surf' => 'Top Level Domain Holdings Limited', 'surgery' => 'Binky Moon, LLC', 'suzuki' => 'SUZUKI MOTOR CORPORATION', - 'sv' => 'SVNet', + 'sv' => 'El Salvador [Republic of]', 'swatch' => 'The Swatch Group Ltd', 'swiftcover' => 'Swiftcover Insurance Services Limited', 'swiss' => 'Swiss Confederation', - 'sx' => 'SX Registry SA B.V.', - 'sy' => 'National Agency for Network Services [NANS]', + 'sx' => 'Sint Maarten', + 'sy' => 'Syria [Syrian Arab Republic]', 'sydney' => 'State of New South Wales, Department of Premier and Cabinet', 'symantec' => 'Symantec Corporation', 'systems' => 'Binky Moon, LLC', - 'sz' => 'University of Swaziland -Department of Computer Science', + 'sz' => 'Swaziland [Kingdom of]', 'tab' => 'Tabcorp Holdings Limited', 'taipei' => 'Taipei City Government', 'talk' => 'Amazon Registry Services, Inc.', @@ -1261,22 +1231,22 @@ Department of Computer Science', 'tattoo' => 'Uniregistry, Corp.', 'tax' => 'Binky Moon, LLC', 'taxi' => 'Binky Moon, LLC', - 'tc' => 'Melrex TC', + 'tc' => 'Turks and Caicos Islands', 'tci' => 'Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.', - 'td' => 'l\'Agence de Développement des Technologies de l\'Information et de la Communication [ADETIC]', + 'td' => 'Chad [Republic of]', 'tdk' => 'TDK Corporation', 'team' => 'Binky Moon, LLC', 'tech' => 'Dot Tech LLC', 'technology' => 'Binky Moon, LLC', - 'tel' => 'Telnames Ltd.', + 'tel' => 'Telephone', 'telecity' => 'TelecityGroup International Limited', 'telefonica' => 'Telefónica S.A.', 'temasek' => 'Temasek Holdings [Private] Limited', 'tennis' => 'Binky Moon, LLC', 'teva' => 'Teva Pharmaceutical Industries Limited', - 'tf' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', - 'tg' => 'Autorite de Reglementation des secteurs de Postes et de Telecommunications [ART&P]', - 'th' => 'Thai Network Information Center Foundation', + 'tf' => 'French Southern and Antarctic Lands [Territory of the]', + 'tg' => 'Togo [Togolese Republic]', + 'th' => 'Thailand [Kingdom of]', 'thd' => 'Home Depot Product Authority, LLC', 'theater' => 'Binky Moon, LLC', 'theatre' => 'XYZ.COM LLC', @@ -1287,18 +1257,16 @@ Department of Computer Science', 'tips' => 'Binky Moon, LLC', 'tires' => 'Binky Moon, LLC', 'tirol' => 'punkt Tirol GmbH', - 'tj' => 'Information Technology Center', + 'tj' => 'Tajikistan [Republic of]', 'tjmaxx' => 'The TJX Companies, Inc.', 'tjx' => 'The TJX Companies, Inc.', - 'tk' => 'Telecommunication Tokelau Corporation [Teletok]', + 'tk' => 'Tokelau', 'tkmaxx' => 'The TJX Companies, Inc.', - 'tl' => 'Autoridade Nacional de Comunicações', - 'tm' => 'TM Domain Registry Ltd', + 'tl' => 'Timor-Leste [Democratic Republic of] [East Timor]', + 'tm' => 'Turkmenistan', 'tmall' => 'Alibaba Group Holding Limited', - 'tn' => 'Agence Tunisienne d\'Internet', - 'to' => 'Government of the Kingdom of Tonga -H.R.H. Crown Prince Tupouto\'a -c/o Consulate of Tonga', + 'tn' => 'Tunisia [Republic of]', + 'to' => 'Tonga [Kingdom of]', 'today' => 'Binky Moon, LLC', 'tokyo' => 'GMO Registry, Inc.', 'tools' => 'Binky Moon, LLC', @@ -1310,57 +1278,54 @@ c/o Consulate of Tonga', 'town' => 'Binky Moon, LLC', 'toyota' => 'TOYOTA MOTOR CORPORATION', 'toys' => 'Binky Moon, LLC', - 'tp' => 'Retired', - 'tr' => 'Middle East Technical University -Department of Computer Engineering', + 'tp' => 'Timor-Leste [Democratic Republic of] [East Timor] {being phased out - also see: .tl}', + 'tr' => 'Turkey [Republic of]', 'trade' => 'Elite Registry Limited', 'trading' => 'DOTTRADING REGISTRY LTD', 'training' => 'Binky Moon, LLC', - 'travel' => 'Dog Beach, LLC', + 'travel' => 'Travel', 'travelchannel' => 'Lifestyle Domain Holdings, Inc.', 'travelers' => 'Travelers TLD, LLC', 'travelersinsurance' => 'Travelers TLD, LLC', 'trust' => 'Artemis Internet Inc', 'trv' => 'Travelers TLD, LLC', - 'tt' => 'University of the West Indies -Faculty of Engineering', + 'tt' => 'Trinidad and Tobago [Republic of]', 'tube' => 'Latin American Telecom LLC', 'tui' => 'TUI AG', 'tunes' => 'Amazon Registry Services, Inc.', 'tushu' => 'Amazon Registry Services, Inc.', - 'tv' => 'Ministry of Finance and Tourism', + 'tv' => 'Tuvalu', 'tvs' => 'T V SUNDRAM IYENGAR & SONS PRIVATE LIMITED', - 'tw' => 'Taiwan Network Information Center [TWNIC]', - 'tz' => 'Tanzania Network Information Centre [tzNIC]', - 'ua' => 'Hostmaster Ltd.', + 'tw' => 'Taiwan [Republic of China]', + 'tz' => 'Tanzania [United Republic of]', + 'ua' => 'Ukraine', 'ubank' => 'National Australia Bank Limited', 'ubs' => 'UBS AG', 'uconnect' => 'FCA US LLC.', - 'ug' => 'Uganda Online Ltd.', - 'uk' => 'Nominet UK', - 'um' => 'Not assigned', + 'ug' => 'Uganda [Republic of]', + 'uk' => 'United Kingdom [United Kingdom of Great Britain and Northern Ireland]', + 'um' => 'United States Minor Outlying Islands {formerly - retired 2010 - see also: .us}', 'unicom' => 'China United Network Communications Corporation Limited', 'university' => 'Binky Moon, LLC', 'uno' => 'Dot Latin LLC', 'uol' => 'UBN INTERNET LTDA.', 'ups' => 'UPS Market Driver, Inc.', - 'us' => 'NeuStar, Inc.', - 'uy' => 'SeCIU - Universidad de la Republica', - 'uz' => 'Computerization and Information Technologies Developing Center -UZINFOCOM', - 'va' => 'Holy See - Vatican City State', + 'us' => 'United States of America and United States Minor Outlying Islands', + 'uy' => 'Uruguay [Oriental Republic of]', + 'uz' => 'Uzbekistan [Republic of]', + 'va' => 'Vatican City [Vatican City State]', 'vacations' => 'Binky Moon, LLC', 'vana' => 'Lifestyle Domain Holdings, Inc.', 'vanguard' => 'The Vanguard Group, Inc.', - 'vc' => 'Ministry of Telecommunications, Science, Technology and Industry', - 've' => 'Comisión Nacional de Telecomunicaciones [CONATEL]', + 'vc' => 'Saint Vincent and the Grenadines', + 've' => 'Venezuela [Bolivarian Republic of]', 'vegas' => 'Dot Vegas, Inc.', 'ventures' => 'Binky Moon, LLC', 'verisign' => 'VeriSign, Inc.', 'versicherung' => 'TLD-BOX Registrydienstleistungen GmbH', 'vet' => 'United TLD Holdco, Ltd', - 'vg' => 'Telecommunications Regulatory Commission of the Virgin Islands', - 'vi' => 'Virgin Islands Public Telecommunications System, Inc.', + 'vg' => 'British Virgin Islands [Virgin Islands]', + 'vi' => 'United States Virgin Islands [United States Virgin Islands]', 'viajes' => 'Binky Moon, LLC', 'video' => 'United TLD Holdco, Ltd', 'vig' => 'VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe', @@ -1376,7 +1341,7 @@ UZINFOCOM', 'viva' => 'Saudi Telecom Company', 'vivo' => 'Telefonica Brasil S.A.', 'vlaanderen' => 'DNS.be vzw', - 'vn' => 'Ministry of Information and Communications of Socialist Republic of Viet Nam', + 'vn' => 'Vietnam [Socialist Republic of]', 'vodka' => 'Top Level Domain Holdings Limited', 'volkswagen' => 'Volkswagen Group of America Inc.', 'volvo' => 'Volvo Holding Sverige Aktiebolag', @@ -1384,7 +1349,7 @@ UZINFOCOM', 'voting' => 'Valuetainment Corp.', 'voto' => 'Monolith Registry LLC', 'voyage' => 'Binky Moon, LLC', - 'vu' => 'Telecom Vanuatu Limited', + 'vu' => 'Vanuatu [Republic of]', 'vuelos' => 'Travel Reservations SRL', 'wales' => 'Nominet UK', 'walmart' => 'Wal-Mart Stores, Inc.', @@ -1403,7 +1368,7 @@ UZINFOCOM', 'wedding' => 'Top Level Domain Holdings Limited', 'weibo' => 'Sina Corporation', 'weir' => 'Weir Group IP Limited', - 'wf' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'wf' => 'Wallis and Futuna [Territory of the Wallis and Futuna Islands]', 'whoswho' => 'Who\'s Who Registry', 'wien' => 'punkt.wien GmbH', 'wiki' => 'Top Level Design, LLC', @@ -1419,7 +1384,7 @@ UZINFOCOM', 'works' => 'Binky Moon, LLC', 'world' => 'Binky Moon, LLC', 'wow' => 'Amazon Registry Services, Inc.', - 'ws' => 'Government of Samoa Ministry of Foreign Affairs & Trade', + 'ws' => 'Samoa [Independent State of]', 'wtc' => 'World Trade Centers Association, Inc.', 'wtf' => 'Binky Moon, LLC', 'xbox' => 'Microsoft Corporation', @@ -1591,30 +1556,30 @@ UZINFOCOM', 'テスト' => 'Internet Assigned Numbers Authority', '政务' => 'China Organizational Name Administration Center', 'xperia' => 'Sony Mobile Communications AB', - 'xxx' => 'ICM Registry LLC', + 'xxx' => 'Adult entertainment', 'xyz' => 'XYZ.COM LLC', 'yachts' => 'DERYachts, LLC', 'yahoo' => 'Yahoo! Domain Services Inc.', 'yamaxun' => 'Amazon Registry Services, Inc.', 'yandex' => 'YANDEX, LLC', - 'ye' => 'TeleYemen', + 'ye' => 'Yemen [Republic of]', 'yodobashi' => 'YODOBASHI CAMERA CO.,LTD.', 'yoga' => 'Top Level Domain Holdings Limited', 'yokohama' => 'GMO Registry, Inc.', 'you' => 'Amazon Registry Services, Inc.', 'youtube' => 'Charleston Road Registry Inc.', - 'yt' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'yt' => 'Mayotte [Department of]', 'yun' => 'QIHOO 360 TECHNOLOGY CO. LTD.', - 'za' => 'ZA Domain Name Authority', + 'za' => 'South Africa [Republic of]', 'zappos' => 'Amazon Registry Services, Inc.', 'zara' => 'Industria de Diseño Textil, S.A. [INDITEX, S.A.]', 'zero' => 'Amazon Registry Services, Inc.', 'zip' => 'Charleston Road Registry Inc.', 'zippo' => 'Zadco Company', - 'zm' => 'Zambia Information and Communications Technology Authority [ZICTA]', + 'zm' => 'Zambia [Republic of]', 'zone' => 'Binky Moon, LLC', 'zuerich' => 'Kanton Zürich [Canton of Zurich]', - 'zw' => 'Postal and Telecommunications Regulatory Authority of Zimbabwe [POTRAZ]', + 'zw' => 'Zimbabwe [Republic of]', ]; } \ No newline at end of file diff --git a/formats/php/TldEnum/TldInfo.php b/formats/php/TldEnum/TldInfo.php index 695659b..60ba981 100644 --- a/formats/php/TldEnum/TldInfo.php +++ b/formats/php/TldEnum/TldInfo.php @@ -54,8 +54,7 @@ class TldInfo { ], [ 'domain' => 'ac', - 'description' => 'Network Information Center [AC Domain Registry] -c/o Cable and Wireless [Ascension Island]', + 'description' => 'Ascension Island', 'type' => 'country-code', ], [ @@ -95,7 +94,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ad', - 'description' => 'Andorra Telecom', + 'description' => 'Andorra [Principality of]', 'type' => 'country-code', ], [ @@ -115,7 +114,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ae', - 'description' => 'Telecommunication Regulatory Authority [TRA]', + 'description' => 'United Arab Emirates', 'type' => 'country-code', ], [ @@ -125,7 +124,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'aero', - 'description' => 'Societe Internationale de Telecommunications Aeronautique [SITA INC USA]', + 'description' => 'Air-transport industry', 'type' => 'sponsored', ], [ @@ -135,7 +134,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'af', - 'description' => 'Ministry of Communications and IT', + 'description' => 'Afghanistan [Islamic Republic of]', 'type' => 'country-code', ], [ @@ -155,7 +154,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ag', - 'description' => 'UHSA School of Medicine', + 'description' => 'Antigua and Barbuda', 'type' => 'country-code', ], [ @@ -170,7 +169,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ai', - 'description' => 'Government of Anguilla', + 'description' => 'Anguilla', 'type' => 'country-code', ], [ @@ -205,7 +204,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'al', - 'description' => 'Electronic and Postal Communications Authority - AKEP', + 'description' => 'Albania [Republic of]', 'type' => 'country-code', ], [ @@ -250,7 +249,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'am', - 'description' => '"Internet Society" Non-governmental Organization', + 'description' => 'Armenia [Republic of]', 'type' => 'country-code', ], [ @@ -285,7 +284,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'an', - 'description' => 'Retired', + 'description' => 'Netherlands Antilles', 'type' => 'country-code', ], [ @@ -310,7 +309,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ao', - 'description' => 'Faculdade de Engenharia da Universidade Agostinho Neto', + 'description' => 'Angola [Republic of]', 'type' => 'country-code', ], [ @@ -335,7 +334,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'aq', - 'description' => 'Antarctica Network Information Centre Limited', + 'description' => 'Antarctica', 'type' => 'country-code', ], [ @@ -345,7 +344,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ar', - 'description' => 'Presidencia de la Nación – Secretaría Legal y Técnica', + 'description' => 'Argentina [Argentine Republic]', 'type' => 'country-code', ], [ @@ -370,7 +369,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'arpa', - 'description' => 'Internet Architecture Board [IAB]', + 'description' => 'Address and Routing Parameter Area', 'type' => 'infrastructure', ], [ @@ -385,7 +384,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'as', - 'description' => 'AS Domain Registry', + 'description' => 'American Samoa', 'type' => 'country-code', ], [ @@ -395,7 +394,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'asia', - 'description' => 'DotAsia Organisation Ltd.', + 'description' => 'Organisations and individuals in the Asia-Pacific region', 'type' => 'sponsored', ], [ @@ -405,7 +404,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'at', - 'description' => 'nic.at GmbH', + 'description' => 'Austria [Republic of]', 'type' => 'country-code', ], [ @@ -420,7 +419,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'au', - 'description' => '.au Domain Administration [auDA]', + 'description' => 'Australia [Commonwealth of]', 'type' => 'country-code', ], [ @@ -470,7 +469,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'aw', - 'description' => 'SETAR', + 'description' => 'Aruba', 'type' => 'country-code', ], [ @@ -480,7 +479,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ax', - 'description' => 'Ålands landskapsregering', + 'description' => 'Åland Islands', 'type' => 'country-code', ], [ @@ -490,7 +489,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'az', - 'description' => 'IntraNS', + 'description' => 'Azerbaijan [Republic of]', 'type' => 'country-code', ], [ @@ -500,7 +499,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'ba', - 'description' => 'Universtiy Telinformatic Centre [UTIC]', + 'description' => 'Bosnia and Herzegovina', 'type' => 'country-code', ], [ @@ -585,9 +584,7 @@ c/o Cable and Wireless [Ascension Island]', ], [ 'domain' => 'bb', - 'description' => 'Government of Barbados -Ministry of Economic Affairs and Development -Telecommunications Unit', + 'description' => 'Barbados', 'type' => 'country-code', ], [ @@ -617,12 +614,12 @@ Telecommunications Unit', ], [ 'domain' => 'bd', - 'description' => 'Posts and Telecommunications Division', + 'description' => 'Bangladesh [People\'s Republic of]', 'type' => 'country-code', ], [ 'domain' => 'be', - 'description' => 'DNS Belgium vzw/asbl', + 'description' => 'Belgium [Kingdom of]', 'type' => 'country-code', ], [ @@ -667,17 +664,17 @@ Telecommunications Unit', ], [ 'domain' => 'bf', - 'description' => 'ARCE-AutoritÈ de RÈgulation des Communications Electroniques', + 'description' => 'Burkina Faso', 'type' => 'country-code', ], [ 'domain' => 'bg', - 'description' => 'Register.BG', + 'description' => 'Bulgaria [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'bh', - 'description' => 'Telecommunications Regulatory Authority [TRA]', + 'description' => 'Bahrain [Kingdom of]', 'type' => 'country-code', ], [ @@ -687,7 +684,7 @@ Telecommunications Unit', ], [ 'domain' => 'bi', - 'description' => 'Centre National de l\'Informatique', + 'description' => 'Burundi [Republic of]', 'type' => 'country-code', ], [ @@ -722,17 +719,17 @@ Telecommunications Unit', ], [ 'domain' => 'biz', - 'description' => 'Neustar, Inc.', + 'description' => 'Business', 'type' => 'generic-restricted', ], [ 'domain' => 'bj', - 'description' => 'Benin Telecoms S.A.', + 'description' => 'Benin [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'bl', - 'description' => 'Not assigned', + 'description' => 'Saint Barthélemy [Collectivity of] {unassigned - see also: .gp and .fr}', 'type' => 'country-code', ], [ @@ -772,7 +769,7 @@ Telecommunications Unit', ], [ 'domain' => 'bm', - 'description' => 'Registry General Department, Ministry of Home Affairs', + 'description' => 'Bermuda', 'type' => 'country-code', ], [ @@ -787,7 +784,7 @@ Telecommunications Unit', ], [ 'domain' => 'bn', - 'description' => 'Authority for Info-communications Technology Industry of Brunei Darussalam [AITI]', + 'description' => 'Brunei [Nation of Brunei - the Abode of Peace] [Negara Brunei Darussalam]', 'type' => 'country-code', ], [ @@ -802,7 +799,7 @@ Telecommunications Unit', ], [ 'domain' => 'bo', - 'description' => 'Agencia para el Desarrollo de la Información de la Sociedad en Bolivia', + 'description' => 'Bolivia [Plurinational State of]', 'type' => 'country-code', ], [ @@ -882,12 +879,12 @@ Telecommunications Unit', ], [ 'domain' => 'bq', - 'description' => 'Not assigned', + 'description' => 'Caribbean Netherlands [Bonaire - Sint Eustatius and Saba] {unassigned - see also: .an and .nl}', 'type' => 'country-code', ], [ 'domain' => 'br', - 'description' => 'Comite Gestor da Internet no Brasil', + 'description' => 'Brazil [Federative Republic of]', 'type' => 'country-code', ], [ @@ -922,12 +919,12 @@ Telecommunications Unit', ], [ 'domain' => 'bs', - 'description' => 'The College of the Bahamas', + 'description' => 'Bahamas [Commonwealth of the]', 'type' => 'country-code', ], [ 'domain' => 'bt', - 'description' => 'Ministry of Information and Communications', + 'description' => 'Bhutan [Kingdom of]', 'type' => 'country-code', ], [ @@ -967,22 +964,22 @@ Telecommunications Unit', ], [ 'domain' => 'bv', - 'description' => 'UNINETT Norid A/S', + 'description' => 'Bouvet Island', 'type' => 'country-code', ], [ 'domain' => 'bw', - 'description' => 'Botswana Communications Regulatory Authority [BOCRA]', + 'description' => 'Botswana [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'by', - 'description' => 'Reliable Software, Ltd.', + 'description' => 'Belarus [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'bz', - 'description' => 'University of Belize', + 'description' => 'Belize', 'type' => 'country-code', ], [ @@ -992,7 +989,7 @@ Telecommunications Unit', ], [ 'domain' => 'ca', - 'description' => 'Canadian Internet Registration Authority [CIRA] Autorité Canadienne pour les enregistrements Internet [ACEI]', + 'description' => 'Canada', 'type' => 'country-code', ], [ @@ -1127,7 +1124,7 @@ Telecommunications Unit', ], [ 'domain' => 'cat', - 'description' => 'Fundacio puntCAT', + 'description' => 'Catalan', 'type' => 'sponsored', ], [ @@ -1162,13 +1159,12 @@ Telecommunications Unit', ], [ 'domain' => 'cc', - 'description' => 'eNIC Cocos [Keeling] Islands Pty. -Ltd. d/b/a Island Internet Services', + 'description' => 'Cocos [Keeling] Islands [Territory of the]', 'type' => 'country-code', ], [ 'domain' => 'cd', - 'description' => 'Office Congolais des Postes et Télécommunications - OCPT', + 'description' => 'Congo [Democratic Republic of the] [Congo-Kinshasa]', 'type' => 'country-code', ], [ @@ -1193,7 +1189,7 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'cf', - 'description' => 'Societe Centrafricaine de Telecommunications [SOCATEL]', + 'description' => 'Central African Republic', 'type' => 'country-code', ], [ @@ -1208,12 +1204,12 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'cg', - 'description' => 'ONPT Congo and Interpoint Switzerland', + 'description' => 'Congo [Republic of] [Congo-Brazzaville]', 'type' => 'country-code', ], [ 'domain' => 'ch', - 'description' => 'SWITCH The Swiss Education & Research Network', + 'description' => 'Switzerland [Swiss Confederation]', 'type' => 'country-code', ], [ @@ -1278,7 +1274,7 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'ci', - 'description' => 'Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire [ARTCI]', + 'description' => 'Ivory Coast [Republic of Côte d\'Ivoire]', 'type' => 'country-code', ], [ @@ -1323,12 +1319,12 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'ck', - 'description' => 'Telecom Cook Islands Ltd.', + 'description' => 'Cook Islands', 'type' => 'country-code', ], [ 'domain' => 'cl', - 'description' => 'NIC Chile [University of Chile]', + 'description' => 'Chile [Republic of]', 'type' => 'country-code', ], [ @@ -1378,17 +1374,17 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'cm', - 'description' => 'Cameroon Telecommunications [CAMTEL]', + 'description' => 'Cameroon [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'cn', - 'description' => 'China Internet Network Information Center [CNNIC]', + 'description' => 'China [People\'s Republic of]', 'type' => 'country-code', ], [ 'domain' => 'co', - 'description' => '.CO Internet S.A.S.', + 'description' => 'Colombia [Republic of]', 'type' => 'country-code', ], [ @@ -1418,7 +1414,7 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'com', - 'description' => 'VeriSign Global Registry Services', + 'description' => 'Commercial organizations', 'type' => 'generic', ], [ @@ -1498,7 +1494,7 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'coop', - 'description' => 'DotCooperation LLC', + 'description' => 'Cooperatives', 'type' => 'sponsored', ], [ @@ -1528,8 +1524,7 @@ Ltd. d/b/a Island Internet Services', ], [ 'domain' => 'cr', - 'description' => 'National Academy of Sciences -Academia Nacional de Ciencias', + 'description' => 'Costa Rica [Republic of]', 'type' => 'country-code', ], [ @@ -1579,9 +1574,7 @@ Academia Nacional de Ciencias', ], [ 'domain' => 'cu', - 'description' => 'CENIAInternet -Industria y San Jose -Capitolio Nacional', + 'description' => 'Cuba [Republic of]', 'type' => 'country-code', ], [ @@ -1591,22 +1584,22 @@ Capitolio Nacional', ], [ 'domain' => 'cv', - 'description' => 'Agência Nacional das Comunicações [ANAC]', + 'description' => 'Cape Verde [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'cw', - 'description' => 'University of Curacao', + 'description' => 'Curaçao [Country of]', 'type' => 'country-code', ], [ 'domain' => 'cx', - 'description' => 'Christmas Island Domain Administration Limited', + 'description' => 'Christmas Island [Territory of]', 'type' => 'country-code', ], [ 'domain' => 'cy', - 'description' => 'University of Cyprus', + 'description' => 'Cyprus [Republic of]', 'type' => 'country-code', ], [ @@ -1621,7 +1614,7 @@ Capitolio Nacional', ], [ 'domain' => 'cz', - 'description' => 'CZ.NIC, z.s.p.o', + 'description' => 'Czech Republic', 'type' => 'country-code', ], [ @@ -1676,7 +1669,7 @@ Capitolio Nacional', ], [ 'domain' => 'de', - 'description' => 'DENIC eG', + 'description' => 'Germany [Federal Republic of]', 'type' => 'country-code', ], [ @@ -1801,17 +1794,17 @@ Capitolio Nacional', ], [ 'domain' => 'dj', - 'description' => 'Djibouti Telecom S.A', + 'description' => 'Djibouti [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'dk', - 'description' => 'Dansk Internet Forum', + 'description' => 'Denmark [Kingdom of]', 'type' => 'country-code', ], [ 'domain' => 'dm', - 'description' => 'DotDM Corporation', + 'description' => 'Dominica [Commonwealth of]', 'type' => 'country-code', ], [ @@ -1821,8 +1814,7 @@ Capitolio Nacional', ], [ 'domain' => 'do', - 'description' => 'Pontificia Universidad Catolica Madre y Maestra -Recinto Santo Tomas de Aquino', + 'description' => 'Dominican Republic', 'type' => 'country-code', ], [ @@ -1922,7 +1914,7 @@ Recinto Santo Tomas de Aquino', ], [ 'domain' => 'dz', - 'description' => 'CERIST', + 'description' => 'Algeria [People\'s Democratic Republic of]', 'type' => 'country-code', ], [ @@ -1937,7 +1929,7 @@ Recinto Santo Tomas de Aquino', ], [ 'domain' => 'ec', - 'description' => 'ECUADORDOMAIN S.A.', + 'description' => 'Ecuador [Republic of]', 'type' => 'country-code', ], [ @@ -1952,7 +1944,7 @@ Recinto Santo Tomas de Aquino', ], [ 'domain' => 'edu', - 'description' => 'EDUCAUSE', + 'description' => 'Educational establishments', 'type' => 'sponsored', ], [ @@ -1962,18 +1954,17 @@ Recinto Santo Tomas de Aquino', ], [ 'domain' => 'ee', - 'description' => 'Eesti Interneti Sihtasutus [EIS]', + 'description' => 'Estonia [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'eg', - 'description' => 'Egyptian Universities Network [EUN] -Supreme Council of Universities', + 'description' => 'Egypt [Arab Republic of]', 'type' => 'country-code', ], [ 'domain' => 'eh', - 'description' => 'Not assigned', + 'description' => 'Western Sahara {reserved}', 'type' => 'country-code', ], [ @@ -2023,7 +2014,7 @@ Supreme Council of Universities', ], [ 'domain' => 'er', - 'description' => 'Eritrea Telecommunication Services Corporation [EriTel]', + 'description' => 'Eritrea [State of]', 'type' => 'country-code', ], [ @@ -2038,7 +2029,7 @@ Supreme Council of Universities', ], [ 'domain' => 'es', - 'description' => 'Red.es', + 'description' => 'Spain [Kingdom of]', 'type' => 'country-code', ], [ @@ -2058,7 +2049,7 @@ Supreme Council of Universities', ], [ 'domain' => 'et', - 'description' => 'Ethio telecom', + 'description' => 'Ethiopia [Federal Democratic Republic of]', 'type' => 'country-code', ], [ @@ -2068,7 +2059,7 @@ Supreme Council of Universities', ], [ 'domain' => 'eu', - 'description' => 'EURid vzw/asbl', + 'description' => 'European Union', 'type' => 'country-code', ], [ @@ -2193,7 +2184,7 @@ Supreme Council of Universities', ], [ 'domain' => 'fi', - 'description' => 'Finnish Communications Regulatory Authority', + 'description' => 'Finland [Republic of]', 'type' => 'country-code', ], [ @@ -2268,13 +2259,12 @@ Supreme Council of Universities', ], [ 'domain' => 'fj', - 'description' => 'The University of the South Pacific -IT Services', + 'description' => 'Fiji [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'fk', - 'description' => 'Falkland Islands Government', + 'description' => 'Falkland Islands [Malvinas]', 'type' => 'country-code', ], [ @@ -2314,12 +2304,12 @@ IT Services', ], [ 'domain' => 'fm', - 'description' => 'FSM Telecommunications Corporation', + 'description' => 'Micronesia [Federated States of]', 'type' => 'country-code', ], [ 'domain' => 'fo', - 'description' => 'FO Council', + 'description' => 'Faroe Islands', 'type' => 'country-code', ], [ @@ -2374,7 +2364,7 @@ IT Services', ], [ 'domain' => 'fr', - 'description' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'description' => 'France [French Republic]', 'type' => 'country-code', ], [ @@ -2449,7 +2439,7 @@ IT Services', ], [ 'domain' => 'ga', - 'description' => 'Agence Nationale des Infrastructures Numériques et des Fréquences [ANINF]', + 'description' => 'Gabon [Gabonese Republic]', 'type' => 'country-code', ], [ @@ -2494,7 +2484,7 @@ IT Services', ], [ 'domain' => 'gb', - 'description' => 'Reserved Domain - IANA', + 'description' => 'United Kingdom [United Kingdom of Great Britain and Northern Ireland]', 'type' => 'country-code', ], [ @@ -2504,7 +2494,7 @@ IT Services', ], [ 'domain' => 'gd', - 'description' => 'The National Telecommunications Regulatory Commission [NTRC]', + 'description' => 'Grenada', 'type' => 'country-code', ], [ @@ -2514,7 +2504,7 @@ IT Services', ], [ 'domain' => 'ge', - 'description' => 'Caucasus Online LLC', + 'description' => 'Georgia', 'type' => 'country-code', ], [ @@ -2539,12 +2529,12 @@ IT Services', ], [ 'domain' => 'gf', - 'description' => 'Net Plus', + 'description' => 'French Guiana', 'type' => 'country-code', ], [ 'domain' => 'gg', - 'description' => 'Island Networks Ltd.', + 'description' => 'Guernsey [Bailiwick of]', 'type' => 'country-code', ], [ @@ -2554,12 +2544,12 @@ IT Services', ], [ 'domain' => 'gh', - 'description' => 'Network Computer Systems Limited', + 'description' => 'Ghana [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'gi', - 'description' => 'Sapphire Networks', + 'description' => 'Gibraltar', 'type' => 'country-code', ], [ @@ -2584,7 +2574,7 @@ IT Services', ], [ 'domain' => 'gl', - 'description' => 'TELE Greenland A/S', + 'description' => 'Greenland', 'type' => 'country-code', ], [ @@ -2614,7 +2604,7 @@ IT Services', ], [ 'domain' => 'gm', - 'description' => 'GM-NIC', + 'description' => 'Gambia [Republic of The]', 'type' => 'country-code', ], [ @@ -2639,7 +2629,7 @@ IT Services', ], [ 'domain' => 'gn', - 'description' => 'Centre National des Sciences Halieutiques de Boussoura', + 'description' => 'Guinea [Republic of]', 'type' => 'country-code', ], [ @@ -2699,23 +2689,22 @@ IT Services', ], [ 'domain' => 'gov', - 'description' => 'General Services Administration -Attn: QTDC, 2E08 [.gov Domain Registration]', + 'description' => 'US government', 'type' => 'sponsored', ], [ 'domain' => 'gp', - 'description' => 'Networking Technologies Group', + 'description' => 'Guadeloupe', 'type' => 'country-code', ], [ 'domain' => 'gq', - 'description' => 'GETESA', + 'description' => 'Equatorial Guinea [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'gr', - 'description' => 'ICS-FORTH GR', + 'description' => 'Greece [Hellenic Republic]', 'type' => 'country-code', ], [ @@ -2755,17 +2744,17 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'gs', - 'description' => 'Government of South Georgia and South Sandwich Islands [GSGSSI]', + 'description' => 'South Georgia and the South Sandwich Islands', 'type' => 'country-code', ], [ 'domain' => 'gt', - 'description' => 'Universidad del Valle de Guatemala', + 'description' => 'Guatemala [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'gu', - 'description' => 'University of Guam', + 'description' => 'Guam', 'type' => 'country-code', ], [ @@ -2800,12 +2789,12 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'gw', - 'description' => 'Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau', + 'description' => 'Guinea-Bissau [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'gy', - 'description' => 'University of Guyana', + 'description' => 'Guyana [Co-operative Republic of]', 'type' => 'country-code', ], [ @@ -2900,7 +2889,7 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'hk', - 'description' => 'Hong Kong Internet Registration Corporation Ltd.', + 'description' => 'Hong Kong [Hong Kong Special Administrative Region of the People\'s Republic of China]', 'type' => 'country-code', ], [ @@ -2910,12 +2899,12 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'hm', - 'description' => 'HM Domain Registry', + 'description' => 'Heard Island and McDonald Islands', 'type' => 'country-code', ], [ 'domain' => 'hn', - 'description' => 'Red de Desarrollo Sostenible Honduras', + 'description' => 'Honduras [Republic of]', 'type' => 'country-code', ], [ @@ -3015,7 +3004,7 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'hr', - 'description' => 'CARNet - Croatian Academic and Research Network', + 'description' => 'Croatia [Republic of]', 'type' => 'country-code', ], [ @@ -3025,7 +3014,7 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'ht', - 'description' => 'Consortium FDS/RDDH', + 'description' => 'Haiti [Republic of]', 'type' => 'country-code', ], [ @@ -3035,7 +3024,7 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'hu', - 'description' => 'Council of Hungarian Internet Providers [CHIP]', + 'description' => 'Hungary', 'type' => 'country-code', ], [ @@ -3075,14 +3064,12 @@ Attn: QTDC, 2E08 [.gov Domain Registration]', ], [ 'domain' => 'id', - 'description' => 'Perkumpulan Pengelola Nama Domain Internet Indonesia [PANDI]', + 'description' => 'Indonesia [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ie', - 'description' => 'University College Dublin -Computing Services -Computer Centre', + 'description' => 'Ireland [Republic of]', 'type' => 'country-code', ], [ @@ -3107,12 +3094,12 @@ Computer Centre', ], [ 'domain' => 'il', - 'description' => 'Internet Society of Israel', + 'description' => 'Israel [State of]', 'type' => 'country-code', ], [ 'domain' => 'im', - 'description' => 'Isle of Man Government', + 'description' => 'Isle of Man', 'type' => 'country-code', ], [ @@ -3137,7 +3124,7 @@ Computer Centre', ], [ 'domain' => 'in', - 'description' => 'National Internet Exchange of India', + 'description' => 'India [Republic of]', 'type' => 'country-code', ], [ @@ -3152,7 +3139,7 @@ Computer Centre', ], [ 'domain' => 'info', - 'description' => 'Afilias Limited', + 'description' => 'Informational sites', 'type' => 'generic', ], [ @@ -3182,7 +3169,7 @@ Computer Centre', ], [ 'domain' => 'int', - 'description' => 'Internet Assigned Numbers Authority', + 'description' => 'International treaty-based organizations', 'type' => 'sponsored', ], [ @@ -3207,8 +3194,7 @@ Computer Centre', ], [ 'domain' => 'io', - 'description' => 'IO Top Level Domain Registry -Cable and Wireless', + 'description' => 'British Indian Ocean Territory', 'type' => 'country-code', ], [ @@ -3218,12 +3204,12 @@ Cable and Wireless', ], [ 'domain' => 'iq', - 'description' => 'Communications and Media Commission [CMC]', + 'description' => 'Iraq [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ir', - 'description' => 'Institute for Research in Fundamental Sciences', + 'description' => 'Iran [Islamic Republic of]', 'type' => 'country-code', ], [ @@ -3233,7 +3219,7 @@ Cable and Wireless', ], [ 'domain' => 'is', - 'description' => 'ISNIC - Internet Iceland ltd.', + 'description' => 'Iceland', 'type' => 'country-code', ], [ @@ -3258,7 +3244,7 @@ Cable and Wireless', ], [ 'domain' => 'it', - 'description' => 'IIT - CNR', + 'description' => 'Italy [Italian Republic]', 'type' => 'country-code', ], [ @@ -3303,7 +3289,7 @@ Cable and Wireless', ], [ 'domain' => 'je', - 'description' => 'Island Networks [Jersey] Ltd.', + 'description' => 'Jersey [Bailiwick of]', 'type' => 'country-code', ], [ @@ -3338,7 +3324,7 @@ Cable and Wireless', ], [ 'domain' => 'jm', - 'description' => 'University of West Indies', + 'description' => 'Jamaica [Commonwealth of]', 'type' => 'country-code', ], [ @@ -3353,12 +3339,12 @@ Cable and Wireless', ], [ 'domain' => 'jo', - 'description' => 'National Information Technology Center [NITC]', + 'description' => 'Jordan [Hashemite Kingdom of]', 'type' => 'country-code', ], [ 'domain' => 'jobs', - 'description' => 'Employ Media LLC', + 'description' => 'Employment-related sites', 'type' => 'sponsored', ], [ @@ -3378,7 +3364,7 @@ Cable and Wireless', ], [ 'domain' => 'jp', - 'description' => 'Japan Registry Services Co., Ltd.', + 'description' => 'Japan', 'type' => 'country-code', ], [ @@ -3413,7 +3399,7 @@ Cable and Wireless', ], [ 'domain' => 'ke', - 'description' => 'Kenya Network Information Center [KeNIC]', + 'description' => 'Kenya [Republic of]', 'type' => 'country-code', ], [ @@ -3438,17 +3424,17 @@ Cable and Wireless', ], [ 'domain' => 'kg', - 'description' => 'AsiaInfo Telecommunication Enterprise', + 'description' => 'Kyrgyzstan [Kyrgyz Republic]', 'type' => 'country-code', ], [ 'domain' => 'kh', - 'description' => 'Telecommunication Regulator of Cambodia [TRC]', + 'description' => 'Cambodia [Kingdom of]', 'type' => 'country-code', ], [ 'domain' => 'ki', - 'description' => 'Ministry of Communications, Transport, and Tourism Development', + 'description' => 'Kiribati [Republic of]', 'type' => 'country-code', ], [ @@ -3483,12 +3469,12 @@ Cable and Wireless', ], [ 'domain' => 'km', - 'description' => 'Comores Telecom', + 'description' => 'Comoros [Union of the]', 'type' => 'country-code', ], [ 'domain' => 'kn', - 'description' => 'Ministry of Finance, Sustainable Development Information & Technology', + 'description' => 'Saint Kitts and Nevis [Federation of]', 'type' => 'country-code', ], [ @@ -3508,7 +3494,7 @@ Cable and Wireless', ], [ 'domain' => 'kp', - 'description' => 'Star Joint Venture Company', + 'description' => 'Korea [Democratic People\'s Republic of] [North Korea]', 'type' => 'country-code', ], [ @@ -3523,7 +3509,7 @@ Cable and Wireless', ], [ 'domain' => 'kr', - 'description' => 'Korea Internet & Security Agency [KISA]', + 'description' => 'Korea [Republic of] [South Korea]', 'type' => 'country-code', ], [ @@ -3543,12 +3529,12 @@ Cable and Wireless', ], [ 'domain' => 'kw', - 'description' => 'Communications and Information Technology Regulatory Authority', + 'description' => 'Kuwait [State of Kuwait]', 'type' => 'country-code', ], [ 'domain' => 'ky', - 'description' => 'Utility Regulation and Competition Office [OfReg]', + 'description' => 'Cayman Islands', 'type' => 'country-code', ], [ @@ -3558,12 +3544,12 @@ Cable and Wireless', ], [ 'domain' => 'kz', - 'description' => 'Association of IT Companies of Kazakhstan', + 'description' => 'Kazakhstan [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'la', - 'description' => 'Lao National Internet Committee [LANIC], Ministry of Posts and Telecommunications', + 'description' => 'Laos [Lao People\'s Democratic Republic]', 'type' => 'country-code', ], [ @@ -3648,13 +3634,12 @@ Cable and Wireless', ], [ 'domain' => 'lb', - 'description' => 'American University of Beirut -Computing and Networking Services', + 'description' => 'Lebanon [Lebanese Republic]', 'type' => 'country-code', ], [ 'domain' => 'lc', - 'description' => 'University of Puerto Rico', + 'description' => 'Saint Lucia', 'type' => 'country-code', ], [ @@ -3699,7 +3684,7 @@ Computing and Networking Services', ], [ 'domain' => 'li', - 'description' => 'SWITCH The Swiss Education & Research Network', + 'description' => 'Liechtenstein [Principality of]', 'type' => 'country-code', ], [ @@ -3789,8 +3774,7 @@ Computing and Networking Services', ], [ 'domain' => 'lk', - 'description' => 'Council for Information Technology -LK Domain Registrar', + 'description' => 'Sri Lanka [Democratic Socialist Republic of]', 'type' => 'country-code', ], [ @@ -3860,17 +3844,17 @@ LK Domain Registrar', ], [ 'domain' => 'lr', - 'description' => 'Data Technology Solutions, Inc.', + 'description' => 'Liberia [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ls', - 'description' => 'National University of Lesotho', + 'description' => 'Lesotho [Kingdom of]', 'type' => 'country-code', ], [ 'domain' => 'lt', - 'description' => 'Kaunas University of Technology', + 'description' => 'Lithuania [Republic of]', 'type' => 'country-code', ], [ @@ -3885,7 +3869,7 @@ LK Domain Registrar', ], [ 'domain' => 'lu', - 'description' => 'RESTENA', + 'description' => 'Luxembourg [Grand Duchy of]', 'type' => 'country-code', ], [ @@ -3910,19 +3894,17 @@ LK Domain Registrar', ], [ 'domain' => 'lv', - 'description' => 'University of Latvia -Institute of Mathematics and Computer Science -Department of Network Solutions [DNS]', + 'description' => 'Latvia [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ly', - 'description' => 'General Post and Telecommunication Company', + 'description' => 'Libya', 'type' => 'country-code', ], [ 'domain' => 'ma', - 'description' => 'Agence Nationale de Réglementation des Télécommunications [ANRT]', + 'description' => 'Morocco', 'type' => 'country-code', ], [ @@ -4012,8 +3994,7 @@ Department of Network Solutions [DNS]', ], [ 'domain' => 'mc', - 'description' => 'Gouvernement de Monaco -Direction des Communications Electroniques', + 'description' => 'Monaco [Principality of]', 'type' => 'country-code', ], [ @@ -4033,12 +4014,12 @@ Direction des Communications Electroniques', ], [ 'domain' => 'md', - 'description' => 'MoldData S.E.', + 'description' => 'Moldova [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'me', - 'description' => 'Government of Montenegro', + 'description' => 'Montenegro', 'type' => 'country-code', ], [ @@ -4098,17 +4079,17 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mf', - 'description' => 'Not assigned', + 'description' => 'Saint Martin [Collectivity of] {unassigned - see also: .gp and .fr}', 'type' => 'country-code', ], [ 'domain' => 'mg', - 'description' => 'NIC-MG [Network Information Center Madagascar]', + 'description' => 'Madagascar [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'mh', - 'description' => 'Office of the Cabinet', + 'description' => 'Marshall Islands [Republic of the]', 'type' => 'country-code', ], [ @@ -4123,7 +4104,7 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mil', - 'description' => 'DoD Network Information Center', + 'description' => 'US military', 'type' => 'sponsored', ], [ @@ -4148,12 +4129,12 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mk', - 'description' => 'Macedonian Academic Research Network Skopje', + 'description' => 'Macedonia [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ml', - 'description' => 'Agence des Technologies de l’Information et de la Communication', + 'description' => 'Mali [Republic of]', 'type' => 'country-code', ], [ @@ -4168,7 +4149,7 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mm', - 'description' => 'Ministry of Communications, Posts & Telegraphs', + 'description' => 'Myanmar [Republic of the Union of] [Burma]', 'type' => 'country-code', ], [ @@ -4178,17 +4159,17 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mn', - 'description' => 'Datacom Co., Ltd.', + 'description' => 'Mongolia', 'type' => 'country-code', ], [ 'domain' => 'mo', - 'description' => 'Macao Post and Telecommunications Bureau [CTT]', + 'description' => 'Macau [Macau Special Administrative Region of the People\'s Republic of China] [Macao]', 'type' => 'country-code', ], [ 'domain' => 'mobi', - 'description' => 'Afilias Technologies Limited dba dotMobi', + 'description' => 'Mobile', 'type' => 'generic', ], [ @@ -4288,22 +4269,22 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mp', - 'description' => 'Saipan Datacom, Inc.', + 'description' => 'Northern Mariana Islands [Commonwealth of the]', 'type' => 'country-code', ], [ 'domain' => 'mq', - 'description' => 'MEDIASERV', + 'description' => 'Martinique', 'type' => 'country-code', ], [ 'domain' => 'mr', - 'description' => 'Université de Nouakchott Al Aasriya', + 'description' => 'Mauritania [Islamic Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ms', - 'description' => 'MNI Networks Ltd.', + 'description' => 'Montserrat', 'type' => 'country-code', ], [ @@ -4313,7 +4294,7 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mt', - 'description' => 'NIC [Malta]', + 'description' => 'Malta [Republic of]', 'type' => 'country-code', ], [ @@ -4333,12 +4314,12 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mu', - 'description' => 'Internet Direct Ltd', + 'description' => 'Mauritius [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'museum', - 'description' => 'Museum Domain Management Association', + 'description' => 'Museums', 'type' => 'sponsored', ], [ @@ -4353,34 +4334,32 @@ Direction des Communications Electroniques', ], [ 'domain' => 'mv', - 'description' => 'Dhiraagu Pvt. Ltd. [DHIVEHINET]', + 'description' => 'Maldives [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'mw', - 'description' => 'Malawi Sustainable Development Network Programme -[Malawi SDNP]', + 'description' => 'Malawi [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'mx', - 'description' => 'NIC-Mexico -ITESM - Campus Monterrey', + 'description' => 'Mexico [United Mexican States]', 'type' => 'country-code', ], [ 'domain' => 'my', - 'description' => 'MYNIC Berhad', + 'description' => 'Malaysia', 'type' => 'country-code', ], [ 'domain' => 'mz', - 'description' => 'Centro de Informatica de Universidade Eduardo Mondlane', + 'description' => 'Mozambique [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'na', - 'description' => 'Namibian Network Information Center', + 'description' => 'Namibia [Republic of]', 'type' => 'country-code', ], [ @@ -4400,7 +4379,7 @@ ITESM - Campus Monterrey', ], [ 'domain' => 'name', - 'description' => 'VeriSign Information Services, Inc.', + 'description' => 'Individuals', 'type' => 'generic-restricted', ], [ @@ -4425,12 +4404,12 @@ ITESM - Campus Monterrey', ], [ 'domain' => 'nc', - 'description' => 'Office des Postes et Telecommunications', + 'description' => 'New Caledonia', 'type' => 'country-code', ], [ 'domain' => 'ne', - 'description' => 'SONITEL', + 'description' => 'Niger [Republic of]', 'type' => 'country-code', ], [ @@ -4440,7 +4419,7 @@ ITESM - Campus Monterrey', ], [ 'domain' => 'net', - 'description' => 'VeriSign Global Registry Services', + 'description' => 'Network', 'type' => 'generic', ], [ @@ -4495,7 +4474,7 @@ ITESM - Campus Monterrey', ], [ 'domain' => 'nf', - 'description' => 'Norfolk Island Data Services', + 'description' => 'Norfolk Island [Territory of]', 'type' => 'country-code', ], [ @@ -4505,7 +4484,7 @@ ITESM - Campus Monterrey', ], [ 'domain' => 'ng', - 'description' => 'Nigeria Internet Registration Association', + 'description' => 'Nigeria [Federal Republic of]', 'type' => 'country-code', ], [ @@ -4520,8 +4499,7 @@ ITESM - Campus Monterrey', ], [ 'domain' => 'ni', - 'description' => 'Universidad Nacional del Ingernieria -Centro de Computo', + 'description' => 'Nicaragua [Republic of]', 'type' => 'country-code', ], [ @@ -4556,12 +4534,12 @@ Centro de Computo', ], [ 'domain' => 'nl', - 'description' => 'SIDN [Stichting Internet Domeinregistratie Nederland]', + 'description' => 'Netherlands', 'type' => 'country-code', ], [ 'domain' => 'no', - 'description' => 'UNINETT Norid A/S', + 'description' => 'Norway [Kingdom of]', 'type' => 'country-code', ], [ @@ -4596,12 +4574,12 @@ Centro de Computo', ], [ 'domain' => 'np', - 'description' => 'Mercantile Communications Pvt. Ltd.', + 'description' => 'Nepal [Federal Democratic Republic of]', 'type' => 'country-code', ], [ 'domain' => 'nr', - 'description' => 'CENPAC NET', + 'description' => 'Nauru [Republic of]', 'type' => 'country-code', ], [ @@ -4621,7 +4599,7 @@ Centro de Computo', ], [ 'domain' => 'nu', - 'description' => 'The IUSN Foundation', + 'description' => 'Niue', 'type' => 'country-code', ], [ @@ -4631,7 +4609,7 @@ Centro de Computo', ], [ 'domain' => 'nz', - 'description' => 'InternetNZ', + 'description' => 'New Zealand', 'type' => 'country-code', ], [ @@ -4681,7 +4659,7 @@ Centro de Computo', ], [ 'domain' => 'om', - 'description' => 'Telecommunications Regulatory Authority [TRA]', + 'description' => 'Oman [Sultanate of]', 'type' => 'country-code', ], [ @@ -4736,7 +4714,7 @@ Centro de Computo', ], [ 'domain' => 'org', - 'description' => 'Public Interest Registry [PIR]', + 'description' => 'Non-profit organizations', 'type' => 'generic', ], [ @@ -4776,7 +4754,7 @@ Centro de Computo', ], [ 'domain' => 'pa', - 'description' => 'Universidad Tecnologica de Panama', + 'description' => 'Panama [Republic of]', 'type' => 'country-code', ], [ @@ -4841,7 +4819,7 @@ Centro de Computo', ], [ 'domain' => 'pe', - 'description' => 'Red Cientifica Peruana', + 'description' => 'Peru [Republic of]', 'type' => 'country-code', ], [ @@ -4851,7 +4829,7 @@ Centro de Computo', ], [ 'domain' => 'pf', - 'description' => 'Gouvernement de la Polynésie française', + 'description' => 'French Polynesia and Clipperton Island', 'type' => 'country-code', ], [ @@ -4861,14 +4839,12 @@ Centro de Computo', ], [ 'domain' => 'pg', - 'description' => 'PNG DNS Administration -Vice Chancellors Office -The Papua New Guinea University of Technology', + 'description' => 'Papua New Guinea [Independent State of]', 'type' => 'country-code', ], [ 'domain' => 'ph', - 'description' => 'PH Domain Foundation', + 'description' => 'Philippines [Republic of the]', 'type' => 'country-code', ], [ @@ -4963,12 +4939,12 @@ The Papua New Guinea University of Technology', ], [ 'domain' => 'pk', - 'description' => 'PKNIC', + 'description' => 'Pakistan [Islamic Republic of]', 'type' => 'country-code', ], [ 'domain' => 'pl', - 'description' => 'Research and Academic Computer Network', + 'description' => 'Poland [Republic of]', 'type' => 'country-code', ], [ @@ -4998,12 +4974,12 @@ The Papua New Guinea University of Technology', ], [ 'domain' => 'pm', - 'description' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'description' => 'Saint Pierre and Miquelon', 'type' => 'country-code', ], [ 'domain' => 'pn', - 'description' => 'Pitcairn Island Administration', + 'description' => 'Pitcairn Islands [Pitcairn - Henderson - Ducie and Oeno Islands]', 'type' => 'country-code', ], [ @@ -5038,7 +5014,7 @@ The Papua New Guinea University of Technology', ], [ 'domain' => 'pr', - 'description' => 'Gauss Research Laboratory Inc.', + 'description' => 'Puerto Rico [Commonwealth of]', 'type' => 'country-code', ], [ @@ -5063,8 +5039,7 @@ The Papua New Guinea University of Technology', ], [ 'domain' => 'pro', - 'description' => 'Registry Services Corporation -dba RegistryPro', + 'description' => 'Profession', 'type' => 'generic-restricted', ], [ @@ -5119,14 +5094,12 @@ dba RegistryPro', ], [ 'domain' => 'ps', - 'description' => 'Ministry Of Telecommunications & -Information Technology, -Government Computer Center.', + 'description' => 'Palestine [State of]', 'type' => 'country-code', ], [ 'domain' => 'pt', - 'description' => 'Associação DNS.PT', + 'description' => 'Portugal [Portuguese Republic]', 'type' => 'country-code', ], [ @@ -5136,7 +5109,7 @@ Government Computer Center.', ], [ 'domain' => 'pw', - 'description' => 'Micronesia Investment and Development Corporation', + 'description' => 'Palau [Republic of]', 'type' => 'country-code', ], [ @@ -5146,12 +5119,12 @@ Government Computer Center.', ], [ 'domain' => 'py', - 'description' => 'NIC-PY', + 'description' => 'Paraguay [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'qa', - 'description' => 'Communications Regulatory Authority', + 'description' => 'Qatar [State of]', 'type' => 'country-code', ], [ @@ -5191,7 +5164,7 @@ Government Computer Center.', ], [ 'domain' => 're', - 'description' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'description' => 'Réunion', 'type' => 'country-code', ], [ @@ -5356,7 +5329,7 @@ Government Computer Center.', ], [ 'domain' => 'ro', - 'description' => 'National Institute for R&D in Informatics', + 'description' => 'Romania', 'type' => 'country-code', ], [ @@ -5386,7 +5359,7 @@ Government Computer Center.', ], [ 'domain' => 'rs', - 'description' => 'Serbian National Internet Domain Registry [RNIDS]', + 'description' => 'Serbia [Republic of]', 'type' => 'country-code', ], [ @@ -5396,7 +5369,7 @@ Government Computer Center.', ], [ 'domain' => 'ru', - 'description' => 'Coordination Center for TLD RU', + 'description' => 'Russia [Russian Federation]', 'type' => 'country-code', ], [ @@ -5416,7 +5389,7 @@ Government Computer Center.', ], [ 'domain' => 'rw', - 'description' => 'Rwanda Information Communication and Technology Association [RICTA]', + 'description' => 'Rwanda [Republic of]', 'type' => 'country-code', ], [ @@ -5431,7 +5404,7 @@ Government Computer Center.', ], [ 'domain' => 'sa', - 'description' => 'Communications and Information Technology Commission', + 'description' => 'Saudi Arabia [Kingdom of]', 'type' => 'country-code', ], [ @@ -5521,7 +5494,7 @@ Government Computer Center.', ], [ 'domain' => 'sb', - 'description' => 'Solomon Telekom Company Limited', + 'description' => 'Solomon Islands', 'type' => 'country-code', ], [ @@ -5536,7 +5509,7 @@ Government Computer Center.', ], [ 'domain' => 'sc', - 'description' => 'VCS Pty Ltd', + 'description' => 'Seychelles [Republic of]', 'type' => 'country-code', ], [ @@ -5601,12 +5574,12 @@ Government Computer Center.', ], [ 'domain' => 'sd', - 'description' => 'Sudan Internet Society', + 'description' => 'Sudan [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'se', - 'description' => 'The Internet Infrastructure Foundation', + 'description' => 'Sweden [Kingdom of]', 'type' => 'country-code', ], [ @@ -5681,12 +5654,12 @@ Government Computer Center.', ], [ 'domain' => 'sg', - 'description' => 'Singapore Network Information Centre [SGNIC] Pte Ltd', + 'description' => 'Singapore [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'sh', - 'description' => 'Government of St. Helena', + 'description' => 'Saint Helena', 'type' => 'country-code', ], [ @@ -5756,7 +5729,7 @@ Government Computer Center.', ], [ 'domain' => 'si', - 'description' => 'Academic and Research Network of Slovenia [ARNES]', + 'description' => 'Slovenia [Republic of]', 'type' => 'country-code', ], [ @@ -5781,12 +5754,12 @@ Government Computer Center.', ], [ 'domain' => 'sj', - 'description' => 'UNINETT Norid A/S', + 'description' => 'Svalbard and Jan Mayen {not in use - see also: .no}', 'type' => 'country-code', ], [ 'domain' => 'sk', - 'description' => 'SK-NIC, a.s.', + 'description' => 'Slovakia [Slovak Republic]', 'type' => 'country-code', ], [ @@ -5811,7 +5784,7 @@ Government Computer Center.', ], [ 'domain' => 'sl', - 'description' => 'Sierratel', + 'description' => 'Sierra Leone [Republic of]', 'type' => 'country-code', ], [ @@ -5821,7 +5794,7 @@ Government Computer Center.', ], [ 'domain' => 'sm', - 'description' => 'Telecom Italia San Marino S.p.A.', + 'description' => 'San Marino [Republic of]', 'type' => 'country-code', ], [ @@ -5836,8 +5809,7 @@ Government Computer Center.', ], [ 'domain' => 'sn', - 'description' => 'Universite Cheikh Anta Diop -NIC Senegal', + 'description' => 'Senegal [Republic of]', 'type' => 'country-code', ], [ @@ -5847,7 +5819,7 @@ NIC Senegal', ], [ 'domain' => 'so', - 'description' => 'Ministry of Post and Telecommunications', + 'description' => 'Somalia [Federal Republic of]', 'type' => 'country-code', ], [ @@ -5927,7 +5899,7 @@ NIC Senegal', ], [ 'domain' => 'sr', - 'description' => 'Telesur', + 'description' => 'Suriname [Republic of]', 'type' => 'country-code', ], [ @@ -5942,12 +5914,12 @@ NIC Senegal', ], [ 'domain' => 'ss', - 'description' => 'Not assigned', + 'description' => 'South Sudan [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'st', - 'description' => 'Tecnisys', + 'description' => 'São Tomé and Príncipe [Democratic Republic of]', 'type' => 'country-code', ], [ @@ -6032,8 +6004,7 @@ NIC Senegal', ], [ 'domain' => 'su', - 'description' => 'Russian Institute for Development of Public Networks -[ROSNIIROS]', + 'description' => 'Soviet Union [Union of Soviet Socialist Republics]', 'type' => 'country-code', ], [ @@ -6073,7 +6044,7 @@ NIC Senegal', ], [ 'domain' => 'sv', - 'description' => 'SVNet', + 'description' => 'El Salvador [Republic of]', 'type' => 'country-code', ], [ @@ -6093,12 +6064,12 @@ NIC Senegal', ], [ 'domain' => 'sx', - 'description' => 'SX Registry SA B.V.', + 'description' => 'Sint Maarten', 'type' => 'country-code', ], [ 'domain' => 'sy', - 'description' => 'National Agency for Network Services [NANS]', + 'description' => 'Syria [Syrian Arab Republic]', 'type' => 'country-code', ], [ @@ -6118,8 +6089,7 @@ NIC Senegal', ], [ 'domain' => 'sz', - 'description' => 'University of Swaziland -Department of Computer Science', + 'description' => 'Swaziland [Kingdom of]', 'type' => 'country-code', ], [ @@ -6174,7 +6144,7 @@ Department of Computer Science', ], [ 'domain' => 'tc', - 'description' => 'Melrex TC', + 'description' => 'Turks and Caicos Islands', 'type' => 'country-code', ], [ @@ -6184,7 +6154,7 @@ Department of Computer Science', ], [ 'domain' => 'td', - 'description' => 'l\'Agence de Développement des Technologies de l\'Information et de la Communication [ADETIC]', + 'description' => 'Chad [Republic of]', 'type' => 'country-code', ], [ @@ -6209,7 +6179,7 @@ Department of Computer Science', ], [ 'domain' => 'tel', - 'description' => 'Telnames Ltd.', + 'description' => 'Telephone', 'type' => 'sponsored', ], [ @@ -6239,17 +6209,17 @@ Department of Computer Science', ], [ 'domain' => 'tf', - 'description' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'description' => 'French Southern and Antarctic Lands [Territory of the]', 'type' => 'country-code', ], [ 'domain' => 'tg', - 'description' => 'Autorite de Reglementation des secteurs de Postes et de Telecommunications [ART&P]', + 'description' => 'Togo [Togolese Republic]', 'type' => 'country-code', ], [ 'domain' => 'th', - 'description' => 'Thai Network Information Center Foundation', + 'description' => 'Thailand [Kingdom of]', 'type' => 'country-code', ], [ @@ -6304,7 +6274,7 @@ Department of Computer Science', ], [ 'domain' => 'tj', - 'description' => 'Information Technology Center', + 'description' => 'Tajikistan [Republic of]', 'type' => 'country-code', ], [ @@ -6319,7 +6289,7 @@ Department of Computer Science', ], [ 'domain' => 'tk', - 'description' => 'Telecommunication Tokelau Corporation [Teletok]', + 'description' => 'Tokelau', 'type' => 'country-code', ], [ @@ -6329,12 +6299,12 @@ Department of Computer Science', ], [ 'domain' => 'tl', - 'description' => 'Autoridade Nacional de Comunicações', + 'description' => 'Timor-Leste [Democratic Republic of] [East Timor]', 'type' => 'country-code', ], [ 'domain' => 'tm', - 'description' => 'TM Domain Registry Ltd', + 'description' => 'Turkmenistan', 'type' => 'country-code', ], [ @@ -6344,14 +6314,12 @@ Department of Computer Science', ], [ 'domain' => 'tn', - 'description' => 'Agence Tunisienne d\'Internet', + 'description' => 'Tunisia [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'to', - 'description' => 'Government of the Kingdom of Tonga -H.R.H. Crown Prince Tupouto\'a -c/o Consulate of Tonga', + 'description' => 'Tonga [Kingdom of]', 'type' => 'country-code', ], [ @@ -6411,13 +6379,12 @@ c/o Consulate of Tonga', ], [ 'domain' => 'tp', - 'description' => 'Retired', + 'description' => 'Timor-Leste [Democratic Republic of] [East Timor] {being phased out - also see: .tl}', 'type' => 'country-code', ], [ 'domain' => 'tr', - 'description' => 'Middle East Technical University -Department of Computer Engineering', + 'description' => 'Turkey [Republic of]', 'type' => 'country-code', ], [ @@ -6437,7 +6404,7 @@ Department of Computer Engineering', ], [ 'domain' => 'travel', - 'description' => 'Dog Beach, LLC', + 'description' => 'Travel', 'type' => 'sponsored', ], [ @@ -6467,8 +6434,7 @@ Department of Computer Engineering', ], [ 'domain' => 'tt', - 'description' => 'University of the West Indies -Faculty of Engineering', + 'description' => 'Trinidad and Tobago [Republic of]', 'type' => 'country-code', ], [ @@ -6493,7 +6459,7 @@ Faculty of Engineering', ], [ 'domain' => 'tv', - 'description' => 'Ministry of Finance and Tourism', + 'description' => 'Tuvalu', 'type' => 'country-code', ], [ @@ -6503,17 +6469,17 @@ Faculty of Engineering', ], [ 'domain' => 'tw', - 'description' => 'Taiwan Network Information Center [TWNIC]', + 'description' => 'Taiwan [Republic of China]', 'type' => 'country-code', ], [ 'domain' => 'tz', - 'description' => 'Tanzania Network Information Centre [tzNIC]', + 'description' => 'Tanzania [United Republic of]', 'type' => 'country-code', ], [ 'domain' => 'ua', - 'description' => 'Hostmaster Ltd.', + 'description' => 'Ukraine', 'type' => 'country-code', ], [ @@ -6533,17 +6499,17 @@ Faculty of Engineering', ], [ 'domain' => 'ug', - 'description' => 'Uganda Online Ltd.', + 'description' => 'Uganda [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'uk', - 'description' => 'Nominet UK', + 'description' => 'United Kingdom [United Kingdom of Great Britain and Northern Ireland]', 'type' => 'country-code', ], [ 'domain' => 'um', - 'description' => 'Not assigned', + 'description' => 'United States Minor Outlying Islands {formerly - retired 2010 - see also: .us}', 'type' => 'country-code', ], [ @@ -6573,23 +6539,22 @@ Faculty of Engineering', ], [ 'domain' => 'us', - 'description' => 'NeuStar, Inc.', + 'description' => 'United States of America and United States Minor Outlying Islands', 'type' => 'country-code', ], [ 'domain' => 'uy', - 'description' => 'SeCIU - Universidad de la Republica', + 'description' => 'Uruguay [Oriental Republic of]', 'type' => 'country-code', ], [ 'domain' => 'uz', - 'description' => 'Computerization and Information Technologies Developing Center -UZINFOCOM', + 'description' => 'Uzbekistan [Republic of]', 'type' => 'country-code', ], [ 'domain' => 'va', - 'description' => 'Holy See - Vatican City State', + 'description' => 'Vatican City [Vatican City State]', 'type' => 'country-code', ], [ @@ -6609,12 +6574,12 @@ UZINFOCOM', ], [ 'domain' => 'vc', - 'description' => 'Ministry of Telecommunications, Science, Technology and Industry', + 'description' => 'Saint Vincent and the Grenadines', 'type' => 'country-code', ], [ 'domain' => 've', - 'description' => 'Comisión Nacional de Telecomunicaciones [CONATEL]', + 'description' => 'Venezuela [Bolivarian Republic of]', 'type' => 'country-code', ], [ @@ -6644,12 +6609,12 @@ UZINFOCOM', ], [ 'domain' => 'vg', - 'description' => 'Telecommunications Regulatory Commission of the Virgin Islands', + 'description' => 'British Virgin Islands [Virgin Islands]', 'type' => 'country-code', ], [ 'domain' => 'vi', - 'description' => 'Virgin Islands Public Telecommunications System, Inc.', + 'description' => 'United States Virgin Islands [United States Virgin Islands]', 'type' => 'country-code', ], [ @@ -6729,7 +6694,7 @@ UZINFOCOM', ], [ 'domain' => 'vn', - 'description' => 'Ministry of Information and Communications of Socialist Republic of Viet Nam', + 'description' => 'Vietnam [Socialist Republic of]', 'type' => 'country-code', ], [ @@ -6769,7 +6734,7 @@ UZINFOCOM', ], [ 'domain' => 'vu', - 'description' => 'Telecom Vanuatu Limited', + 'description' => 'Vanuatu [Republic of]', 'type' => 'country-code', ], [ @@ -6864,7 +6829,7 @@ UZINFOCOM', ], [ 'domain' => 'wf', - 'description' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'description' => 'Wallis and Futuna [Territory of the Wallis and Futuna Islands]', 'type' => 'country-code', ], [ @@ -6944,7 +6909,7 @@ UZINFOCOM', ], [ 'domain' => 'ws', - 'description' => 'Government of Samoa Ministry of Foreign Affairs & Trade', + 'description' => 'Samoa [Independent State of]', 'type' => 'country-code', ], [ @@ -7804,7 +7769,7 @@ UZINFOCOM', ], [ 'domain' => 'xxx', - 'description' => 'ICM Registry LLC', + 'description' => 'Adult entertainment', 'type' => 'sponsored', ], [ @@ -7834,7 +7799,7 @@ UZINFOCOM', ], [ 'domain' => 'ye', - 'description' => 'TeleYemen', + 'description' => 'Yemen [Republic of]', 'type' => 'country-code', ], [ @@ -7864,7 +7829,7 @@ UZINFOCOM', ], [ 'domain' => 'yt', - 'description' => 'Association Française pour le Nommage Internet en Coopération [A.F.N.I.C.]', + 'description' => 'Mayotte [Department of]', 'type' => 'country-code', ], [ @@ -7874,7 +7839,7 @@ UZINFOCOM', ], [ 'domain' => 'za', - 'description' => 'ZA Domain Name Authority', + 'description' => 'South Africa [Republic of]', 'type' => 'country-code', ], [ @@ -7904,7 +7869,7 @@ UZINFOCOM', ], [ 'domain' => 'zm', - 'description' => 'Zambia Information and Communications Technology Authority [ZICTA]', + 'description' => 'Zambia [Republic of]', 'type' => 'country-code', ], [ @@ -7919,7 +7884,7 @@ UZINFOCOM', ], [ 'domain' => 'zw', - 'description' => 'Postal and Telecommunications Regulatory Authority of Zimbabwe [POTRAZ]', + 'description' => 'Zimbabwe [Republic of]', 'type' => 'country-code', ]]; diff --git a/tlds.csv b/tlds.csv index 4393fee..4611b3f 100644 --- a/tlds.csv +++ b/tlds.csv @@ -8,8 +8,7 @@ abc,"Disney Enterprises, Inc.",generic able,Able Inc.,generic abogado,Top Level Domain Holdings Limited,generic abudhabi,Abu Dhabi Systems and Information Centre,generic -ac,"Network Information Center (AC Domain Registry) -c/o Cable and Wireless (Ascension Island)",country-code +ac,Ascension Island,country-code academy,"Binky Moon, LLC",generic accenture,Accenture plc,generic accountant,dot Accountant Limited,generic @@ -17,29 +16,29 @@ accountants,"Binky Moon, LLC",generic aco,ACO Severin Ahlmann GmbH & Co. KG,generic active,"Active Network, LLC",generic actor,United TLD Holdco Ltd.,generic -ad,Andorra Telecom,country-code +ad,Andorra (Principality of),country-code adac,Allgemeiner Deutscher Automobil-Club e.V. (ADAC),generic ads,Charleston Road Registry Inc.,generic adult,ICM Registry AD LLC,generic -ae,Telecommunication Regulatory Authority (TRA),country-code +ae,United Arab Emirates,country-code aeg,Aktiebolaget Electrolux,generic -aero,Societe Internationale de Telecommunications Aeronautique (SITA INC USA),sponsored +aero,Air-transport industry,sponsored aetna,Aetna Life Insurance Company,generic -af,Ministry of Communications and IT,country-code +af,Afghanistan (Islamic Republic of),country-code afamilycompany,"Johnson Shareholdings, Inc.",generic afl,Australian Football League,generic africa,ZA Central Registry NPC trading as Registry.Africa,generic -ag,UHSA School of Medicine,country-code +ag,Antigua and Barbuda,country-code agakhan,Fondation Aga Khan (Aga Khan Foundation),generic agency,"Binky Moon, LLC",generic -ai,Government of Anguilla,country-code +ai,Anguilla,country-code aig,"American International Group, Inc.",generic aigo,"aigo Digital Technology Co,Ltd.",generic airbus,Airbus S.A.S.,generic airforce,United TLD Holdco Ltd.,generic airtel,Bharti Airtel Limited,generic akdn,Fondation Aga Khan (Aga Khan Foundation),generic -al,Electronic and Postal Communications Authority - AKEP,country-code +al,Albania (Republic of),country-code alfaromeo,Fiat Chrysler Automobiles N.V.,generic alibaba,Alibaba Group Holding Limited,generic alipay,Alibaba Group Holding Limited,generic @@ -48,41 +47,41 @@ allstate,Allstate Fire and Casualty Insurance Company,generic ally,Ally Financial Inc.,generic alsace,REGION GRAND EST,generic alstom,ALSTOM,generic -am,"""Internet Society"" Non-governmental Organization",country-code +am,Armenia (Republic of),country-code americanexpress,"American Express Travel Related Services Company, Inc.",generic americanfamily,"AmFam, Inc.",generic amex,"American Express Travel Related Services Company, Inc.",generic amfam,"AmFam, Inc.",generic amica,Amica Mutual Insurance Company,generic amsterdam,Gemeente Amsterdam,generic -an,Retired,country-code +an,Netherlands Antilles,country-code analytics,Campus IP LLC,generic android,Charleston Road Registry Inc.,generic anquan,QIHOO 360 TECHNOLOGY CO. LTD.,generic anz,Australia and New Zealand Banking Group Limited,generic -ao,Faculdade de Engenharia da Universidade Agostinho Neto,country-code +ao,Angola (Republic of),country-code aol,OATH Inc.,generic apartments,"Binky Moon, LLC",generic app,Charleston Road Registry Inc.,generic apple,Apple Inc.,generic -aq,Antarctica Network Information Centre Limited,country-code +aq,Antarctica,country-code aquarelle,Aquarelle.com,generic -ar,Presidencia de la Nación – Secretaría Legal y Técnica,country-code +ar,Argentina (Argentine Republic),country-code arab,League of Arab States,generic aramco,Aramco Services Company,generic archi,STARTING DOT LIMITED,generic army,United TLD Holdco Ltd.,generic -arpa,Internet Architecture Board (IAB),infrastructure +arpa,Address and Routing Parameter Area,infrastructure art,UK Creative Ideas Limited,generic arte,Association Relative à la Télévision Européenne G.E.I.E.,generic -as,AS Domain Registry,country-code +as,American Samoa,country-code asda,"Wal-Mart Stores, Inc.",generic -asia,DotAsia Organisation Ltd.,sponsored +asia,Organisations and individuals in the Asia-Pacific region,sponsored associates,"Binky Moon, LLC",generic -at,nic.at GmbH,country-code +at,Austria (Republic of),country-code athleta,"The Gap, Inc.",generic attorney,"United TLD Holdco, Ltd",generic -au,.au Domain Administration (auDA),country-code +au,Australia (Commonwealth of),country-code auction,"United TLD HoldCo, Ltd.",generic audi,AUDI Aktiengesellschaft,generic audible,"Amazon Registry Services, Inc.",generic @@ -92,13 +91,13 @@ author,"Amazon Registry Services, Inc.",generic auto,Cars Registry Limited,generic autos,"DERAutos, LLC",generic avianca,Aerovias del Continente Americano S.A. Avianca,generic -aw,SETAR,country-code +aw,Aruba,country-code aws,"Amazon Registry Services, Inc.",generic -ax,Ålands landskapsregering,country-code +ax,Åland Islands,country-code axa,AXA SA,generic -az,IntraNS,country-code +az,Azerbaijan (Republic of),country-code azure,Microsoft Corporation,generic -ba,Universtiy Telinformatic Centre (UTIC),country-code +ba,Bosnia and Herzegovina,country-code baby,"Johnson & Johnson Services, Inc.",generic baidu,"Baidu, Inc.",generic banamex,Citigroup Inc.,generic @@ -115,16 +114,14 @@ baseball,"MLB Advanced Media DH, LLC",generic basketball,Fédération Internationale de Basketball (FIBA),generic bauhaus,Werkhaus GmbH,generic bayern,Bayern Connect GmbH,generic -bb,"Government of Barbados -Ministry of Economic Affairs and Development -Telecommunications Unit",country-code +bb,Barbados,country-code bbc,British Broadcasting Corporation,generic bbt,BB&T Corporation,generic bbva,"BANCO BILBAO VIZCAYA ARGENTARIA, S.A.",generic bcg,"The Boston Consulting Group, Inc.",generic bcn,Municipi de Barcelona,generic -bd,Posts and Telecommunications Division,country-code -be,DNS Belgium vzw/asbl,country-code +bd,Bangladesh (People's Republic of),country-code +be,Belgium (Kingdom of),country-code beats,"Beats Electronics, LLC",generic beauty,L'Oréal,generic beer,Top Level Domain Holdings Limited,generic @@ -133,20 +130,20 @@ berlin,dotBERLIN GmbH & Co. KG,generic best,BestTLD Pty Ltd,generic bestbuy,"BBY Solutions, Inc.",generic bet,Afilias plc,generic -bf,ARCE-AutoritÈ de RÈgulation des Communications Electroniques,country-code -bg,Register.BG,country-code -bh,Telecommunications Regulatory Authority (TRA),country-code +bf,Burkina Faso,country-code +bg,Bulgaria (Republic of),country-code +bh,Bahrain (Kingdom of),country-code bharti,Bharti Enterprises (Holding) Private Limited,generic -bi,Centre National de l'Informatique,country-code +bi,Burundi (Republic of),country-code bible,American Bible Society,generic bid,dot Bid Limited,generic bike,"Binky Moon, LLC",generic bing,Microsoft Corporation,generic bingo,"Binky Moon, LLC",generic bio,STARTING DOT LIMITED,generic -biz,"Neustar, Inc.",generic-restricted -bj,Benin Telecoms S.A.,country-code -bl,Not assigned,country-code +biz,Business,generic-restricted +bj,Benin (Republic of),country-code +bl,Saint Barthélemy (Collectivity of) {unassigned - see also: .gp and .fr},country-code black,Afilias plc,generic blackfriday,"Uniregistry, Corp.",generic blanco,BLANCO GmbH + Co KG,generic @@ -154,13 +151,13 @@ blockbuster,Dish DBS Corporation,generic blog,"Knock Knock WHOIS There, LLC",generic bloomberg,Bloomberg IP Holdings LLC,generic blue,Afilias plc,generic -bm,"Registry General Department, Ministry of Home Affairs",country-code +bm,Bermuda,country-code bms,Bristol-Myers Squibb Company,generic bmw,Bayerische Motoren Werke Aktiengesellschaft,generic -bn,Authority for Info-communications Technology Industry of Brunei Darussalam (AITI),country-code +bn,Brunei (Nation of Brunei - the Abode of Peace) [Negara Brunei Darussalam],country-code bnl,Banca Nazionale del Lavoro,generic bnpparibas,BNP Paribas,generic -bo,Agencia para el Desarrollo de la Información de la Sociedad en Bolivia,country-code +bo,Bolivia (Plurinational State of),country-code boats,"DERBoats, LLC",generic boehringer,Boehringer Ingelheim International GmbH,generic bofa,Bank of America Corporation,generic @@ -176,16 +173,16 @@ boston,"Boston TLD Management, LLC",generic bot,"Amazon Registry Services, Inc.",generic boutique,"Binky Moon, LLC",generic box,NS1 Limited,generic -bq,Not assigned,country-code -br,Comite Gestor da Internet no Brasil,country-code +bq,Caribbean Netherlands [Bonaire - Sint Eustatius and Saba] {unassigned - see also: .an and .nl},country-code +br,Brazil (Federative Republic of),country-code bradesco,Banco Bradesco S.A.,generic bridgestone,Bridgestone Corporation,generic broadway,"Celebrate Broadway, Inc.",generic broker,DOTBROKER REGISTRY LTD,generic brother,"Brother Industries, Ltd.",generic brussels,DNS.be vzw,generic -bs,The College of the Bahamas,country-code -bt,Ministry of Information and Communications,country-code +bs,Bahamas (Commonwealth of the),country-code +bt,Bhutan (Kingdom of),country-code budapest,Top Level Domain Holdings Limited,generic bugatti,Bugatti International SA,generic build,Plan Bee LLC,generic @@ -193,12 +190,12 @@ builders,"Binky Moon, LLC",generic business,"Binky Moon, LLC",generic buy,"Amazon Registry Services, INC",generic buzz,DOTSTRATEGY CO.,generic -bv,UNINETT Norid A/S,country-code -bw,Botswana Communications Regulatory Authority (BOCRA),country-code -by,"Reliable Software, Ltd.",country-code -bz,University of Belize,country-code +bv,Bouvet Island,country-code +bw,Botswana (Republic of),country-code +by,Belarus (Republic of),country-code +bz,Belize,country-code bzh,Association www.bzh,generic -ca,Canadian Internet Registration Authority (CIRA) Autorité Canadienne pour les enregistrements Internet (ACEI),country-code +ca,Canada,country-code cab,"Binky Moon, LLC",generic cafe,"Binky Moon, LLC",generic cal,Charleston Road Registry Inc.,generic @@ -225,25 +222,24 @@ case,CNH Industrial N.V.,generic caseih,CNH Industrial N.V.,generic cash,"Binky Moon, LLC",generic casino,"Binky Moon, LLC",generic -cat,Fundacio puntCAT,sponsored +cat,Catalan,sponsored catering,"Binky Moon, LLC",generic catholic,Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication),generic cba,COMMONWEALTH BANK OF AUSTRALIA,generic cbn,"The Christian Broadcasting Network, Inc.",generic cbre,"CBRE, Inc.",generic cbs,CBS Domains Inc.,generic -cc,"eNIC Cocos (Keeling) Islands Pty. -Ltd. d/b/a Island Internet Services",country-code -cd,Office Congolais des Postes et Télécommunications - OCPT,country-code +cc,Cocos (Keeling) Islands (Territory of the),country-code +cd,Congo (Democratic Republic of the) [Congo-Kinshasa],country-code ceb,The Corporate Executive Board Company,generic center,"Binky Moon, LLC",generic ceo,CEOTLD Pty Ltd,generic cern,"European Organization for Nuclear Research (""CERN"")",generic -cf,Societe Centrafricaine de Telecommunications (SOCATEL),country-code +cf,Central African Republic,country-code cfa,CFA Institute,generic cfd,DOTCFD REGISTRY LTD,generic -cg,ONPT Congo and Interpoint Switzerland,country-code -ch,SWITCH The Swiss Education & Research Network,country-code +cg,Congo (Republic of) [Congo-Brazzaville],country-code +ch,Switzerland (Swiss Confederation),country-code chanel,Chanel International B.V.,generic channel,Charleston Road Registry Inc.,generic charity,"Corn Lake, LLC",generic @@ -256,7 +252,7 @@ christmas,"Uniregistry, Corp.",generic chrome,Charleston Road Registry Inc.,generic chrysler,FCA US LLC.,generic church,"Binky Moon, LLC",generic -ci,Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI),country-code +ci,Ivory Coast (Republic of Côte d'Ivoire),country-code cipriani,Hotel Cipriani Srl,generic circle,"Amazon Registry Services, Inc.",generic cisco,"Cisco Technology, Inc.",generic @@ -265,8 +261,8 @@ citi,Citigroup Inc.,generic citic,CITIC Group Corporation,generic city,"Binky Moon, LLC",generic cityeats,"Lifestyle Domain Holdings, Inc.",generic -ck,Telecom Cook Islands Ltd.,country-code -cl,NIC Chile (University of Chile),country-code +ck,Cook Islands,country-code +cl,Chile (Republic of),country-code claims,"Binky Moon, LLC",generic cleaning,"Binky Moon, LLC",generic click,"Uniregistry, Corp.",generic @@ -276,15 +272,15 @@ clothing,"Binky Moon, LLC",generic cloud,ARUBA PEC S.p.A.,generic club,".CLUB DOMAINS, LLC",generic clubmed,Club Méditerranée S.A.,generic -cm,Cameroon Telecommunications (CAMTEL),country-code -cn,China Internet Network Information Center (CNNIC),country-code -co,.CO Internet S.A.S.,country-code +cm,Cameroon (Republic of),country-code +cn,China (People's Republic of),country-code +co,Colombia (Republic of),country-code coach,"Binky Moon, LLC",generic codes,"Binky Moon, LLC",generic coffee,"Binky Moon, LLC",generic college,XYZ.COM LLC,generic cologne,punkt.wien GmbH,generic -com,VeriSign Global Registry Services,generic +com,Commercial organizations,generic comcast,"Comcast IP Holdings I, LLC",generic commbank,COMMONWEALTH BANK OF AUSTRALIA,generic community,"Binky Moon, LLC",generic @@ -300,14 +296,13 @@ contractors,"Binky Moon, LLC",generic cooking,Top Level Domain Holdings Limited,generic cookingchannel,"Lifestyle Domain Holdings, Inc.",generic cool,"Binky Moon, LLC",generic -coop,DotCooperation LLC,sponsored +coop,Cooperatives,sponsored corsica,Collectivité Territoriale de Corse,generic country,Top Level Domain Holdings Limited,generic coupon,"Amazon Registry Services, Inc.",generic coupons,"Binky Moon, LLC",generic courses,OPEN UNIVERSITIES AUSTRALIA PTY LTD,generic -cr,"National Academy of Sciences -Academia Nacional de Ciencias",country-code +cr,Costa Rica (Republic of),country-code credit,"Binky Moon, LLC",generic creditcard,"Binky Moon, LLC",generic creditunion,"CUNA Performance Resources, LLC",generic @@ -317,17 +312,15 @@ crs,Federated Co-operatives Limited,generic cruise,Viking River Cruises (Bermuda) Ltd.,generic cruises,"Binky Moon, LLC",generic csc,"Alliance-One Services, Inc.",generic -cu,"CENIAInternet -Industria y San Jose -Capitolio Nacional",country-code +cu,Cuba (Republic of),country-code cuisinella,SALM S.A.S.,generic -cv,Agência Nacional das Comunicações (ANAC),country-code -cw,University of Curacao,country-code -cx,Christmas Island Domain Administration Limited,country-code -cy,University of Cyprus,country-code +cv,Cape Verde (Republic of),country-code +cw,Curaçao (Country of),country-code +cx,Christmas Island (Territory of),country-code +cy,Cyprus (Republic of),country-code cymru,Nominet UK,generic cyou,"Beijing Gamease Age Digital Technology Co., Ltd.",generic -cz,"CZ.NIC, z.s.p.o",country-code +cz,Czech Republic,country-code dabur,Dabur India Limited,generic dad,Charleston Road Registry Inc.,generic dance,United TLD Holdco Ltd.,generic @@ -338,7 +331,7 @@ datsun,"NISSAN MOTOR CO., LTD.",generic day,Charleston Road Registry Inc.,generic dclk,Charleston Road Registry Inc.,generic dds,Minds + Machines Group Limited,generic -de,DENIC eG,country-code +de,Germany (Federal Republic of),country-code deal,"Amazon Registry Services, Inc.",generic dealer,"Dealer Dot Com, Inc.",generic deals,"Binky Moon, LLC",generic @@ -363,12 +356,11 @@ discount,"Binky Moon, LLC",generic discover,Discover Financial Services,generic dish,Dish DBS Corporation,generic diy,"Lifestyle Domain Holdings, Inc.",generic -dj,Djibouti Telecom S.A,country-code -dk,Dansk Internet Forum,country-code -dm,DotDM Corporation,country-code +dj,Djibouti (Republic of),country-code +dk,Denmark (Kingdom of),country-code +dm,Dominica (Commonwealth of),country-code dnp,"Dai Nippon Printing Co., Ltd.",generic -do,"Pontificia Universidad Catolica Madre y Maestra -Recinto Santo Tomas de Aquino",country-code +do,Dominican Republic,country-code docs,Charleston Road Registry Inc.,generic doctor,"Binky Moon, LLC",generic dodge,FCA US LLC.,generic @@ -388,18 +380,17 @@ dupont,E. I. du Pont de Nemours and Company,generic durban,ZA Central Registry NPC trading as ZA Central Registry,generic dvag,Deutsche Vermögensberatung Aktiengesellschaft DVAG,generic dvr,Hughes Satellite Systems Corporation,generic -dz,CERIST,country-code +dz,Algeria (People's Democratic Republic of),country-code earth,"Interlink Co., Ltd.",generic eat,Charleston Road Registry Inc.,generic -ec,ECUADORDOMAIN S.A.,country-code +ec,Ecuador (Republic of),country-code eco,Big Room Inc.,generic edeka,EDEKA Verband kaufmännischer Genossenschaften e.V.,generic -edu,EDUCAUSE,sponsored +edu,Educational establishments,sponsored education,"Binky Moon, LLC",generic -ee,Eesti Interneti Sihtasutus (EIS),country-code -eg,"Egyptian Universities Network (EUN) -Supreme Council of Universities",country-code -eh,Not assigned,country-code +ee,Estonia (Republic of),country-code +eg,Egypt (Arab Republic of),country-code +eh,Western Sahara {reserved},country-code email,"Binky Moon, LLC",generic emerck,Merck KGaA,generic energy,"Binky Moon, LLC",generic @@ -409,16 +400,16 @@ enterprises,"Binky Moon, LLC",generic epost,Deutsche Post AG,generic epson,Seiko Epson Corporation,generic equipment,"Binky Moon, LLC",generic -er,Eritrea Telecommunication Services Corporation (EriTel),country-code +er,Eritrea (State of),country-code ericsson,Telefonaktiebolaget L M Ericsson,generic erni,ERNI Group Holding AG,generic -es,Red.es,country-code +es,Spain (Kingdom of),country-code esq,Charleston Road Registry Inc.,generic estate,"Binky Moon, LLC",generic esurance,Esurance Insurance Company,generic -et,Ethio telecom,country-code +et,Ethiopia (Federal Democratic Republic of),country-code etisalat,Emirates Telecommunications Corporation (trading as Etisalat),generic -eu,EURid vzw/asbl,country-code +eu,European Union,country-code eurovision,European Broadcasting Union (EBU),generic eus,Puntueus Fundazioa,generic events,"Binky Moon, LLC",generic @@ -443,7 +434,7 @@ fedex,Federal Express Corporation,generic feedback,"Top Level Spectrum, Inc.",generic ferrari,Fiat Chrysler Automobiles N.V.,generic ferrero,Ferrero Trading Lux S.A.,generic -fi,Finnish Communications Regulatory Authority,country-code +fi,Finland (Republic of),country-code fiat,Fiat Chrysler Automobiles N.V.,generic fidelity,Fidelity Brokerage Services LLC,generic fido,Rogers Communications Canada Inc.,generic @@ -458,9 +449,8 @@ fish,"Binky Moon, LLC",generic fishing,Top Level Domain Holdings Limited,generic fit,Minds + Machines Group Limited,generic fitness,"Binky Moon, LLC",generic -fj,"The University of the South Pacific -IT Services",country-code -fk,Falkland Islands Government,country-code +fj,Fiji (Republic of),country-code +fk,Falkland Islands (Malvinas),country-code flickr,Yahoo! Domain Services Inc.,generic flights,"Binky Moon, LLC",generic flir,"FLIR Systems, Inc.",generic @@ -468,8 +458,8 @@ florist,"Binky Moon, LLC",generic flowers,"Uniregistry, Corp.",generic flsmidth,Retired,generic fly,Charleston Road Registry Inc.,generic -fm,FSM Telecommunications Corporation,country-code -fo,FO Council,country-code +fm,Micronesia (Federated States of),country-code +fo,Faroe Islands,country-code foo,Charleston Road Registry Inc.,generic food,"Lifestyle Domain Holdings, Inc.",generic foodnetwork,"Lifestyle Domain Holdings, Inc.",generic @@ -480,7 +470,7 @@ forsale,"United TLD Holdco, LLC",generic forum,"Fegistry, LLC",generic foundation,"Binky Moon, LLC",generic fox,"FOX Registry, LLC",generic -fr,Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.),country-code +fr,France (French Republic),country-code free,"Amazon Registry Services, Inc.",generic fresenius,Fresenius Immobilien-Verwaltungs-GmbH,generic frl,FRLregistry B.V.,generic @@ -495,7 +485,7 @@ fund,"Binky Moon, LLC",generic furniture,"Binky Moon, LLC",generic futbol,"United TLD Holdco, Ltd.",generic fyi,"Binky Moon, LLC",generic -ga,Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF),country-code +ga,Gabon (Gabonese Republic),country-code gal,Asociación puntoGAL,generic gallery,"Binky Moon, LLC",generic gallo,"Gallo Vineyards, Inc.",generic @@ -504,36 +494,36 @@ game,"Uniregistry, Corp.",generic games,United TLD Holdco Ltd.,generic gap,"The Gap, Inc.",generic garden,Top Level Domain Holdings Limited,generic -gb,Reserved Domain - IANA,country-code +gb,United Kingdom (United Kingdom of Great Britain and Northern Ireland),country-code gbiz,Charleston Road Registry Inc.,generic -gd,The National Telecommunications Regulatory Commission (NTRC),country-code +gd,Grenada,country-code gdn,"Joint Stock Company ""Navigation-information systems""",generic -ge,Caucasus Online LLC,country-code +ge,Georgia,country-code gea,GEA Group Aktiengesellschaft,generic gent,Combell nv,generic genting,Resorts World Inc. Pte. Ltd.,generic george,"Wal-Mart Stores, Inc.",generic -gf,Net Plus,country-code -gg,Island Networks Ltd.,country-code +gf,French Guiana,country-code +gg,Guernsey (Bailiwick of),country-code ggee,"GMO Internet, Inc.",generic -gh,Network Computer Systems Limited,country-code -gi,Sapphire Networks,country-code +gh,Ghana (Republic of),country-code +gi,Gibraltar,country-code gift,"Uniregistry, Corp.",generic gifts,"Binky Moon, LLC",generic gives,United TLD Holdco Ltd.,generic giving,Giving Limited,generic -gl,TELE Greenland A/S,country-code +gl,Greenland,country-code glade,"Johnson Shareholdings, Inc.",generic glass,"Binky Moon, LLC",generic gle,Charleston Road Registry Inc.,generic global,Dot Global Domain Registry Limited,generic globo,Globo Comunicação e Participações S.A,generic -gm,GM-NIC,country-code +gm,Gambia (Republic of The),country-code gmail,Charleston Road Registry Inc.,generic gmbh,"Binky Moon, LLC",generic gmo,"GMO Internet, Inc.",generic gmx,1&1 Mail & Media GmbH,generic -gn,Centre National des Sciences Halieutiques de Boussoura,country-code +gn,Guinea (Republic of),country-code godaddy,"Go Daddy East, LLC",generic gold,"Binky Moon, LLC",generic goldpoint,"YODOBASHI CAMERA CO.,LTD.",generic @@ -545,11 +535,10 @@ goog,Charleston Road Registry Inc.,generic google,Charleston Road Registry Inc.,generic gop,"Republican State Leadership Committee, Inc.",generic got,"Amazon Registry Services, Inc.",generic -gov,"General Services Administration -Attn: QTDC, 2E08 (.gov Domain Registration)",sponsored -gp,Networking Technologies Group,country-code -gq,GETESA,country-code -gr,ICS-FORTH GR,country-code +gov,US government,sponsored +gp,Guadeloupe,country-code +gq,Equatorial Guinea (Republic of),country-code +gr,Greece (Hellenic Republic),country-code grainger,"Grainger Registry Services, LLC",generic graphics,"Binky Moon, LLC",generic gratis,"Binky Moon, LLC",generic @@ -557,17 +546,17 @@ green,DotGreen Registry Limited,generic gripe,"Binky Moon, LLC",generic grocery,"Wal-Mart Stores, Inc.",generic group,"Binky Moon, LLC",generic -gs,Government of South Georgia and South Sandwich Islands (GSGSSI),country-code -gt,Universidad del Valle de Guatemala,country-code -gu,University of Guam,country-code +gs,South Georgia and the South Sandwich Islands,country-code +gt,Guatemala (Republic of),country-code +gu,Guam,country-code guardian,The Guardian Life Insurance Company of America,generic gucci,Guccio Gucci S.p.a.,generic guge,Charleston Road Registry Inc.,generic guide,"Binky Moon, LLC",generic guitars,"Uniregistry, Corp.",generic guru,"Binky Moon, LLC",generic -gw,Autoridade Reguladora Nacional - Tecnologias de Informação e Comunicação da Guiné-Bissau,country-code -gy,University of Guyana,country-code +gw,Guinea-Bissau (Republic of),country-code +gy,Guyana (Co-operative Republic of),country-code hair,L'Oreal,generic hamburg,Hamburg Top-Level-Domain GmbH,generic hangout,Charleston Road Registry Inc.,generic @@ -586,10 +575,10 @@ hiphop,"Uniregistry, Corp.",generic hisamitsu,"Hisamitsu Pharmaceutical Co.,Inc.",generic hitachi,"Hitachi, Ltd.",generic hiv,"Uniregistry, Corp.",generic -hk,Hong Kong Internet Registration Corporation Ltd.,country-code +hk,Hong Kong (Hong Kong Special Administrative Region of the People's Republic of China),country-code hkt,PCCW-HKT DataCom Services Limited,generic -hm,HM Domain Registry,country-code -hn,Red de Desarrollo Sostenible Honduras,country-code +hm,Heard Island and McDonald Islands,country-code +hn,Honduras (Republic of),country-code hockey,"Binky Moon, LLC",generic holdings,"Binky Moon, LLC",generic holiday,"Binky Moon, LLC",generic @@ -609,11 +598,11 @@ hotels,Booking.com B.V.,generic hotmail,Microsoft Corporation,generic house,"Binky Moon, LLC",generic how,Charleston Road Registry Inc.,generic -hr,CARNet - Croatian Academic and Research Network,country-code +hr,Croatia (Republic of),country-code hsbc,HSBC Global Services (UK) Limited,generic -ht,Consortium FDS/RDDH,country-code +ht,Haiti (Republic of),country-code htc,Not assigned,generic -hu,Council of Hungarian Internet Providers (CHIP),country-code +hu,Hungary,country-code hughes,Hughes Satellite Systems Corporation,generic hyatt,"Hyatt GTLD, L.L.C.",generic hyundai,Hyundai Motor Company,generic @@ -621,46 +610,43 @@ ibm,International Business Machines Corporation,generic icbc,Industrial and Commercial Bank of China Limited,generic ice,"IntercontinentalExchange, Inc.",generic icu,Shortdot SA,generic -id,Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI),country-code -ie,"University College Dublin -Computing Services -Computer Centre",country-code +id,Indonesia (Republic of),country-code +ie,Ireland (Republic of),country-code ieee,IEEE Global LLC,generic ifm,ifm electronic gmbh,generic iinet,Retired,generic ikano,Ikano S.A.,generic -il,Internet Society of Israel,country-code -im,Isle of Man Government,country-code +il,Israel (State of),country-code +im,Isle of Man,country-code imamat,Fondation Aga Khan (Aga Khan Foundation),generic imdb,"Amazon Registry Services, Inc.",generic immo,"Binky Moon, LLC",generic immobilien,United TLD Holdco Ltd.,generic -in,National Internet Exchange of India,country-code +in,India (Republic of),country-code industries,"Binky Moon, LLC",generic infiniti,"NISSAN MOTOR CO., LTD.",generic -info,Afilias Limited,generic +info,Informational sites,generic ing,Charleston Road Registry Inc.,generic ink,"Top Level Design, LLC",generic institute,"Binky Moon, LLC",generic insurance,fTLD Registry Services LLC,generic insure,"Binky Moon, LLC",generic -int,Internet Assigned Numbers Authority,sponsored +int,International treaty-based organizations,sponsored intel,Intel Corporation,generic international,"Binky Moon, LLC",generic intuit,"Intuit Administrative Services, Inc.",generic investments,"Binky Moon, LLC",generic -io,"IO Top Level Domain Registry -Cable and Wireless",country-code +io,British Indian Ocean Territory,country-code ipiranga,Ipiranga Produtos de Petroleo S.A.,generic -iq,Communications and Media Commission (CMC),country-code -ir,Institute for Research in Fundamental Sciences,country-code +iq,Iraq (Republic of),country-code +ir,Iran (Islamic Republic of),country-code irish,"Binky Moon, LLC",generic -is,ISNIC - Internet Iceland ltd.,country-code +is,Iceland,country-code iselect,iSelect Ltd,generic ismaili,Fondation Aga Khan (Aga Khan Foundation),generic ist,Istanbul Metropolitan Municipality,generic istanbul,Istanbul Metropolitan Municipality,generic -it,IIT - CNR,country-code +it,Italy (Italian Republic),country-code itau,Itau Unibanco Holding S.A.,generic itv,ITV Services Limited,generic iveco,CNH Industrial N.V.,generic @@ -669,59 +655,59 @@ jaguar,Jaguar Land Rover Ltd,generic java,Oracle Corporation,generic jcb,"JCB Co., Ltd.",generic jcp,"JCP Media, Inc.",generic -je,Island Networks (Jersey) Ltd.,country-code +je,Jersey (Bailiwick of),country-code jeep,FCA US LLC.,generic jetzt,"Binky Moon, LLC",generic jewelry,"Binky Moon, LLC",generic jio,"Affinity Names, Inc.",generic jlc,Richemont DNS Inc.,generic jll,Jones Lang LaSalle Incorporated,generic -jm,University of West Indies,country-code +jm,Jamaica (Commonwealth of),country-code jmp,Matrix IP LLC,generic jnj,"Johnson & Johnson Services, Inc.",generic -jo,National Information Technology Center (NITC),country-code -jobs,Employ Media LLC,sponsored +jo,Jordan (Hashemite Kingdom of),country-code +jobs,Employment-related sites,sponsored joburg,ZA Central Registry NPC trading as ZA Central Registry,generic jot,"Amazon Registry Services, Inc.",generic joy,"Amazon Registry Services, Inc.",generic -jp,"Japan Registry Services Co., Ltd.",country-code +jp,Japan,country-code jpmorgan,"JPMorgan Chase Bank, National Association",generic jprs,"Japan Registry Services Co., Ltd.",generic juegos,"Uniregistry, Corp.",generic juniper,"JUNIPER NETWORKS, INC.",generic kaufen,United TLD Holdco Ltd.,generic kddi,KDDI CORPORATION,generic -ke,Kenya Network Information Center (KeNIC),country-code +ke,Kenya (Republic of),country-code kerryhotels,Kerry Trading Co. Limited,generic kerrylogistics,Kerry Trading Co. Limited,generic kerryproperties,Kerry Trading Co. Limited,generic kfh,Kuwait Finance House,generic -kg,AsiaInfo Telecommunication Enterprise,country-code -kh,Telecommunication Regulator of Cambodia (TRC),country-code -ki,"Ministry of Communications, Transport, and Tourism Development",country-code +kg,Kyrgyzstan (Kyrgyz Republic),country-code +kh,Cambodia (Kingdom of),country-code +ki,Kiribati (Republic of),country-code kia,KIA MOTORS CORPORATION,generic kim,Afilias plc,generic kinder,Ferrero Trading Lux S.A.,generic kindle,"Amazon Registry Services, Inc.",generic kitchen,"Binky Moon, LLC",generic kiwi,DOT KIWI LIMITED,generic -km,Comores Telecom,country-code -kn,"Ministry of Finance, Sustainable Development Information & Technology",country-code +km,Comoros (Union of the),country-code +kn,Saint Kitts and Nevis (Federation of),country-code koeln,punkt.wien GmbH,generic komatsu,Komatsu Ltd.,generic kosher,Kosher Marketing Assets LLC,generic -kp,Star Joint Venture Company,country-code +kp,Korea (Democratic People's Republic of) [North Korea],country-code kpmg,KPMG International Cooperative (KPMG International Genossenschaft),generic kpn,Koninklijke KPN N.V.,generic -kr,Korea Internet & Security Agency (KISA),country-code +kr,Korea (Republic of) [South Korea],country-code krd,KRG Department of Information Technology,generic kred,KredTLD Pty Ltd,generic kuokgroup,Kerry Trading Co. Limited,generic -kw,Communications and Information Technology Regulatory Authority,country-code -ky,Utility Regulation and Competition Office (OfReg),country-code +kw,Kuwait (State of Kuwait),country-code +ky,Cayman Islands,country-code kyoto,Academic Institution: Kyoto Jyoho Gakuen,generic -kz,Association of IT Companies of Kazakhstan,country-code -la,"Lao National Internet Committee (LANIC), Ministry of Posts and Telecommunications",country-code +kz,Kazakhstan (Republic of),country-code +la,Laos (Lao People's Democratic Republic),country-code lacaixa,CAIXA D'ESTALVIS I PENSIONS DE BARCELONA,generic ladbrokes,LADBROKES INTERNATIONAL PLC,generic lamborghini,Automobili Lamborghini S.p.A.,generic @@ -738,9 +724,8 @@ latino,Dish DBS Corporation,generic latrobe,La Trobe University,generic law,Minds + Machines Group Limited,generic lawyer,"United TLD Holdco, Ltd",generic -lb,"American University of Beirut -Computing and Networking Services",country-code -lc,University of Puerto Rico,country-code +lb,Lebanon (Lebanese Republic),country-code +lc,Saint Lucia,country-code lds,"IRI Domain Management, LLC",generic lease,"Binky Moon, LLC",generic leclerc,A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc,generic @@ -749,7 +734,7 @@ legal,"Binky Moon, LLC",generic lego,LEGO Juris A/S,generic lexus,TOYOTA MOTOR CORPORATION,generic lgbt,Afilias plc,generic -li,SWITCH The Swiss Education & Research Network,country-code +li,Liechtenstein (Principality of),country-code liaison,"Liaison Technologies, Incorporated",generic lidl,Schwarz Domains und Services GmbH & Co. KG,generic life,"Binky Moon, LLC",generic @@ -767,8 +752,7 @@ lipsy,Lipsy Ltd,generic live,United TLD Holdco Ltd.,generic living,"Lifestyle Domain Holdings, Inc.",generic lixil,LIXIL Group Corporation,generic -lk,"Council for Information Technology -LK Domain Registrar",country-code +lk,Sri Lanka (Democratic Socialist Republic of),country-code llc,Afilias plc,generic loan,dot Loan Limited,generic loans,"Binky Moon, LLC",generic @@ -782,21 +766,19 @@ lotto,Afilias plc,generic love,Merchant Law Group LLP,generic lpl,"LPL Holdings, Inc.",generic lplfinancial,"LPL Holdings, Inc.",generic -lr,"Data Technology Solutions, Inc.",country-code -ls,National University of Lesotho,country-code -lt,Kaunas University of Technology,country-code +lr,Liberia (Republic of),country-code +ls,Lesotho (Kingdom of),country-code +lt,Lithuania (Republic of),country-code ltd,"Binky Moon, LLC",generic ltda,InterNetX Corp.,generic -lu,RESTENA,country-code +lu,Luxembourg (Grand Duchy of),country-code lundbeck,H. Lundbeck A/S,generic lupin,LUPIN LIMITED,generic luxe,Top Level Domain Holdings Limited,generic luxury,Luxury Partners LLC,generic -lv,"University of Latvia -Institute of Mathematics and Computer Science -Department of Network Solutions (DNS)",country-code -ly,General Post and Telecommunication Company,country-code -ma,Agence Nationale de Réglementation des Télécommunications (ANRT),country-code +lv,Latvia (Republic of),country-code +ly,Libya,country-code +ma,Morocco,country-code macys,"Macys, Inc.",generic madrid,Comunidad de Madrid,generic maif,Mutuelle Assurance Instituteur France (MAIF),generic @@ -814,13 +796,12 @@ marshalls,"The TJX Companies, Inc.",generic maserati,Fiat Chrysler Automobiles N.V.,generic mattel,"Mattel Sites, Inc.",generic mba,"Binky Moon, LLC",generic -mc,"Gouvernement de Monaco -Direction des Communications Electroniques",country-code +mc,Monaco (Principality of),country-code mcd,Not assigned,generic mcdonalds,Not assigned,generic mckinsey,"McKinsey Holdings, Inc.",generic -md,MoldData S.E.,country-code -me,Government of Montenegro,country-code +md,Moldova (Republic of),country-code +me,Montenegro,country-code med,Medistry LLC,generic media,"Binky Moon, LLC",generic meet,Charleston Road Registry Inc.,generic @@ -832,25 +813,25 @@ menu,"Wedding TLD2, LLC",generic meo,Not assigned,generic merckmsd,"MSD Registry Holdings, Inc.",generic metlife,"MetLife Services and Solutions, LLC",generic -mf,Not assigned,country-code -mg,NIC-MG (Network Information Center Madagascar),country-code -mh,Office of the Cabinet,country-code +mf,Saint Martin (Collectivity of) {unassigned - see also: .gp and .fr},country-code +mg,Madagascar (Republic of),country-code +mh,Marshall Islands (Republic of the),country-code miami,Top Level Domain Holdings Limited,generic microsoft,Microsoft Corporation,generic -mil,DoD Network Information Center,sponsored +mil,US military,sponsored mini,Bayerische Motoren Werke Aktiengesellschaft,generic mint,"Intuit Administrative Services, Inc.",generic mit,Massachusetts Institute of Technology,generic mitsubishi,Mitsubishi Corporation,generic -mk,Macedonian Academic Research Network Skopje,country-code -ml,Agence des Technologies de l’Information et de la Communication,country-code +mk,Macedonia (Republic of),country-code +ml,Mali (Republic of),country-code mlb,"MLB Advanced Media DH, LLC",generic mls,The Canadian Real Estate Association,generic -mm,"Ministry of Communications, Posts & Telegraphs",country-code +mm,Myanmar (Republic of the Union of) [Burma],country-code mma,MMA IARD,generic -mn,"Datacom Co., Ltd.",country-code -mo,Macao Post and Telecommunications Bureau (CTT),country-code -mobi,Afilias Technologies Limited dba dotMobi,generic +mn,Mongolia,country-code +mo,Macau (Macau Special Administrative Region of the People's Republic of China) [Macao],country-code +mobi,Mobile,generic mobile,Dish DBS Corporation,generic mobily,GreenTech Consultancy Company W.L.L.,generic moda,United TLD Holdco Ltd.,generic @@ -870,39 +851,37 @@ motorcycles,"DERMotorcycles, LLC",generic mov,Charleston Road Registry Inc.,generic movie,"Binky Moon, LLC",generic movistar,Telefónica S.A.,generic -mp,"Saipan Datacom, Inc.",country-code -mq,MEDIASERV,country-code -mr,Université de Nouakchott Al Aasriya,country-code -ms,MNI Networks Ltd.,country-code +mp,Northern Mariana Islands (Commonwealth of the),country-code +mq,Martinique,country-code +mr,Mauritania (Islamic Republic of),country-code +ms,Montserrat,country-code msd,"MSD Registry Holdings, Inc.",generic -mt,NIC (Malta),country-code +mt,Malta (Republic of),country-code mtn,MTN Dubai Limited,generic mtpc,Retired,generic mtr,MTR Corporation Limited,generic -mu,Internet Direct Ltd,country-code -museum,Museum Domain Management Association,sponsored +mu,Mauritius (Republic of),country-code +museum,Museums,sponsored mutual,"Northwestern Mutual MU TLD Registry, LLC",generic mutuelle,Retired,generic -mv,Dhiraagu Pvt. Ltd. (DHIVEHINET),country-code -mw,"Malawi Sustainable Development Network Programme -(Malawi SDNP)",country-code -mx,"NIC-Mexico -ITESM - Campus Monterrey",country-code -my,MYNIC Berhad,country-code -mz,Centro de Informatica de Universidade Eduardo Mondlane,country-code -na,Namibian Network Information Center,country-code +mv,Maldives (Republic of),country-code +mw,Malawi (Republic of),country-code +mx,Mexico (United Mexican States),country-code +my,Malaysia,country-code +mz,Mozambique (Republic of),country-code +na,Namibia (Republic of),country-code nab,National Australia Bank Limited,generic nadex,"Nadex Domains, Inc",generic nagoya,"GMO Registry, Inc.",generic -name,"VeriSign Information Services, Inc.",generic-restricted +name,Individuals,generic-restricted nationwide,Nationwide Mutual Insurance Company,generic natura,NATURA COSMÉTICOS S.A.,generic navy,United TLD Holdco Ltd.,generic nba,"NBA REGISTRY, LLC",generic -nc,Office des Postes et Telecommunications,country-code -ne,SONITEL,country-code +nc,New Caledonia,country-code +ne,Niger (Republic of),country-code nec,NEC Corporation,generic -net,VeriSign Global Registry Services,generic +net,Network,generic netbank,COMMONWEALTH BANK OF AUSTRALIA,generic netflix,"Netflix, Inc.",generic network,"Binky Moon, LLC",generic @@ -913,35 +892,34 @@ news,United TLD Holdco Ltd.,generic next,Next plc,generic nextdirect,Next plc,generic nexus,Charleston Road Registry Inc.,generic -nf,Norfolk Island Data Services,country-code +nf,Norfolk Island (Territory of),country-code nfl,NFL Reg Ops LLC,generic -ng,Nigeria Internet Registration Association,country-code +ng,Nigeria (Federal Republic of),country-code ngo,Public Interest Registry,generic nhk,Japan Broadcasting Corporation (NHK),generic -ni,"Universidad Nacional del Ingernieria -Centro de Computo",country-code +ni,Nicaragua (Republic of),country-code nico,"DWANGO Co., Ltd.",generic nike,"NIKE, Inc.",generic nikon,NIKON CORPORATION,generic ninja,United TLD Holdco Ltd.,generic nissan,"NISSAN MOTOR CO., LTD.",generic nissay,Nippon Life Insurance Company,generic -nl,SIDN (Stichting Internet Domeinregistratie Nederland),country-code -no,UNINETT Norid A/S,country-code +nl,Netherlands,country-code +no,Norway (Kingdom of),country-code nokia,Nokia Corporation,generic northwesternmutual,"Northwestern Mutual Registry, LLC",generic norton,Symantec Corporation,generic now,"Amazon Registry Services, Inc.",generic nowruz,Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.,generic nowtv,Starbucks (HK) Limited,generic -np,Mercantile Communications Pvt. Ltd.,country-code -nr,CENPAC NET,country-code +np,Nepal (Federal Democratic Republic of),country-code +nr,Nauru (Republic of),country-code nra,"NRA Holdings Company, INC.",generic nrw,Minds + Machines GmbH,generic ntt,NIPPON TELEGRAPH AND TELEPHONE CORPORATION,generic -nu,The IUSN Foundation,country-code +nu,Niue,country-code nyc,The City of New York by and through the New York City Department of Information Technology & Telecommunications,generic -nz,InternetNZ,country-code +nz,New Zealand,country-code obi,OBI Group Holding SE & Co. KGaA,generic observer,"Top Level Spectrum, Inc.",generic off,"Johnson Shareholdings, Inc.",generic @@ -951,7 +929,7 @@ olayan,Crescent Holding GmbH,generic olayangroup,Crescent Holding GmbH,generic oldnavy,"The Gap, Inc.",generic ollo,Dish DBS Corporation,generic -om,Telecommunications Regulatory Authority (TRA),country-code +om,Oman (Sultanate of),country-code omega,The Swatch Group Ltd,generic one,One.com A/S,generic ong,Public Interest Registry,generic @@ -962,7 +940,7 @@ ooo,INFIBEAM INCORPORATION LIMITED,generic open,"American Express Travel Related Services Company, Inc.",generic oracle,Oracle Corporation,generic orange,Orange Brand Services Limited,generic -org,Public Interest Registry (PIR),generic +org,Non-profit organizations,generic organic,Afilias plc,generic orientexpress,Retired,generic origins,The Estée Lauder Companies Inc.,generic @@ -970,7 +948,7 @@ osaka,"Osaka Registry Co., Ltd.",generic otsuka,"Otsuka Holdings Co., Ltd.",generic ott,Dish DBS Corporation,generic ovh,OVH SAS,generic -pa,Universidad Tecnologica de Panama,country-code +pa,Panama (Republic of),country-code page,Charleston Road Registry Inc.,generic pamperedchef,Not assigned,generic panasonic,Panasonic Corporation,generic @@ -983,14 +961,12 @@ party,Blue Sky Registry Limited,generic passagens,Travel Reservations SRL,generic pay,"Amazon Registry Services, Inc.",generic pccw,PCCW Enterprises Limited,generic -pe,Red Cientifica Peruana,country-code +pe,Peru (Republic of),country-code pet,Afilias plc,generic -pf,Gouvernement de la Polynésie française,country-code +pf,French Polynesia and Clipperton Island,country-code pfizer,Pfizer Inc.,generic -pg,"PNG DNS Administration -Vice Chancellors Office -The Papua New Guinea University of Technology",country-code -ph,PH Domain Foundation,country-code +pg,Papua New Guinea (Independent State of),country-code +ph,Philippines (Republic of the),country-code pharmacy,National Association of Boards of Pharmacy,generic phd,Charleston Road Registry Inc.,generic philips,Koninklijke Philips N.V.,generic @@ -1009,28 +985,27 @@ ping,"Ping Registry Provider, Inc.",generic pink,Afilias plc,generic pioneer,Pioneer Corporation,generic pizza,"Binky Moon, LLC",generic -pk,PKNIC,country-code -pl,Research and Academic Computer Network,country-code +pk,Pakistan (Islamic Republic of),country-code +pl,Poland (Republic of),country-code place,"Binky Moon, LLC",generic play,Charleston Road Registry Inc.,generic playstation,Sony Computer Entertainment Inc.,generic plumbing,"Binky Moon, LLC",generic plus,"Binky Moon, LLC",generic -pm,Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.),country-code -pn,Pitcairn Island Administration,country-code +pm,Saint Pierre and Miquelon,country-code +pn,Pitcairn Islands (Pitcairn - Henderson - Ducie and Oeno Islands),country-code pnc,"PNC Domain Co., LLC",generic pohl,Deutsche Vermögensberatung Aktiengesellschaft DVAG,generic poker,Afilias plc,generic politie,Politie Nederland,generic porn,ICM Registry PN LLC,generic post,Universal Postal Union,sponsored -pr,Gauss Research Laboratory Inc.,country-code +pr,Puerto Rico (Commonwealth of),country-code pramerica,"Prudential Financial, Inc.",generic praxi,Praxi S.p.A.,generic press,DotPress Inc.,generic prime,"Amazon Registry Services, Inc.",generic -pro,"Registry Services Corporation -dba RegistryPro",generic-restricted +pro,Profession,generic-restricted prod,Charleston Road Registry Inc.,generic productions,"Binky Moon, LLC",generic prof,Charleston Road Registry Inc.,generic @@ -1041,15 +1016,13 @@ property,"Uniregistry, Corp.",generic protection,XYZ.COM LLC,generic pru,"Prudential Financial, Inc.",generic prudential,"Prudential Financial, Inc.",generic -ps,"Ministry Of Telecommunications & -Information Technology, -Government Computer Center.",country-code -pt,Associação DNS.PT,country-code +ps,Palestine (State of),country-code +pt,Portugal (Portuguese Republic),country-code pub,United TLD Holdco Ltd.,generic -pw,Micronesia Investment and Development Corporation,country-code +pw,Palau (Republic of),country-code pwc,PricewaterhouseCoopers LLP,generic -py,NIC-PY,country-code -qa,Communications Regulatory Authority,country-code +py,Paraguay (Republic of),country-code +qa,Qatar (State of),country-code qpon,"dotCOOL, Inc.",generic quebec,PointQuébec Inc,generic quest,Quest ION Limited,generic @@ -1057,7 +1030,7 @@ qvc,"QVC, Inc.",generic racing,Premier Registry Limited,generic radio,European Broadcasting Union (EBU),generic raid,"Johnson Shareholdings, Inc.",generic -re,Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.),country-code +re,Réunion,country-code read,"Amazon Registry Services, Inc.",generic realestate,dotRealEstate LLC,generic realtor,Real Estate Domains LLC,generic @@ -1090,22 +1063,22 @@ ril,Reliance Industries Limited,generic rio,Empresa Municipal de Informática SA - IPLANRIO,generic rip,United TLD Holdco Ltd.,generic rmit,Royal Melbourne Institute of Technology,generic -ro,National Institute for R&D in Informatics,country-code +ro,Romania,country-code rocher,Ferrero Trading Lux S.A.,generic rocks,"United TLD Holdco, LTD.",generic rodeo,Top Level Domain Holdings Limited,generic rogers,Rogers Communications Canada Inc.,generic room,"Amazon Registry Services, Inc.",generic -rs,Serbian National Internet Domain Registry (RNIDS),country-code +rs,Serbia (Republic of),country-code rsvp,Charleston Road Registry Inc.,generic -ru,Coordination Center for TLD RU,country-code +ru,Russia (Russian Federation),country-code rugby,World Rugby Strategic Developments Limited,generic ruhr,regiodot GmbH & Co. KG,generic run,"Binky Moon, LLC",generic -rw,Rwanda Information Communication and Technology Association (RICTA),country-code +rw,Rwanda (Republic of),country-code rwe,RWE AG,generic ryukyu,"BRregistry, Inc.",generic -sa,Communications and Information Technology Commission,country-code +sa,Saudi Arabia (Kingdom of),country-code saarland,dotSaarland GmbH,generic safe,"Amazon Registry Services, Inc.",generic safety,"Safety Registry Services, LLC.",generic @@ -1123,10 +1096,10 @@ sarl,"Binky Moon, LLC",generic sas,Research IP LLC,generic save,"Amazon Registry Services, Inc.",generic saxo,Saxo Bank A/S,generic -sb,Solomon Telekom Company Limited,country-code +sb,Solomon Islands,country-code sbi,STATE BANK OF INDIA,generic sbs,SPECIAL BROADCASTING SERVICE CORPORATION,generic -sc,VCS Pty Ltd,country-code +sc,Seychelles (Republic of),country-code sca,SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ),generic scb,"The Siam Commercial Bank Public Company Limited (""SCB"")",generic schaeffler,Schaeffler Technologies AG & Co. KG,generic @@ -1139,8 +1112,8 @@ science,dot Science Limited,generic scjohnson,"Johnson Shareholdings, Inc.",generic scor,SCOR SE,generic scot,Dot Scot Registry Limited,generic -sd,Sudan Internet Society,country-code -se,The Internet Infrastructure Foundation,country-code +sd,Sudan (Republic of),country-code +se,Sweden (Kingdom of),country-code search,Charleston Road Registry Inc.,generic seat,"SEAT, S.A. (Sociedad Unipersonal)",generic secure,"Amazon Registry Services, Inc.",generic @@ -1155,8 +1128,8 @@ sew,SEW-EURODRIVE GmbH & Co KG,generic sex,ICM Registry SX LLC,generic sexy,"Uniregistry, Corp.",generic sfr,Societe Francaise du Radiotelephone - SFR,generic -sg,Singapore Network Information Centre (SGNIC) Pte Ltd,country-code -sh,Government of St. Helena,country-code +sg,Singapore (Republic of),country-code +sh,Saint Helena,country-code shangrila,Shangri‐La International Hotel Management Limited,generic sharp,Sharp Corporation,generic shaw,Shaw Cablesystems G.P.,generic @@ -1170,26 +1143,25 @@ shouji,QIHOO 360 TECHNOLOGY CO. LTD.,generic show,"Binky Moon, LLC",generic showtime,CBS Domains Inc.,generic shriram,Shriram Capital Ltd.,generic -si,Academic and Research Network of Slovenia (ARNES),country-code +si,Slovenia (Republic of),country-code silk,"Amazon Registry Services, Inc.",generic sina,Sina Corporation,generic singles,"Binky Moon, LLC",generic site,DotSite Inc.,generic -sj,UNINETT Norid A/S,country-code -sk,"SK-NIC, a.s.",country-code +sj,Svalbard and Jan Mayen {not in use - see also: .no},country-code +sk,Slovakia (Slovak Republic),country-code ski,STARTING DOT LIMITED,generic skin,L'Oréal,generic sky,Sky International AG,generic skype,Microsoft Corporation,generic -sl,Sierratel,country-code +sl,Sierra Leone (Republic of),country-code sling,Hughes Satellite Systems Corporation,generic -sm,Telecom Italia San Marino S.p.A.,country-code +sm,San Marino (Republic of),country-code smart,"Smart Communications, Inc. (SMART)",generic smile,"Amazon Registry Services, Inc.",generic -sn,"Universite Cheikh Anta Diop -NIC Senegal",country-code +sn,Senegal (Republic of),country-code sncf,SNCF (Société Nationale des Chemins de fer Francais),generic -so,Ministry of Post and Telecommunications,country-code +so,Somalia (Federal Republic of),country-code soccer,"Binky Moon, LLC",generic social,United TLD Holdco Ltd.,generic softbank,SoftBank Group Corp.,generic @@ -1205,11 +1177,11 @@ spiegel,SPIEGEL-Verlag Rudolf Augstein GmbH & Co. KG,generic sport,Global Association of International Sports Federations (GAISF),generic spot,"Amazon Registry Services, Inc.",generic spreadbetting,DOTSPREADBETTING REGISTRY LTD,generic -sr,Telesur,country-code +sr,Suriname (Republic of),country-code srl,InterNetX Corp.,generic srt,FCA US LLC.,generic -ss,Not assigned,country-code -st,Tecnisys,country-code +ss,South Sudan (Republic of),country-code +st,São Tomé and Príncipe (Democratic Republic of),country-code stada,STADA Arzneimittel AG,generic staples,"Staples, Inc.",generic star,Star India Private Limited,generic @@ -1226,8 +1198,7 @@ stream,dot Stream Limited,generic studio,United TLD Holdco Ltd.,generic study,OPEN UNIVERSITIES AUSTRALIA PTY LTD,generic style,"Binky Moon, LLC",generic -su,"Russian Institute for Development of Public Networks -(ROSNIIROS)",country-code +su,Soviet Union (Union of Soviet Socialist Republics),country-code sucks,Vox Populi Registry Ltd.,generic supplies,"Binky Moon, LLC",generic supply,"Binky Moon, LLC",generic @@ -1235,17 +1206,16 @@ support,"Binky Moon, LLC",generic surf,Top Level Domain Holdings Limited,generic surgery,"Binky Moon, LLC",generic suzuki,SUZUKI MOTOR CORPORATION,generic -sv,SVNet,country-code +sv,El Salvador (Republic of),country-code swatch,The Swatch Group Ltd,generic swiftcover,Swiftcover Insurance Services Limited,generic swiss,Swiss Confederation,generic -sx,SX Registry SA B.V.,country-code -sy,National Agency for Network Services (NANS),country-code +sx,Sint Maarten,country-code +sy,Syria (Syrian Arab Republic),country-code sydney,"State of New South Wales, Department of Premier and Cabinet",generic symantec,Symantec Corporation,generic systems,"Binky Moon, LLC",generic -sz,"University of Swaziland -Department of Computer Science",country-code +sz,Swaziland (Kingdom of),country-code tab,Tabcorp Holdings Limited,generic taipei,Taipei City Government,generic talk,"Amazon Registry Services, Inc.",generic @@ -1256,22 +1226,22 @@ tatar,"Limited Liability Company ""Coordination Center of Regional Domain of Tat tattoo,"Uniregistry, Corp.",generic tax,"Binky Moon, LLC",generic taxi,"Binky Moon, LLC",generic -tc,Melrex TC,country-code +tc,Turks and Caicos Islands,country-code tci,Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti.,generic -td,l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC),country-code +td,Chad (Republic of),country-code tdk,TDK Corporation,generic team,"Binky Moon, LLC",generic tech,Dot Tech LLC,generic technology,"Binky Moon, LLC",generic -tel,Telnames Ltd.,sponsored +tel,Telephone,sponsored telecity,TelecityGroup International Limited,generic telefonica,Telefónica S.A.,generic temasek,Temasek Holdings (Private) Limited,generic tennis,"Binky Moon, LLC",generic teva,Teva Pharmaceutical Industries Limited,generic -tf,Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.),country-code -tg,Autorite de Reglementation des secteurs de Postes et de Telecommunications (ART&P),country-code -th,Thai Network Information Center Foundation,country-code +tf,French Southern and Antarctic Lands (Territory of the),country-code +tg,Togo (Togolese Republic),country-code +th,Thailand (Kingdom of),country-code thd,"Home Depot Product Authority, LLC",generic theater,"Binky Moon, LLC",generic theatre,XYZ.COM LLC,generic @@ -1282,18 +1252,16 @@ tiffany,Tiffany and Company,generic tips,"Binky Moon, LLC",generic tires,"Binky Moon, LLC",generic tirol,punkt Tirol GmbH,generic -tj,Information Technology Center,country-code +tj,Tajikistan (Republic of),country-code tjmaxx,"The TJX Companies, Inc.",generic tjx,"The TJX Companies, Inc.",generic -tk,Telecommunication Tokelau Corporation (Teletok),country-code +tk,Tokelau,country-code tkmaxx,"The TJX Companies, Inc.",generic -tl,Autoridade Nacional de Comunicações,country-code -tm,TM Domain Registry Ltd,country-code +tl,Timor-Leste (Democratic Republic of) [East Timor],country-code +tm,Turkmenistan,country-code tmall,Alibaba Group Holding Limited,generic -tn,Agence Tunisienne d'Internet,country-code -to,"Government of the Kingdom of Tonga -H.R.H. Crown Prince Tupouto'a -c/o Consulate of Tonga",country-code +tn,Tunisia (Republic of),country-code +to,Tonga (Kingdom of),country-code today,"Binky Moon, LLC",generic tokyo,"GMO Registry, Inc.",generic tools,"Binky Moon, LLC",generic @@ -1305,57 +1273,54 @@ tours,"Binky Moon, LLC",generic town,"Binky Moon, LLC",generic toyota,TOYOTA MOTOR CORPORATION,generic toys,"Binky Moon, LLC",generic -tp,Retired,country-code -tr,"Middle East Technical University -Department of Computer Engineering",country-code +tp,Timor-Leste (Democratic Republic of) [East Timor] {being phased out - also see: .tl},country-code +tr,Turkey (Republic of),country-code trade,Elite Registry Limited,generic trading,DOTTRADING REGISTRY LTD,generic training,"Binky Moon, LLC",generic -travel,"Dog Beach, LLC",sponsored +travel,Travel,sponsored travelchannel,"Lifestyle Domain Holdings, Inc.",generic travelers,"Travelers TLD, LLC",generic travelersinsurance,"Travelers TLD, LLC",generic trust,Artemis Internet Inc,generic trv,"Travelers TLD, LLC",generic -tt,"University of the West Indies -Faculty of Engineering",country-code +tt,Trinidad and Tobago (Republic of),country-code tube,Latin American Telecom LLC,generic tui,TUI AG,generic tunes,"Amazon Registry Services, Inc.",generic tushu,"Amazon Registry Services, Inc.",generic -tv,Ministry of Finance and Tourism,country-code +tv,Tuvalu,country-code tvs,T V SUNDRAM IYENGAR & SONS PRIVATE LIMITED,generic -tw,Taiwan Network Information Center (TWNIC),country-code -tz,Tanzania Network Information Centre (tzNIC),country-code -ua,Hostmaster Ltd.,country-code +tw,Taiwan (Republic of China),country-code +tz,Tanzania (United Republic of),country-code +ua,Ukraine,country-code ubank,National Australia Bank Limited,generic ubs,UBS AG,generic uconnect,FCA US LLC.,generic -ug,Uganda Online Ltd.,country-code -uk,Nominet UK,country-code -um,Not assigned,country-code +ug,Uganda (Republic of),country-code +uk,United Kingdom (United Kingdom of Great Britain and Northern Ireland),country-code +um,United States Minor Outlying Islands {formerly - retired 2010 - see also: .us},country-code unicom,China United Network Communications Corporation Limited,generic university,"Binky Moon, LLC",generic uno,Dot Latin LLC,generic uol,UBN INTERNET LTDA.,generic ups,"UPS Market Driver, Inc.",generic -us,"NeuStar, Inc.",country-code -uy,SeCIU - Universidad de la Republica,country-code -uz,"Computerization and Information Technologies Developing Center -UZINFOCOM",country-code -va,Holy See - Vatican City State,country-code +us,United States of America and United States Minor Outlying Islands,country-code +uy,Uruguay (Oriental Republic of),country-code +uz,Uzbekistan (Republic of),country-code +va,Vatican City (Vatican City State),country-code vacations,"Binky Moon, LLC",generic vana,"Lifestyle Domain Holdings, Inc.",generic vanguard,"The Vanguard Group, Inc.",generic -vc,"Ministry of Telecommunications, Science, Technology and Industry",country-code -ve,Comisión Nacional de Telecomunicaciones (CONATEL),country-code +vc,Saint Vincent and the Grenadines,country-code +ve,Venezuela (Bolivarian Republic of),country-code vegas,"Dot Vegas, Inc.",generic ventures,"Binky Moon, LLC",generic verisign,"VeriSign, Inc.",generic versicherung,TLD-BOX Registrydienstleistungen GmbH,generic vet,"United TLD Holdco, Ltd",generic -vg,Telecommunications Regulatory Commission of the Virgin Islands,country-code -vi,"Virgin Islands Public Telecommunications System, Inc.",country-code +vg,British Virgin Islands (Virgin Islands),country-code +vi,United States Virgin Islands (United States Virgin Islands),country-code viajes,"Binky Moon, LLC",generic video,"United TLD Holdco, Ltd",generic vig,VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe,generic @@ -1371,7 +1336,7 @@ vistaprint,Vistaprint Limited,generic viva,Saudi Telecom Company,generic vivo,Telefonica Brasil S.A.,generic vlaanderen,DNS.be vzw,generic -vn,Ministry of Information and Communications of Socialist Republic of Viet Nam,country-code +vn,Vietnam (Socialist Republic of),country-code vodka,Top Level Domain Holdings Limited,generic volkswagen,Volkswagen Group of America Inc.,generic volvo,Volvo Holding Sverige Aktiebolag,generic @@ -1379,7 +1344,7 @@ vote,Monolith Registry LLC,generic voting,Valuetainment Corp.,generic voto,Monolith Registry LLC,generic voyage,"Binky Moon, LLC",generic -vu,Telecom Vanuatu Limited,country-code +vu,Vanuatu (Republic of),country-code vuelos,Travel Reservations SRL,generic wales,Nominet UK,generic walmart,"Wal-Mart Stores, Inc.",generic @@ -1398,7 +1363,7 @@ wed,Emergency Back-End Registry Operator Program - ICANN,generic wedding,Top Level Domain Holdings Limited,generic weibo,Sina Corporation,generic weir,Weir Group IP Limited,generic -wf,Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.),country-code +wf,Wallis and Futuna (Territory of the Wallis and Futuna Islands),country-code whoswho,Who's Who Registry,generic wien,punkt.wien GmbH,generic wiki,"Top Level Design, LLC",generic @@ -1414,7 +1379,7 @@ work,Top Level Domain Holdings Limited,generic works,"Binky Moon, LLC",generic world,"Binky Moon, LLC",generic wow,"Amazon Registry Services, Inc.",generic -ws,Government of Samoa Ministry of Foreign Affairs & Trade,country-code +ws,Samoa (Independent State of),country-code wtc,"World Trade Centers Association, Inc.",generic wtf,"Binky Moon, LLC",generic xbox,Microsoft Corporation,generic @@ -1586,27 +1551,27 @@ vermögensberatung,Deutsche Vermögensberatung Aktiengesellschaft DVAG,generic テスト,Internet Assigned Numbers Authority,test 政务,China Organizational Name Administration Center,generic xperia,Sony Mobile Communications AB,generic -xxx,ICM Registry LLC,sponsored +xxx,Adult entertainment,sponsored xyz,XYZ.COM LLC,generic yachts,"DERYachts, LLC",generic yahoo,Yahoo! Domain Services Inc.,generic yamaxun,"Amazon Registry Services, Inc.",generic yandex,"YANDEX, LLC",generic -ye,TeleYemen,country-code +ye,Yemen (Republic of),country-code yodobashi,"YODOBASHI CAMERA CO.,LTD.",generic yoga,Top Level Domain Holdings Limited,generic yokohama,"GMO Registry, Inc.",generic you,"Amazon Registry Services, Inc.",generic youtube,Charleston Road Registry Inc.,generic -yt,Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.),country-code +yt,Mayotte (Department of),country-code yun,QIHOO 360 TECHNOLOGY CO. LTD.,generic -za,ZA Domain Name Authority,country-code +za,South Africa (Republic of),country-code zappos,"Amazon Registry Services, Inc.",generic zara,"Industria de Diseño Textil, S.A. (INDITEX, S.A.)",generic zero,"Amazon Registry Services, Inc.",generic zip,Charleston Road Registry Inc.,generic zippo,Zadco Company,generic -zm,Zambia Information and Communications Technology Authority (ZICTA),country-code +zm,Zambia (Republic of),country-code zone,"Binky Moon, LLC",generic zuerich,Kanton Zürich (Canton of Zurich),generic -zw,Postal and Telecommunications Regulatory Authority of Zimbabwe (POTRAZ),country-code +zw,Zimbabwe (Republic of),country-code